In this tutorial we go through some of the functionality of the NetworkInference package using the example application from Desmarais et al. (2015) and extending it with the recently released State Policy Innovation and Diffusion (SPID) database. In this paper Desmarais et al. infer a latent network for policy diffusion based on adoption of policies in the US states.
netinf infers the optimal diffusion network from a set of nodes (in this case US-states) and a number of so called cascades (here a cascade corresponds to a policy that is adopted by at least two states). A cascade is a series of events occurring at a specified time.
If you want to follow along in your own R Session, you can clone the source files from the github repo or you can download them. The compiled tutorial is also available to read along here: .
Installing NetworkInference:
install.packages('NetworkInference')
Some other packages required for this tutorial:
install.packages(c('dplyr', 'igraph', 'speedglm', 'devtools'))
devtools::install_github('desmarais-lab/spid')
The policy adoption data is available in the package:
library(NetworkInference)
data('policies')
ls()
#> [1] "policies" "policies_metadata"
#> policies
#> policies_metadata
This loads two data.frame-objects. policies contains the adoption events and policies_metadata contains additional information on each policy.
print(policies)
#> statenam
#> 1 Alaska
#> 2 Delaware
#> 3 Hawaii
#> 4 Iowa
#> 5 Maine
#> 6 Michigan
#> 7 Minnesota
#> 8 New Mexico
#> 9 New York
#> 10 North Dakota
#> 11 Oregon
#> 12 Rhode Island
#> 13 Vermont
#> 14 West Virginia
#> 15 Wisconsin
#> 16 Alabama
#> 17 Indiana
#> 18 Kentucky
#> 19 Louisiana
#> 20 Maine
#> 21 Massachusetts
#> 22 Michigan
#> 23 Missouri
#> 24 North Carolina
#> 25 Pennsylvania
#> 26 Rhode Island
#> 27 South Carolina
#> 28 Tennessee
#> 29 Wisconsin
#> 30 Wyoming
#> 31 Arizona
#> 32 Arkansas
#> 33 Connecticut
#> 34 Delaware
#> 35 Georgia
#> 36 Idaho
#> 37 Kansas
#> 38 Maryland
#> 39 Minnesota
#> 40 Nebraska
#> 41 Ohio
#> 42 South Dakota
#> 43 Tennessee
#> 44 Texas
#> 45 Utah
#> 46 Virginia
#> 47 West Virginia
#> 48 Alaska
#> 49 Arkansas
#> 50 California
#> 51 Colorado
#> 52 Delaware
#> 53 Florida
#> 54 Georgia
#> 55 Hawaii
#> 56 Kansas
#> 57 Maryland
#> 58 Mississippi
#> 59 New Mexico
#> 60 New York
#> 61 North Carolina
#> 62 Oregon
#> 63 South Carolina
#> 64 Virginia
#> 65 Washington
#> 66 Delaware
#> 67 Idaho
#> 68 Massachusetts
#> 69 South Dakota
#> 70 Alabama
#> 71 Alaska
#> 72 Arizona
#> 73 Arkansas
#> 74 Delaware
#> 75 Florida
#> 76 Georgia
#> 77 Idaho
#> 78 Indiana
#> 79 Kansas
#> 80 Kentucky
#> 81 Louisiana
#> 82 Massachusetts
#> 83 Michigan
#> 84 Minnesota
#> 85 Mississippi
#> 86 Missouri
#> 87 Nebraska
#> 88 North Carolina
#> 89 North Dakota
#> 90 Ohio
#> 91 Oklahoma
#> 92 Pennsylvania
#> 93 South Carolina
#> 94 South Dakota
#> 95 Texas
#> 96 Utah
#> 97 Virginia
#> 98 West Virginia
#> 99 Wisconsin
#> 100 Alaska
#> 101 Arizona
#> 102 California
#> 103 Connecticut
#> 104 Hawaii
#> 105 Idaho
#> 106 Illinois
#> 107 Maryland
#> 108 Massachusetts
#> 109 Michigan
#> 110 Minnesota
#> 111 Montana
#> 112 New Jersey
#> 113 New Mexico
#> 114 New York
#> 115 North Carolina
#> 116 Oregon
#> 117 Vermont
#> 118 Washington
#> 119 West Virginia
#> 120 Alabama
#> 121 Georgia
#> 122 Indiana
#> 123 Kansas
#> 124 Mississippi
#> 125 North Dakota
#> 126 Oklahoma
#> 127 South Carolina
#> 128 South Dakota
#> 129 Tennessee
#> 130 Utah
#> 131 Wisconsin
#> 132 Alaska
#> 133 Arkansas
#> 134 California
#> 135 Colorado
#> 136 Delaware
#> 137 Florida
#> 138 Georgia
#> 139 Hawaii
#> 140 Kansas
#> 141 Maryland
#> 142 New Mexico
#> 143 New York
#> 144 North Carolina
#> 145 Oregon
#> 146 South Carolina
#> 147 Virginia
#> 148 Washington
#> 149 Alaska
#> 150 Arizona
#> 151 Arkansas
#> 152 California
#> 153 Colorado
#> 154 Florida
#> 155 Georgia
#> 156 Hawaii
#> 157 Idaho
#> 158 Indiana
#> 159 Iowa
#> 160 Kansas
#> 161 Maine
#> 162 Montana
#> 163 Nebraska
#> 164 Nevada
#> 165 New Mexico
#> 166 North Carolina
#> 167 North Dakota
#> 168 Oklahoma
#> 169 Oregon
#> 170 South Dakota
#> 171 Vermont
#> 172 Washington
#> 173 Wisconsin
#> 174 Wyoming
#> 175 Alabama
#> 176 Arizona
#> 177 Arkansas
#> 178 California
#> 179 Colorado
#> 180 Connecticut
#> 181 Delaware
#> 182 Florida
#> 183 Georgia
#> 184 Idaho
#> 185 Illinois
#> 186 Indiana
#> 187 Iowa
#> 188 Kansas
#> 189 Kentucky
#> 190 Louisiana
#> 191 Maine
#> 192 Maryland
#> 193 Massachusetts
#> 194 Michigan
#> 195 Minnesota
#> 196 Mississippi
#> 197 Missouri
#> 198 Montana
#> 199 Nebraska
#> 200 Nevada
#> 201 New Hampshire
#> 202 New Jersey
#> 203 New Mexico
#> 204 New York
#> 205 North Carolina
#> 206 North Dakota
#> 207 Ohio
#> 208 Oklahoma
#> 209 Oregon
#> 210 Pennsylvania
#> 211 Rhode Island
#> 212 South Carolina
#> 213 South Dakota
#> 214 Tennessee
#> 215 Texas
#> 216 Utah
#> 217 Vermont
#> 218 Virginia
#> 219 Washington
#> 220 West Virginia
#> 221 Wisconsin
#> 222 Wyoming
#> 223 Alabama
#> 224 Arizona
#> 225 Arkansas
#> 226 California
#> 227 Florida
#> 228 Georgia
#> 229 Illinois
#> 230 Kansas
#> 231 Louisiana
#> 232 Massachusetts
#> 233 Michigan
#> 234 Mississippi
#> 235 Missouri
#> 236 Nebraska
#> 237 New Hampshire
#> 238 New Mexico
#> 239 New York
#> 240 North Carolina
#> 241 North Dakota
#> 242 Oklahoma
#> 243 Pennsylvania
#> 244 Rhode Island
#> 245 South Carolina
#> 246 Tennessee
#> 247 Texas
#> 248 Vermont
#> 249 Washington
#> 250 West Virginia
#> 251 Alabama
#> 252 Arizona
#> 253 Arkansas
#> 254 California
#> 255 Colorado
#> 256 Connecticut
#> 257 Delaware
#> 258 Florida
#> 259 Georgia
#> 260 Idaho
#> 261 Illinois
#> 262 Indiana
#> 263 Iowa
#> 264 Kansas
#> 265 Kentucky
#> 266 Louisiana
#> 267 Maine
#> 268 Maryland
#> 269 Massachusetts
#> 270 Michigan
#> 271 Minnesota
#> 272 Mississippi
#> 273 Missouri
#> 274 Montana
#> 275 Nebraska
#> 276 Nevada
#> 277 New Hampshire
#> 278 New Jersey
#> 279 New Mexico
#> 280 New York
#> 281 North Carolina
#> 282 North Dakota
#> 283 Ohio
#> 284 Oklahoma
#> 285 Oregon
#> 286 Pennsylvania
#> 287 Rhode Island
#> 288 South Carolina
#> 289 South Dakota
#> 290 Tennessee
#> 291 Texas
#> 292 Utah
#> 293 Vermont
#> 294 Virginia
#> 295 Washington
#> 296 West Virginia
#> 297 Wisconsin
#> 298 Wyoming
#> 299 Alabama
#> 300 Arizona
#> 301 Arkansas
#> 302 Colorado
#> 303 Connecticut
#> 304 Florida
#> 305 Idaho
#> 306 Illinois
#> 307 Indiana
#> 308 Kansas
#> 309 Kentucky
#> 310 Louisiana
#> 311 Maine
#> 312 Maryland
#> 313 Massachusetts
#> 314 Michigan
#> 315 Minnesota
#> 316 Mississippi
#> 317 Montana
#> 318 Nebraska
#> 319 Nevada
#> 320 New Hampshire
#> 321 New Jersey
#> 322 New Mexico
#> 323 New York
#> 324 North Carolina
#> 325 North Dakota
#> 326 Ohio
#> 327 Oklahoma
#> 328 Oregon
#> 329 Pennsylvania
#> 330 Rhode Island
#> 331 South Dakota
#> 332 Tennessee
#> 333 Utah
#> 334 Vermont
#> 335 Virginia
#> 336 Washington
#> 337 West Virginia
#> 338 Wisconsin
#> 339 Wyoming
#> 340 Alabama
#> 341 Arizona
#> 342 Indiana
#> 343 Mississippi
#> 344 Missouri
#> 345 North Dakota
#> 346 Ohio
#> 347 Oklahoma
#> 348 Pennsylvania
#> 349 Tennessee
#> 350 Texas
#> 351 Utah
#> 352 Wisconsin
#> 353 Arkansas
#> 354 Iowa
#> 355 New Mexico
#> 356 North Dakota
#> 357 Oklahoma
#> 358 Vermont
#> 359 Alabama
#> 360 Alaska
#> 361 Arizona
#> 362 Arkansas
#> 363 California
#> 364 Colorado
#> 365 Connecticut
#> 366 Delaware
#> 367 Georgia
#> 368 Hawaii
#> 369 Idaho
#> 370 Illinois
#> 371 Indiana
#> 372 Iowa
#> 373 Kentucky
#> 374 Louisiana
#> 375 Maine
#> 376 Maryland
#> 377 Massachusetts
#> 378 Minnesota
#> 379 Mississippi
#> 380 Missouri
#> 381 Montana
#> 382 Nebraska
#> 383 Nevada
#> 384 New Hampshire
#> 385 New Jersey
#> 386 New Mexico
#> 387 New York
#> 388 North Carolina
#> 389 North Dakota
#> 390 Ohio
#> 391 Oklahoma
#> 392 Oregon
#> 393 Pennsylvania
#> 394 Rhode Island
#> 395 South Carolina
#> 396 South Dakota
#> 397 Tennessee
#> 398 Utah
#> 399 Vermont
#> 400 Virginia
#> 401 Washington
#> 402 Wyoming
#> 403 Alaska
#> 404 Arizona
#> 405 California
#> 406 Delaware
#> 407 Indiana
#> 408 Kentucky
#> 409 Louisiana
#> 410 Michigan
#> 411 Minnesota
#> 412 Nevada
#> 413 New Mexico
#> 414 Oregon
#> 415 Pennsylvania
#> 416 Tennessee
#> 417 Texas
#> 418 Vermont
#> 419 California
#> 420 Colorado
#> 421 Connecticut
#> 422 Delaware
#> 423 Hawaii
#> 424 Illinois
#> 425 Iowa
#> 426 Kansas
#> 427 Kentucky
#> 428 Maine
#> 429 Maryland
#> 430 Massachusetts
#> 431 Michigan
#> 432 Minnesota
#> 433 Missouri
#> 434 Montana
#> 435 Nebraska
#> 436 New Jersey
#> 437 New York
#> 438 North Carolina
#> 439 Ohio
#> 440 Oklahoma
#> 441 Oregon
#> 442 Pennsylvania
#> 443 Rhode Island
#> 444 South Carolina
#> 445 Utah
#> 446 Vermont
#> 447 Washington
#> 448 West Virginia
#> 449 Wisconsin
#> 450 Alabama
#> 451 California
#> 452 Delaware
#> 453 Hawaii
#> 454 Illinois
#> 455 Indiana
#> 456 Iowa
#> 457 Kentucky
#> 458 Michigan
#> 459 Montana
#> 460 New York
#> 461 Oregon
#> 462 Pennsylvania
#> 463 Rhode Island
#> 464 South Carolina
#> 465 South Dakota
#> 466 Utah
#> 467 Virginia
#> 468 Washington
#> 469 Alabama
#> 470 Alaska
#> 471 Arizona
#> 472 Arkansas
#> 473 California
#> 474 Colorado
#> 475 Connecticut
#> 476 Delaware
#> 477 Florida
#> 478 Georgia
#> 479 Hawaii
#> 480 Idaho
#> 481 Illinois
#> 482 Indiana
#> 483 Iowa
#> 484 Kansas
#> 485 Kentucky
#> 486 Maine
#> 487 Maryland
#> 488 Massachusetts
#> 489 Michigan
#> 490 Minnesota
#> 491 Missouri
#> 492 Montana
#> 493 Nebraska
#> 494 Nevada
#> 495 New Hampshire
#> 496 New Jersey
#> 497 New Mexico
#> 498 New York
#> 499 North Carolina
#> 500 North Dakota
#> 501 Ohio
#> 502 Oklahoma
#> 503 Oregon
#> 504 Pennsylvania
#> 505 Rhode Island
#> 506 South Carolina
#> 507 South Dakota
#> 508 Tennessee
#> 509 Texas
#> 510 Utah
#> 511 Vermont
#> 512 Virginia
#> 513 Washington
#> 514 West Virginia
#> 515 Wisconsin
#> 516 Wyoming
#> 517 Alabama
#> 518 Alaska
#> 519 California
#> 520 Connecticut
#> 521 Delaware
#> 522 Florida
#> 523 Hawaii
#> 524 Idaho
#> 525 Indiana
#> 526 Iowa
#> 527 Kansas
#> 528 Kentucky
#> 529 Maine
#> 530 Maryland
#> 531 Massachusetts
#> 532 Michigan
#> 533 Minnesota
#> 534 Montana
#> 535 Nebraska
#> 536 New Hampshire
#> 537 New Jersey
#> 538 New York
#> 539 North Carolina
#> 540 Ohio
#> 541 Oklahoma
#> 542 Pennsylvania
#> 543 Rhode Island
#> 544 South Carolina
#> 545 South Dakota
#> 546 Utah
#> 547 Vermont
#> 548 Virginia
#> 549 Washington
#> 550 West Virginia
#> 551 Wisconsin
#> 552 Alabama
#> 553 Arkansas
#> 554 California
#> 555 Colorado
#> 556 Connecticut
#> 557 Delaware
#> 558 Florida
#> 559 Georgia
#> 560 Idaho
#> 561 Illinois
#> 562 Kansas
#> 563 Kentucky
#> 564 Louisiana
#> 565 Maine
#> 566 Maryland
#> 567 Massachusetts
#> 568 Michigan
#> 569 Minnesota
#> 570 Mississippi
#> 571 Missouri
#> 572 Montana
#> 573 Nebraska
#> 574 New Hampshire
#> 575 New Jersey
#> 576 New Mexico
#> 577 New York
#> 578 North Carolina
#> 579 North Dakota
#> 580 Ohio
#> 581 Oklahoma
#> 582 Oregon
#> 583 Pennsylvania
#> 584 Rhode Island
#> 585 South Carolina
#> 586 South Dakota
#> 587 Tennessee
#> 588 Texas
#> 589 Utah
#> 590 Vermont
#> 591 Virginia
#> 592 Washington
#> 593 West Virginia
#> 594 Wisconsin
#> 595 Wyoming
#> 596 Alabama
#> 597 Arizona
#> 598 Arkansas
#> 599 California
#> 600 Colorado
#> 601 Connecticut
#> 602 Delaware
#> 603 Florida
#> 604 Georgia
#> 605 Idaho
#> 606 Illinois
#> 607 Indiana
#> 608 Iowa
#> 609 Kansas
#> 610 Kentucky
#> 611 Louisiana
#> 612 Maine
#> 613 Maryland
#> 614 Massachusetts
#> 615 Michigan
#> 616 Minnesota
#> 617 Mississippi
#> 618 Missouri
#> 619 Montana
#> 620 Nebraska
#> 621 Nevada
#> 622 New Hampshire
#> 623 New Jersey
#> 624 New Mexico
#> 625 New York
#> 626 North Carolina
#> 627 North Dakota
#> 628 Ohio
#> 629 Oklahoma
#> 630 Oregon
#> 631 Pennsylvania
#> 632 Rhode Island
#> 633 South Carolina
#> 634 South Dakota
#> 635 Tennessee
#> 636 Texas
#> 637 Utah
#> 638 Vermont
#> 639 Virginia
#> 640 Washington
#> 641 West Virginia
#> 642 Wisconsin
#> 643 Wyoming
#> 644 Alabama
#> 645 Arizona
#> 646 Arkansas
#> 647 California
#> 648 Colorado
#> 649 Delaware
#> 650 Florida
#> 651 Georgia
#> 652 Idaho
#> 653 Illinois
#> 654 Indiana
#> 655 Iowa
#> 656 Kansas
#> 657 Louisiana
#> 658 Maine
#> 659 Massachusetts
#> 660 Michigan
#> 661 Minnesota
#> 662 Mississippi
#> 663 Missouri
#> 664 Montana
#> 665 Nebraska
#> 666 Nevada
#> 667 New Jersey
#> 668 New Mexico
#> 669 New York
#> 670 North Carolina
#> 671 Pennsylvania
#> 672 Rhode Island
#> 673 South Carolina
#> 674 South Dakota
#> 675 Tennessee
#> 676 Texas
#> 677 Utah
#> 678 Vermont
#> 679 Virginia
#> 680 Washington
#> 681 West Virginia
#> 682 Wyoming
#> 683 Alaska
#> 684 Colorado
#> 685 Iowa
#> 686 Kansas
#> 687 Montana
#> 688 New Mexico
#> 689 Rhode Island
#> 690 South Dakota
#> 691 Washington
#> 692 Wisconsin
#> 693 Alabama
#> 694 Arkansas
#> 695 California
#> 696 Colorado
#> 697 Connecticut
#> 698 Delaware
#> 699 Florida
#> 700 Georgia
#> 701 Illinois
#> 702 Indiana
#> 703 Iowa
#> 704 Kansas
#> 705 Kentucky
#> 706 Louisiana
#> 707 Maine
#> 708 Maryland
#> 709 Massachusetts
#> 710 Michigan
#> 711 Minnesota
#> 712 Montana
#> 713 New Hampshire
#> 714 New Jersey
#> 715 New Mexico
#> 716 New York
#> 717 North Carolina
#> 718 North Dakota
#> 719 Ohio
#> 720 Oregon
#> 721 Pennsylvania
#> 722 Rhode Island
#> 723 South Carolina
#> 724 Tennessee
#> 725 Texas
#> 726 Utah
#> 727 Vermont
#> 728 Virginia
#> 729 Washington
#> 730 West Virginia
#> 731 Wisconsin
#> 732 Alaska
#> 733 California
#> 734 Delaware
#> 735 Idaho
#> 736 Indiana
#> 737 Kentucky
#> 738 Louisiana
#> 739 Maine
#> 740 Massachusetts
#> 741 Minnesota
#> 742 Montana
#> 743 Nevada
#> 744 New Jersey
#> 745 New Mexico
#> 746 North Carolina
#> 747 Oregon
#> 748 Rhode Island
#> 749 South Carolina
#> 750 Texas
#> 751 Utah
#> 752 Vermont
#> 753 Washington
#> 754 Wisconsin
#> 755 Wyoming
#> 756 Alabama
#> 757 Arizona
#> 758 Arkansas
#> 759 California
#> 760 Colorado
#> 761 Connecticut
#> 762 Delaware
#> 763 Florida
#> 764 Georgia
#> 765 Idaho
#> 766 Illinois
#> 767 Indiana
#> 768 Iowa
#> 769 Kansas
#> 770 Kentucky
#> 771 Louisiana
#> 772 Maine
#> 773 Maryland
#> 774 Massachusetts
#> 775 Michigan
#> 776 Minnesota
#> 777 Mississippi
#> 778 Missouri
#> 779 Montana
#> 780 Nebraska
#> 781 Nevada
#> 782 New Hampshire
#> 783 New Jersey
#> 784 New Mexico
#> 785 New York
#> 786 North Carolina
#> 787 North Dakota
#> 788 Ohio
#> 789 Oklahoma
#> 790 Oregon
#> 791 Pennsylvania
#> 792 Rhode Island
#> 793 South Carolina
#> 794 South Dakota
#> 795 Tennessee
#> 796 Texas
#> 797 Utah
#> 798 Vermont
#> 799 Virginia
#> 800 Washington
#> 801 West Virginia
#> 802 Wisconsin
#> 803 Wyoming
#> 804 Alabama
#> 805 Arkansas
#> 806 Colorado
#> 807 Connecticut
#> 808 Florida
#> 809 Georgia
#> 810 Hawaii
#> 811 Idaho
#> 812 Illinois
#> 813 Indiana
#> 814 Iowa
#> 815 Kansas
#> 816 Maine
#> 817 Maryland
#> 818 Massachusetts
#> 819 Michigan
#> 820 Minnesota
#> 821 Missouri
#> 822 Montana
#> 823 Nebraska
#> 824 Nevada
#> 825 New Jersey
#> 826 New Mexico
#> 827 North Carolina
#> 828 North Dakota
#> 829 Ohio
#> 830 Oklahoma
#> 831 Oregon
#> 832 Rhode Island
#> 833 South Carolina
#> 834 South Dakota
#> 835 Tennessee
#> 836 Texas
#> 837 Utah
#> 838 Vermont
#> 839 Washington
#> 840 Wisconsin
#> 841 Wyoming
#> 842 Alabama
#> 843 Arizona
#> 844 Arkansas
#> 845 California
#> 846 Hawaii
#> 847 Idaho
#> 848 Indiana
#> 849 Iowa
#> 850 Minnesota
#> 851 Montana
#> 852 Nevada
#> 853 New Hampshire
#> 854 New Mexico
#> 855 North Dakota
#> 856 Oregon
#> 857 Rhode Island
#> 858 Utah
#> 859 Virginia
#> 860 Washington
#> 861 Wisconsin
#> 862 Alabama
#> 863 Alaska
#> 864 Arizona
#> 865 Arkansas
#> 866 California
#> 867 Colorado
#> 868 Connecticut
#> 869 Georgia
#> 870 Hawaii
#> 871 Idaho
#> 872 Illinois
#> 873 Indiana
#> 874 Iowa
#> 875 Kansas
#> 876 Kentucky
#> 877 Louisiana
#> 878 Maine
#> 879 Maryland
#> 880 Massachusetts
#> 881 Michigan
#> 882 Minnesota
#> 883 Mississippi
#> 884 Missouri
#> 885 Montana
#> 886 Nebraska
#> 887 Nevada
#> 888 New Hampshire
#> 889 New Jersey
#> 890 New Mexico
#> 891 North Carolina
#> 892 North Dakota
#> 893 Ohio
#> 894 Oklahoma
#> 895 Oregon
#> 896 Rhode Island
#> 897 South Carolina
#> 898 South Dakota
#> 899 Tennessee
#> 900 Texas
#> 901 Utah
#> 902 Vermont
#> 903 Virginia
#> 904 Washington
#> 905 Wisconsin
#> 906 Wyoming
#> 907 Alabama
#> 908 Arizona
#> 909 California
#> 910 Colorado
#> 911 Connecticut
#> 912 Delaware
#> 913 Florida
#> 914 Georgia
#> 915 Hawaii
#> 916 Illinois
#> 917 Indiana
#> 918 Kansas
#> 919 Kentucky
#> 920 Louisiana
#> 921 Maine
#> 922 Maryland
#> 923 Massachusetts
#> 924 Michigan
#> 925 Minnesota
#> 926 Missouri
#> 927 Montana
#> 928 Nebraska
#> 929 Nevada
#> 930 New Hampshire
#> 931 New Jersey
#> 932 New Mexico
#> 933 New York
#> 934 North Carolina
#> 935 North Dakota
#> 936 Oklahoma
#> 937 Oregon
#> 938 Rhode Island
#> 939 South Carolina
#> 940 Tennessee
#> 941 Texas
#> 942 Utah
#> 943 Vermont
#> 944 Virginia
#> 945 Washington
#> 946 West Virginia
#> 947 Wisconsin
#> 948 Wyoming
#> 949 Alabama
#> 950 Arizona
#> 951 California
#> 952 Colorado
#> 953 Connecticut
#> 954 Delaware
#> 955 Florida
#> 956 Georgia
#> 957 Illinois
#> 958 Indiana
#> 959 Iowa
#> 960 Kentucky
#> 961 Louisiana
#> 962 Maine
#> 963 Maryland
#> 964 Massachusetts
#> 965 Michigan
#> 966 Minnesota
#> 967 Missouri
#> 968 Montana
#> 969 Nebraska
#> 970 Nevada
#> 971 New Hampshire
#> 972 New Jersey
#> 973 New Mexico
#> 974 New York
#> 975 North Carolina
#> 976 Ohio
#> 977 Oklahoma
#> 978 Oregon
#> 979 Pennsylvania
#> 980 Rhode Island
#> 981 South Carolina
#> 982 Tennessee
#> 983 Texas
#> 984 Vermont
#> 985 Virginia
#> 986 Washington
#> 987 West Virginia
#> 988 Wisconsin
#> 989 Wyoming
#> 990 Hawaii
#> 991 Oklahoma
#> 992 California
#> 993 Colorado
#> 994 Connecticut
#> 995 Delaware
#> 996 Idaho
#> 997 Indiana
#> 998 Louisiana
#> 999 Maine
#> 1000 Massachusetts
#> 1001 Michigan
#> 1002 Nebraska
#> 1003 New Hampshire
#> 1004 New Jersey
#> 1005 New York
#> 1006 North Dakota
#> 1007 Ohio
#> 1008 Oregon
#> 1009 Pennsylvania
#> 1010 Rhode Island
#> 1011 Vermont
#> 1012 Washington
#> 1013 Wisconsin
#> 1014 Alabama
#> 1015 Alaska
#> 1016 Arizona
#> 1017 Arkansas
#> 1018 California
#> 1019 Colorado
#> 1020 Connecticut
#> 1021 Delaware
#> 1022 Florida
#> 1023 Georgia
#> 1024 Hawaii
#> 1025 Idaho
#> 1026 Illinois
#> 1027 Indiana
#> 1028 Iowa
#> 1029 Kansas
#> 1030 Kentucky
#> 1031 Louisiana
#> 1032 Maine
#> 1033 Maryland
#> 1034 Massachusetts
#> 1035 Michigan
#> 1036 Minnesota
#> 1037 Mississippi
#> 1038 Missouri
#> 1039 Montana
#> 1040 Nebraska
#> 1041 Nevada
#> 1042 New Hampshire
#> 1043 New Jersey
#> 1044 New Mexico
#> 1045 New York
#> 1046 North Carolina
#> 1047 North Dakota
#> 1048 Ohio
#> 1049 Oklahoma
#> 1050 Oregon
#> 1051 Pennsylvania
#> 1052 Rhode Island
#> 1053 South Carolina
#> 1054 South Dakota
#> 1055 Tennessee
#> 1056 Texas
#> 1057 Utah
#> 1058 Vermont
#> 1059 Virginia
#> 1060 Washington
#> 1061 West Virginia
#> 1062 Wisconsin
#> 1063 Wyoming
#> 1064 Arizona
#> 1065 Colorado
#> 1066 Connecticut
#> 1067 Idaho
#> 1068 Illinois
#> 1069 Indiana
#> 1070 Kansas
#> 1071 Louisiana
#> 1072 Maine
#> 1073 Maryland
#> 1074 Massachusetts
#> 1075 Minnesota
#> 1076 Montana
#> 1077 New Jersey
#> 1078 New Mexico
#> 1079 New York
#> 1080 North Dakota
#> 1081 Oregon
#> 1082 Pennsylvania
#> 1083 Rhode Island
#> 1084 Utah
#> 1085 Washington
#> 1086 Wisconsin
#> 1087 Wyoming
#> 1088 Alabama
#> 1089 Arizona
#> 1090 Arkansas
#> 1091 California
#> 1092 Colorado
#> 1093 Delaware
#> 1094 Florida
#> 1095 Georgia
#> 1096 Idaho
#> 1097 Illinois
#> 1098 Indiana
#> 1099 Iowa
#> 1100 Kansas
#> 1101 Kentucky
#> 1102 Louisiana
#> 1103 Maine
#> 1104 Maryland
#> 1105 Massachusetts
#> 1106 Michigan
#> 1107 Mississippi
#> 1108 Missouri
#> 1109 Montana
#> 1110 New Mexico
#> 1111 North Carolina
#> 1112 Ohio
#> 1113 Oklahoma
#> 1114 Oregon
#> 1115 Pennsylvania
#> 1116 Rhode Island
#> 1117 South Carolina
#> 1118 South Dakota
#> 1119 Tennessee
#> 1120 Texas
#> 1121 Utah
#> 1122 Virginia
#> 1123 Washington
#> 1124 West Virginia
#> 1125 Wyoming
#> 1126 California
#> 1127 Illinois
#> 1128 Vermont
#> 1129 Alabama
#> 1130 Alaska
#> 1131 Arizona
#> 1132 Arkansas
#> 1133 California
#> 1134 Colorado
#> 1135 Connecticut
#> 1136 Delaware
#> 1137 Florida
#> 1138 Georgia
#> 1139 Hawaii
#> 1140 Idaho
#> 1141 Illinois
#> 1142 Indiana
#> 1143 Iowa
#> 1144 Kansas
#> 1145 Kentucky
#> 1146 Louisiana
#> 1147 Maine
#> 1148 Maryland
#> 1149 Massachusetts
#> 1150 Michigan
#> 1151 Minnesota
#> 1152 Mississippi
#> 1153 Missouri
#> 1154 Montana
#> 1155 Nebraska
#> 1156 Nevada
#> 1157 New Hampshire
#> 1158 New Jersey
#> 1159 New Mexico
#> 1160 New York
#> 1161 North Carolina
#> 1162 North Dakota
#> 1163 Ohio
#> 1164 Oklahoma
#> 1165 Oregon
#> 1166 Pennsylvania
#> 1167 Rhode Island
#> 1168 South Carolina
#> 1169 South Dakota
#> 1170 Tennessee
#> 1171 Texas
#> 1172 Utah
#> 1173 Vermont
#> 1174 Virginia
#> 1175 Washington
#> 1176 West Virginia
#> 1177 Wisconsin
#> 1178 Wyoming
#> 1179 Colorado
#> 1180 Connecticut
#> 1181 Idaho
#> 1182 Iowa
#> 1183 Kentucky
#> 1184 Massachusetts
#> 1185 Michigan
#> 1186 Nebraska
#> 1187 North Dakota
#> 1188 Ohio
#> 1189 South Carolina
#> 1190 Texas
#> 1191 Vermont
#> 1192 Virginia
#> 1193 Alabama
#> 1194 Alaska
#> 1195 Arizona
#> 1196 Arkansas
#> 1197 Colorado
#> 1198 Connecticut
#> 1199 Delaware
#> 1200 Florida
#> 1201 Georgia
#> 1202 Hawaii
#> 1203 Idaho
#> 1204 Indiana
#> 1205 Kansas
#> 1206 Kentucky
#> 1207 Louisiana
#> 1208 Michigan
#> 1209 Missouri
#> 1210 Montana
#> 1211 New Hampshire
#> 1212 New Mexico
#> 1213 North Carolina
#> 1214 North Dakota
#> 1215 Ohio
#> 1216 Oklahoma
#> 1217 Pennsylvania
#> 1218 Rhode Island
#> 1219 South Carolina
#> 1220 South Dakota
#> 1221 Tennessee
#> 1222 Texas
#> 1223 Utah
#> 1224 Virginia
#> 1225 Washington
#> 1226 Wisconsin
#> 1227 Alabama
#> 1228 Arkansas
#> 1229 Florida
#> 1230 Georgia
#> 1231 Hawaii
#> 1232 Idaho
#> 1233 Indiana
#> 1234 Kansas
#> 1235 Louisiana
#> 1236 Michigan
#> 1237 Missouri
#> 1238 New Hampshire
#> 1239 North Carolina
#> 1240 Pennsylvania
#> 1241 Rhode Island
#> 1242 South Carolina
#> 1243 South Dakota
#> 1244 Tennessee
#> 1245 Texas
#> 1246 Virginia
#> 1247 Wisconsin
#> 1248 Arizona
#> 1249 California
#> 1250 Colorado
#> 1251 Connecticut
#> 1252 Delaware
#> 1253 Florida
#> 1254 Georgia
#> 1255 Hawaii
#> 1256 Idaho
#> 1257 Illinois
#> 1258 Indiana
#> 1259 Iowa
#> 1260 Louisiana
#> 1261 Maine
#> 1262 Maryland
#> 1263 Massachusetts
#> 1264 Michigan
#> 1265 Missouri
#> 1266 Montana
#> 1267 Nebraska
#> 1268 New Hampshire
#> 1269 North Carolina
#> 1270 North Dakota
#> 1271 Ohio
#> 1272 Oklahoma
#> 1273 Oregon
#> 1274 Pennsylvania
#> 1275 South Carolina
#> 1276 South Dakota
#> 1277 Tennessee
#> 1278 Texas
#> 1279 Utah
#> 1280 Vermont
#> 1281 Virginia
#> 1282 Washington
#> 1283 West Virginia
#> 1284 Wyoming
#> 1285 Alabama
#> 1286 Arizona
#> 1287 Arkansas
#> 1288 Iowa
#> 1289 Kentucky
#> 1290 Maine
#> 1291 Mississippi
#> 1292 Montana
#> 1293 Nebraska
#> 1294 New Hampshire
#> 1295 Oregon
#> 1296 Colorado
#> 1297 Delaware
#> 1298 Georgia
#> 1299 Idaho
#> 1300 Indiana
#> 1301 Iowa
#> 1302 Kansas
#> 1303 Kentucky
#> 1304 Maine
#> 1305 Missouri
#> 1306 Montana
#> 1307 Nebraska
#> 1308 Nevada
#> 1309 New Mexico
#> 1310 North Carolina
#> 1311 North Dakota
#> 1312 Oklahoma
#> 1313 South Carolina
#> 1314 South Dakota
#> 1315 Utah
#> 1316 Virginia
#> 1317 Alaska
#> 1318 Arizona
#> 1319 Arkansas
#> 1320 Colorado
#> 1321 Florida
#> 1322 Hawaii
#> 1323 Michigan
#> 1324 Minnesota
#> 1325 Nevada
#> 1326 New Jersey
#> 1327 New Mexico
#> 1328 North Carolina
#> 1329 North Dakota
#> 1330 Oklahoma
#> 1331 Oregon
#> 1332 Utah
#> 1333 Washington
#> 1334 Alabama
#> 1335 Arizona
#> 1336 Arkansas
#> 1337 California
#> 1338 Colorado
#> 1339 Connecticut
#> 1340 Delaware
#> 1341 Florida
#> 1342 Georgia
#> 1343 Idaho
#> 1344 Illinois
#> 1345 Indiana
#> 1346 Iowa
#> 1347 Kansas
#> 1348 Kentucky
#> 1349 Louisiana
#> 1350 Maine
#> 1351 Maryland
#> 1352 Michigan
#> 1353 Minnesota
#> 1354 Mississippi
#> 1355 Missouri
#> 1356 Montana
#> 1357 Nebraska
#> 1358 Nevada
#> 1359 New Hampshire
#> 1360 New Jersey
#> 1361 New Mexico
#> 1362 New York
#> 1363 North Carolina
#> 1364 North Dakota
#> 1365 Ohio
#> 1366 Oklahoma
#> 1367 Oregon
#> 1368 Pennsylvania
#> 1369 Rhode Island
#> 1370 South Carolina
#> 1371 South Dakota
#> 1372 Tennessee
#> 1373 Texas
#> 1374 Utah
#> 1375 Vermont
#> 1376 Virginia
#> 1377 Washington
#> 1378 West Virginia
#> 1379 Wisconsin
#> 1380 Wyoming
#> 1381 Idaho
#> 1382 Washington
#> 1383 Arkansas
#> 1384 California
#> 1385 Colorado
#> 1386 Connecticut
#> 1387 Florida
#> 1388 Illinois
#> 1389 Indiana
#> 1390 Kansas
#> 1391 Kentucky
#> 1392 Massachusetts
#> 1393 Michigan
#> 1394 Minnesota
#> 1395 Missouri
#> 1396 Montana
#> 1397 Nebraska
#> 1398 New Hampshire
#> 1399 New Jersey
#> 1400 New Mexico
#> 1401 New York
#> 1402 Ohio
#> 1403 Oklahoma
#> 1404 Pennsylvania
#> 1405 Rhode Island
#> 1406 Tennessee
#> 1407 Utah
#> 1408 Vermont
#> 1409 Virginia
#> 1410 Washington
#> 1411 Nevada
#> 1412 New Mexico
#> 1413 North Dakota
#> 1414 Texas
#> 1415 Utah
#> 1416 Alabama
#> 1417 Arizona
#> 1418 Arkansas
#> 1419 Colorado
#> 1420 Connecticut
#> 1421 Delaware
#> 1422 Florida
#> 1423 Georgia
#> 1424 Hawaii
#> 1425 Idaho
#> 1426 Illinois
#> 1427 Indiana
#> 1428 Iowa
#> 1429 Kansas
#> 1430 Kentucky
#> 1431 Louisiana
#> 1432 Maryland
#> 1433 Minnesota
#> 1434 Mississippi
#> 1435 Missouri
#> 1436 Nebraska
#> 1437 Nevada
#> 1438 New Hampshire
#> 1439 New Mexico
#> 1440 New York
#> 1441 North Carolina
#> 1442 North Dakota
#> 1443 Oklahoma
#> 1444 Oregon
#> 1445 Pennsylvania
#> 1446 Rhode Island
#> 1447 South Carolina
#> 1448 South Dakota
#> 1449 Tennessee
#> 1450 Texas
#> 1451 Utah
#> 1452 Washington
#> 1453 Wisconsin
#> 1454 Wyoming
#> 1455 Alabama
#> 1456 Idaho
#> 1457 North Dakota
#> 1458 Utah
#> 1459 Washington
#> 1460 Alabama
#> 1461 Alaska
#> 1462 Arizona
#> 1463 Arkansas
#> 1464 California
#> 1465 Colorado
#> 1466 Connecticut
#> 1467 Delaware
#> 1468 Florida
#> 1469 Georgia
#> 1470 Hawaii
#> 1471 Idaho
#> 1472 Illinois
#> 1473 Indiana
#> 1474 Iowa
#> 1475 Kansas
#> 1476 Kentucky
#> 1477 Louisiana
#> 1478 Maine
#> 1479 Maryland
#> 1480 Massachusetts
#> 1481 Michigan
#> 1482 Minnesota
#> 1483 Mississippi
#> 1484 Missouri
#> 1485 Montana
#> 1486 Nebraska
#> 1487 Nevada
#> 1488 New Hampshire
#> 1489 New Jersey
#> 1490 New Mexico
#> 1491 New York
#> 1492 North Carolina
#> 1493 North Dakota
#> 1494 Ohio
#> 1495 Oklahoma
#> 1496 Oregon
#> 1497 Pennsylvania
#> 1498 Rhode Island
#> 1499 South Carolina
#> 1500 South Dakota
#> 1501 Tennessee
#> 1502 Texas
#> 1503 Utah
#> 1504 Vermont
#> 1505 Virginia
#> 1506 Washington
#> 1507 Wisconsin
#> 1508 Wyoming
#> 1509 Montana
#> 1510 North Dakota
#> 1511 Virginia
#> 1512 Alabama
#> 1513 Arizona
#> 1514 Arkansas
#> 1515 California
#> 1516 Colorado
#> 1517 Connecticut
#> 1518 Delaware
#> 1519 Florida
#> 1520 Georgia
#> 1521 Idaho
#> 1522 Illinois
#> 1523 Indiana
#> 1524 Iowa
#> 1525 Kansas
#> 1526 Kentucky
#> 1527 Louisiana
#> 1528 Maine
#> 1529 Maryland
#> 1530 Massachusetts
#> 1531 Michigan
#> 1532 Minnesota
#> 1533 Mississippi
#> 1534 Missouri
#> 1535 Montana
#> 1536 Nebraska
#> 1537 Nevada
#> 1538 New Hampshire
#> 1539 New Jersey
#> 1540 New Mexico
#> 1541 New York
#> 1542 North Carolina
#> 1543 North Dakota
#> 1544 Ohio
#> 1545 Oklahoma
#> 1546 Oregon
#> 1547 Pennsylvania
#> 1548 Rhode Island
#> 1549 South Carolina
#> 1550 South Dakota
#> 1551 Tennessee
#> 1552 Texas
#> 1553 Utah
#> 1554 Vermont
#> 1555 Virginia
#> 1556 Washington
#> 1557 West Virginia
#> 1558 Wisconsin
#> 1559 Wyoming
#> 1560 Alabama
#> 1561 Alaska
#> 1562 Arizona
#> 1563 Arkansas
#> 1564 California
#> 1565 Colorado
#> 1566 Connecticut
#> 1567 Florida
#> 1568 Illinois
#> 1569 Indiana
#> 1570 Iowa
#> 1571 Kansas
#> 1572 Kentucky
#> 1573 Louisiana
#> 1574 Maine
#> 1575 Massachusetts
#> 1576 Michigan
#> 1577 Missouri
#> 1578 Montana
#> 1579 Nevada
#> 1580 New Hampshire
#> 1581 New Jersey
#> 1582 New Mexico
#> 1583 New York
#> 1584 Pennsylvania
#> 1585 Rhode Island
#> 1586 South Carolina
#> 1587 Texas
#> 1588 Vermont
#> 1589 Virginia
#> 1590 West Virginia
#> 1591 Wisconsin
#> 1592 Alabama
#> 1593 Arizona
#> 1594 Arkansas
#> 1595 California
#> 1596 Colorado
#> 1597 Connecticut
#> 1598 Delaware
#> 1599 Florida
#> 1600 Georgia
#> 1601 Idaho
#> 1602 Illinois
#> 1603 Indiana
#> 1604 Iowa
#> 1605 Kansas
#> 1606 Kentucky
#> 1607 Louisiana
#> 1608 Maine
#> 1609 Maryland
#> 1610 Massachusetts
#> 1611 Michigan
#> 1612 Minnesota
#> 1613 Mississippi
#> 1614 Missouri
#> 1615 Montana
#> 1616 Nebraska
#> 1617 Nevada
#> 1618 New Hampshire
#> 1619 New Jersey
#> 1620 New Mexico
#> 1621 New York
#> 1622 North Carolina
#> 1623 North Dakota
#> 1624 Ohio
#> 1625 Oklahoma
#> 1626 Oregon
#> 1627 Pennsylvania
#> 1628 Rhode Island
#> 1629 South Carolina
#> 1630 South Dakota
#> 1631 Tennessee
#> 1632 Texas
#> 1633 Utah
#> 1634 Vermont
#> 1635 Virginia
#> 1636 Washington
#> 1637 West Virginia
#> 1638 Wisconsin
#> 1639 Wyoming
#> 1640 Arizona
#> 1641 California
#> 1642 Colorado
#> 1643 Connecticut
#> 1644 Delaware
#> 1645 Florida
#> 1646 Georgia
#> 1647 Idaho
#> 1648 Illinois
#> 1649 Indiana
#> 1650 Iowa
#> 1651 Kansas
#> 1652 Kentucky
#> 1653 Louisiana
#> 1654 Maine
#> 1655 Maryland
#> 1656 Massachusetts
#> 1657 Michigan
#> 1658 Minnesota
#> 1659 Missouri
#> 1660 Montana
#> 1661 Nebraska
#> 1662 Nevada
#> 1663 New Hampshire
#> 1664 New Jersey
#> 1665 New Mexico
#> 1666 New York
#> 1667 North Carolina
#> 1668 North Dakota
#> 1669 Ohio
#> 1670 Oklahoma
#> 1671 Oregon
#> 1672 Pennsylvania
#> 1673 Rhode Island
#> 1674 South Dakota
#> 1675 Tennessee
#> 1676 Texas
#> 1677 Utah
#> 1678 Vermont
#> 1679 Virginia
#> 1680 Washington
#> 1681 Wisconsin
#> 1682 Wyoming
#> 1683 Alaska
#> 1684 Arizona
#> 1685 California
#> 1686 Delaware
#> 1687 Florida
#> 1688 Georgia
#> 1689 Idaho
#> 1690 Illinois
#> 1691 Kansas
#> 1692 Louisiana
#> 1693 Maine
#> 1694 Maryland
#> 1695 Massachusetts
#> 1696 Minnesota
#> 1697 Missouri
#> 1698 Nebraska
#> 1699 Nevada
#> 1700 New Hampshire
#> 1701 New Jersey
#> 1702 New Mexico
#> 1703 North Carolina
#> 1704 North Dakota
#> 1705 Ohio
#> 1706 Pennsylvania
#> 1707 Rhode Island
#> 1708 South Dakota
#> 1709 Texas
#> 1710 Vermont
#> 1711 West Virginia
#> 1712 Alaska
#> 1713 Arizona
#> 1714 Arkansas
#> 1715 California
#> 1716 Colorado
#> 1717 Connecticut
#> 1718 Delaware
#> 1719 Florida
#> 1720 Georgia
#> 1721 Hawaii
#> 1722 Idaho
#> 1723 Illinois
#> 1724 Indiana
#> 1725 Iowa
#> 1726 Kansas
#> 1727 Kentucky
#> 1728 Louisiana
#> 1729 Maine
#> 1730 Maryland
#> 1731 Michigan
#> 1732 Minnesota
#> 1733 Missouri
#> 1734 Montana
#> 1735 Nebraska
#> 1736 Nevada
#> 1737 New Hampshire
#> 1738 New Jersey
#> 1739 New Mexico
#> 1740 New York
#> 1741 North Dakota
#> 1742 Ohio
#> 1743 Oklahoma
#> 1744 Oregon
#> 1745 Pennsylvania
#> 1746 Rhode Island
#> 1747 South Carolina
#> 1748 South Dakota
#> 1749 Tennessee
#> 1750 Texas
#> 1751 Utah
#> 1752 Vermont
#> 1753 Virginia
#> 1754 Washington
#> 1755 West Virginia
#> 1756 Wisconsin
#> 1757 Wyoming
#> 1758 Arizona
#> 1759 California
#> 1760 Connecticut
#> 1761 Delaware
#> 1762 Hawaii
#> 1763 Illinois
#> 1764 Iowa
#> 1765 Maine
#> 1766 Maryland
#> 1767 Massachusetts
#> 1768 Michigan
#> 1769 Minnesota
#> 1770 Montana
#> 1771 Nebraska
#> 1772 New Hampshire
#> 1773 New Jersey
#> 1774 New Mexico
#> 1775 New York
#> 1776 North Carolina
#> 1777 Ohio
#> 1778 Oregon
#> 1779 Rhode Island
#> 1780 Utah
#> 1781 Vermont
#> 1782 Washington
#> 1783 Arizona
#> 1784 Arkansas
#> 1785 California
#> 1786 Colorado
#> 1787 Connecticut
#> 1788 Florida
#> 1789 Georgia
#> 1790 Idaho
#> 1791 Illinois
#> 1792 Indiana
#> 1793 Iowa
#> 1794 Kansas
#> 1795 Kentucky
#> 1796 Louisiana
#> 1797 Maine
#> 1798 Maryland
#> 1799 Massachusetts
#> 1800 Michigan
#> 1801 Minnesota
#> 1802 Mississippi
#> 1803 Missouri
#> 1804 Montana
#> 1805 Nebraska
#> 1806 Nevada
#> 1807 New Hampshire
#> 1808 New Jersey
#> 1809 New Mexico
#> 1810 New York
#> 1811 North Carolina
#> 1812 North Dakota
#> 1813 Ohio
#> 1814 Oklahoma
#> 1815 Oregon
#> 1816 Pennsylvania
#> 1817 Rhode Island
#> 1818 South Carolina
#> 1819 South Dakota
#> 1820 Tennessee
#> 1821 Texas
#> 1822 Utah
#> 1823 Vermont
#> 1824 Washington
#> 1825 West Virginia
#> 1826 Wisconsin
#> 1827 Wyoming
#> 1828 Alabama
#> 1829 California
#> 1830 Connecticut
#> 1831 Delaware
#> 1832 Florida
#> 1833 Georgia
#> 1834 Hawaii
#> 1835 Louisiana
#> 1836 Maine
#> 1837 Maryland
#> 1838 Massachusetts
#> 1839 New Hampshire
#> 1840 New Jersey
#> 1841 New Mexico
#> 1842 New York
#> 1843 North Carolina
#> 1844 Oregon
#> 1845 Pennsylvania
#> 1846 Rhode Island
#> 1847 Tennessee
#> 1848 West Virginia
#> 1849 Alabama
#> 1850 Arizona
#> 1851 Arkansas
#> 1852 California
#> 1853 Colorado
#> 1854 Connecticut
#> 1855 Delaware
#> 1856 Florida
#> 1857 Hawaii
#> 1858 Idaho
#> 1859 Illinois
#> 1860 Indiana
#> 1861 Iowa
#> 1862 Kentucky
#> 1863 Louisiana
#> 1864 Maine
#> 1865 Maryland
#> 1866 Massachusetts
#> 1867 Michigan
#> 1868 Minnesota
#> 1869 Missouri
#> 1870 New Hampshire
#> 1871 New Jersey
#> 1872 New Mexico
#> 1873 New York
#> 1874 North Carolina
#> 1875 Ohio
#> 1876 Oklahoma
#> 1877 Oregon
#> 1878 Pennsylvania
#> 1879 Rhode Island
#> 1880 Texas
#> 1881 Utah
#> 1882 Virginia
#> 1883 Washington
#> 1884 Wisconsin
#> 1885 Alabama
#> 1886 Arizona
#> 1887 Arkansas
#> 1888 California
#> 1889 Colorado
#> 1890 Connecticut
#> 1891 Delaware
#> 1892 Florida
#> 1893 Georgia
#> 1894 Idaho
#> 1895 Illinois
#> 1896 Indiana
#> 1897 Iowa
#> 1898 Kansas
#> 1899 Kentucky
#> 1900 Louisiana
#> 1901 Maine
#> 1902 Maryland
#> 1903 Massachusetts
#> 1904 Michigan
#> 1905 Minnesota
#> 1906 Mississippi
#> 1907 Missouri
#> 1908 Montana
#> 1909 Nebraska
#> 1910 Nevada
#> 1911 New Hampshire
#> 1912 New Jersey
#> 1913 New Mexico
#> 1914 New York
#> 1915 North Carolina
#> 1916 North Dakota
#> 1917 Ohio
#> 1918 Oklahoma
#> 1919 Oregon
#> 1920 Pennsylvania
#> 1921 Rhode Island
#> 1922 South Carolina
#> 1923 South Dakota
#> 1924 Tennessee
#> 1925 Texas
#> 1926 Utah
#> 1927 Vermont
#> 1928 Virginia
#> 1929 Washington
#> 1930 West Virginia
#> 1931 Wisconsin
#> 1932 Wyoming
#> 1933 Arkansas
#> 1934 California
#> 1935 Connecticut
#> 1936 Delaware
#> 1937 Florida
#> 1938 Illinois
#> 1939 Indiana
#> 1940 Kansas
#> 1941 Maine
#> 1942 Maryland
#> 1943 Massachusetts
#> 1944 Michigan
#> 1945 Minnesota
#> 1946 Nevada
#> 1947 New Jersey
#> 1948 New York
#> 1949 North Carolina
#> 1950 Pennsylvania
#> 1951 Rhode Island
#> 1952 South Carolina
#> 1953 Vermont
#> 1954 Wyoming
#> 1955 Alabama
#> 1956 Arizona
#> 1957 Arkansas
#> 1958 California
#> 1959 Colorado
#> 1960 Connecticut
#> 1961 Delaware
#> 1962 Florida
#> 1963 Georgia
#> 1964 Idaho
#> 1965 Illinois
#> 1966 Indiana
#> 1967 Iowa
#> 1968 Kansas
#> 1969 Kentucky
#> 1970 Louisiana
#> 1971 Maine
#> 1972 Maryland
#> 1973 Massachusetts
#> 1974 Michigan
#> 1975 Minnesota
#> 1976 Mississippi
#> 1977 Missouri
#> 1978 Montana
#> 1979 Nebraska
#> 1980 Nevada
#> 1981 New Hampshire
#> 1982 New Jersey
#> 1983 New Mexico
#> 1984 New York
#> 1985 North Carolina
#> 1986 North Dakota
#> 1987 Ohio
#> 1988 Oklahoma
#> 1989 Oregon
#> 1990 Pennsylvania
#> 1991 Rhode Island
#> 1992 South Carolina
#> 1993 South Dakota
#> 1994 Tennessee
#> 1995 Texas
#> 1996 Utah
#> 1997 Vermont
#> 1998 Virginia
#> 1999 Washington
#> 2000 West Virginia
#> 2001 Wisconsin
#> 2002 Wyoming
#> 2003 Alabama
#> 2004 Alaska
#> 2005 Arkansas
#> 2006 California
#> 2007 Colorado
#> 2008 Connecticut
#> 2009 Delaware
#> 2010 Florida
#> 2011 Georgia
#> 2012 Indiana
#> 2013 Kansas
#> 2014 Louisiana
#> 2015 Massachusetts
#> 2016 Michigan
#> 2017 Missouri
#> 2018 Montana
#> 2019 Oregon
#> 2020 Pennsylvania
#> 2021 Texas
#> 2022 Virginia
#> 2023 Washington
#> 2024 West Virginia
#> 2025 Wisconsin
#> 2026 California
#> 2027 Connecticut
#> 2028 Delaware
#> 2029 Hawaii
#> 2030 Iowa
#> 2031 Maine
#> 2032 Massachusetts
#> 2033 Michigan
#> 2034 New York
#> 2035 Oregon
#> 2036 Vermont
#> 2037 California
#> 2038 Connecticut
#> 2039 Delaware
#> 2040 Florida
#> 2041 Hawaii
#> 2042 Illinois
#> 2043 Iowa
#> 2044 Maryland
#> 2045 Massachusetts
#> 2046 Minnesota
#> 2047 Nevada
#> 2048 New Hampshire
#> 2049 New Jersey
#> 2050 North Carolina
#> 2051 Rhode Island
#> 2052 Virginia
#> 2053 Wisconsin
#> 2054 Alabama
#> 2055 California
#> 2056 Connecticut
#> 2057 Hawaii
#> 2058 Maryland
#> 2059 Nevada
#> 2060 New York
#> 2061 North Carolina
#> 2062 Oregon
#> 2063 Pennsylvania
#> 2064 Tennessee
#> 2065 Texas
#> 2066 Virginia
#> 2067 Alabama
#> 2068 Alaska
#> 2069 Arizona
#> 2070 Arkansas
#> 2071 California
#> 2072 Colorado
#> 2073 Connecticut
#> 2074 Delaware
#> 2075 Florida
#> 2076 Georgia
#> 2077 Hawaii
#> 2078 Illinois
#> 2079 Indiana
#> 2080 Iowa
#> 2081 Kansas
#> 2082 Kentucky
#> 2083 Louisiana
#> 2084 Maine
#> 2085 Maryland
#> 2086 Massachusetts
#> 2087 Michigan
#> 2088 Minnesota
#> 2089 Mississippi
#> 2090 Missouri
#> 2091 Montana
#> 2092 Nebraska
#> 2093 Nevada
#> 2094 New Hampshire
#> 2095 New Jersey
#> 2096 New Mexico
#> 2097 New York
#> 2098 North Carolina
#> 2099 North Dakota
#> 2100 Ohio
#> 2101 Oklahoma
#> 2102 Oregon
#> 2103 Pennsylvania
#> 2104 Rhode Island
#> 2105 South Carolina
#> 2106 South Dakota
#> 2107 Tennessee
#> 2108 Texas
#> 2109 Utah
#> 2110 Vermont
#> 2111 Virginia
#> 2112 Washington
#> 2113 Wisconsin
#> 2114 Wyoming
#> 2115 Alabama
#> 2116 Arizona
#> 2117 California
#> 2118 Delaware
#> 2119 Florida
#> 2120 Louisiana
#> 2121 Massachusetts
#> 2122 Minnesota
#> 2123 Montana
#> 2124 Nevada
#> 2125 New Jersey
#> 2126 Ohio
#> 2127 Oregon
#> 2128 Rhode Island
#> 2129 Tennessee
#> 2130 Texas
#> 2131 Washington
#> 2132 Wyoming
#> 2133 Alabama
#> 2134 Arizona
#> 2135 Arkansas
#> 2136 California
#> 2137 Colorado
#> 2138 Connecticut
#> 2139 Delaware
#> 2140 Florida
#> 2141 Georgia
#> 2142 Idaho
#> 2143 Illinois
#> 2144 Indiana
#> 2145 Iowa
#> 2146 Kansas
#> 2147 Kentucky
#> 2148 Louisiana
#> 2149 Maine
#> 2150 Maryland
#> 2151 Massachusetts
#> 2152 Michigan
#> 2153 Minnesota
#> 2154 Mississippi
#> 2155 Missouri
#> 2156 Montana
#> 2157 Nebraska
#> 2158 Nevada
#> 2159 New Hampshire
#> 2160 New Jersey
#> 2161 New Mexico
#> 2162 New York
#> 2163 North Carolina
#> 2164 North Dakota
#> 2165 Ohio
#> 2166 Oklahoma
#> 2167 Oregon
#> 2168 Pennsylvania
#> 2169 Rhode Island
#> 2170 South Carolina
#> 2171 South Dakota
#> 2172 Tennessee
#> 2173 Texas
#> 2174 Utah
#> 2175 Vermont
#> 2176 Virginia
#> 2177 Washington
#> 2178 West Virginia
#> 2179 Wisconsin
#> 2180 Wyoming
#> 2181 Alabama
#> 2182 Arkansas
#> 2183 California
#> 2184 Colorado
#> 2185 Connecticut
#> 2186 Delaware
#> 2187 Florida
#> 2188 Georgia
#> 2189 Idaho
#> 2190 Indiana
#> 2191 Iowa
#> 2192 Kentucky
#> 2193 Louisiana
#> 2194 Maine
#> 2195 Maryland
#> 2196 Massachusetts
#> 2197 Michigan
#> 2198 Minnesota
#> 2199 Montana
#> 2200 Nebraska
#> 2201 Nevada
#> 2202 New Hampshire
#> 2203 New Jersey
#> 2204 New Mexico
#> 2205 New York
#> 2206 North Carolina
#> 2207 North Dakota
#> 2208 Ohio
#> 2209 Oklahoma
#> 2210 Oregon
#> 2211 Pennsylvania
#> 2212 Rhode Island
#> 2213 South Carolina
#> 2214 South Dakota
#> 2215 Tennessee
#> 2216 Texas
#> 2217 Utah
#> 2218 Vermont
#> 2219 Virginia
#> 2220 Washington
#> 2221 West Virginia
#> 2222 Wisconsin
#> 2223 Wyoming
#> 2224 Connecticut
#> 2225 Maine
#> 2226 New Hampshire
#> 2227 Ohio
#> 2228 Rhode Island
#> 2229 Idaho
#> 2230 Alabama
#> 2231 Alaska
#> 2232 Delaware
#> 2233 Florida
#> 2234 Georgia
#> 2235 Hawaii
#> 2236 Idaho
#> 2237 Illinois
#> 2238 Indiana
#> 2239 Iowa
#> 2240 Kansas
#> 2241 Kentucky
#> 2242 Louisiana
#> 2243 Maine
#> 2244 Maryland
#> 2245 Massachusetts
#> 2246 Nevada
#> 2247 New York
#> 2248 Ohio
#> 2249 Oklahoma
#> 2250 Oregon
#> 2251 Pennsylvania
#> 2252 Rhode Island
#> 2253 South Carolina
#> 2254 South Dakota
#> 2255 Tennessee
#> 2256 Texas
#> 2257 Utah
#> 2258 Vermont
#> 2259 Virginia
#> 2260 Washington
#> 2261 West Virginia
#> 2262 Wisconsin
#> 2263 Wyoming
#> 2264 Arkansas
#> 2265 Florida
#> 2266 Georgia
#> 2267 Indiana
#> 2268 Louisiana
#> 2269 Minnesota
#> 2270 Nevada
#> 2271 New Mexico
#> 2272 New York
#> 2273 North Dakota
#> 2274 Oklahoma
#> 2275 Texas
#> 2276 Utah
#> 2277 Vermont
#> 2278 Washington
#> 2279 West Virginia
#> 2280 Alaska
#> 2281 Arizona
#> 2282 California
#> 2283 Colorado
#> 2284 Delaware
#> 2285 Florida
#> 2286 Georgia
#> 2287 Idaho
#> 2288 Illinois
#> 2289 Kansas
#> 2290 Kentucky
#> 2291 Louisiana
#> 2292 Maine
#> 2293 Maryland
#> 2294 Michigan
#> 2295 Missouri
#> 2296 Nebraska
#> 2297 Nevada
#> 2298 New Jersey
#> 2299 New Mexico
#> 2300 New York
#> 2301 North Carolina
#> 2302 North Dakota
#> 2303 Oklahoma
#> 2304 Oregon
#> 2305 Rhode Island
#> 2306 South Carolina
#> 2307 Tennessee
#> 2308 Texas
#> 2309 Virginia
#> 2310 Washington
#> 2311 Alabama
#> 2312 Alaska
#> 2313 Arizona
#> 2314 Arkansas
#> 2315 California
#> 2316 Colorado
#> 2317 Connecticut
#> 2318 Delaware
#> 2319 Florida
#> 2320 Georgia
#> 2321 Hawaii
#> 2322 Idaho
#> 2323 Illinois
#> 2324 Indiana
#> 2325 Iowa
#> 2326 Kansas
#> 2327 Kentucky
#> 2328 Louisiana
#> 2329 Maine
#> 2330 Maryland
#> 2331 Massachusetts
#> 2332 Michigan
#> 2333 Minnesota
#> 2334 Mississippi
#> 2335 Missouri
#> 2336 Montana
#> 2337 Nebraska
#> 2338 Nevada
#> 2339 New Hampshire
#> 2340 New Jersey
#> 2341 New Mexico
#> 2342 New York
#> 2343 North Carolina
#> 2344 North Dakota
#> 2345 Ohio
#> 2346 Oklahoma
#> 2347 Oregon
#> 2348 Pennsylvania
#> 2349 Rhode Island
#> 2350 South Carolina
#> 2351 South Dakota
#> 2352 Tennessee
#> 2353 Texas
#> 2354 Utah
#> 2355 Vermont
#> 2356 Virginia
#> 2357 Washington
#> 2358 West Virginia
#> 2359 Wisconsin
#> 2360 Wyoming
#> 2361 Connecticut
#> 2362 Florida
#> 2363 Illinois
#> 2364 Kentucky
#> 2365 Louisiana
#> 2366 Michigan
#> 2367 Mississippi
#> 2368 Nevada
#> 2369 New York
#> 2370 Ohio
#> 2371 Oregon
#> 2372 South Carolina
#> 2373 Utah
#> 2374 Virginia
#> 2375 West Virginia
#> 2376 Wisconsin
#> 2377 Wyoming
#> 2378 Connecticut
#> 2379 Virginia
#> 2380 Colorado
#> 2381 Connecticut
#> 2382 Iowa
#> 2383 Kansas
#> 2384 Maryland
#> 2385 Minnesota
#> 2386 New Mexico
#> 2387 North Dakota
#> 2388 Oklahoma
#> 2389 Oregon
#> 2390 Wisconsin
#> 2391 Connecticut
#> 2392 Maryland
#> 2393 Minnesota
#> 2394 Montana
#> 2395 New Mexico
#> 2396 Oklahoma
#> 2397 Vermont
#> 2398 Alaska
#> 2399 Arizona
#> 2400 Arkansas
#> 2401 California
#> 2402 Colorado
#> 2403 Connecticut
#> 2404 Delaware
#> 2405 Florida
#> 2406 Georgia
#> 2407 Hawaii
#> 2408 Illinois
#> 2409 Kansas
#> 2410 Louisiana
#> 2411 Massachusetts
#> 2412 Michigan
#> 2413 Minnesota
#> 2414 New Hampshire
#> 2415 New Jersey
#> 2416 New Mexico
#> 2417 North Carolina
#> 2418 Rhode Island
#> 2419 South Carolina
#> 2420 Texas
#> 2421 Wisconsin
#> 2422 Wyoming
#> 2423 Alabama
#> 2424 Colorado
#> 2425 Florida
#> 2426 Kansas
#> 2427 Louisiana
#> 2428 Michigan
#> 2429 Mississippi
#> 2430 Nebraska
#> 2431 Nevada
#> 2432 New Mexico
#> 2433 Pennsylvania
#> 2434 South Dakota
#> 2435 Tennessee
#> 2436 Utah
#> 2437 Alabama
#> 2438 Alaska
#> 2439 Arizona
#> 2440 Arkansas
#> 2441 California
#> 2442 Colorado
#> 2443 Connecticut
#> 2444 Delaware
#> 2445 Florida
#> 2446 Georgia
#> 2447 Hawaii
#> 2448 Idaho
#> 2449 Illinois
#> 2450 Indiana
#> 2451 Iowa
#> 2452 Kansas
#> 2453 Kentucky
#> 2454 Louisiana
#> 2455 Maine
#> 2456 Maryland
#> 2457 Michigan
#> 2458 Minnesota
#> 2459 Mississippi
#> 2460 Missouri
#> 2461 Montana
#> 2462 Nebraska
#> 2463 Nevada
#> 2464 New Hampshire
#> 2465 New Jersey
#> 2466 New Mexico
#> 2467 New York
#> 2468 North Carolina
#> 2469 North Dakota
#> 2470 Ohio
#> 2471 Oklahoma
#> 2472 Oregon
#> 2473 Pennsylvania
#> 2474 Rhode Island
#> 2475 South Carolina
#> 2476 South Dakota
#> 2477 Tennessee
#> 2478 Texas
#> 2479 Utah
#> 2480 Vermont
#> 2481 Virginia
#> 2482 Washington
#> 2483 Wisconsin
#> 2484 Wyoming
#> 2485 Alabama
#> 2486 Arizona
#> 2487 Arkansas
#> 2488 California
#> 2489 Colorado
#> 2490 Connecticut
#> 2491 Florida
#> 2492 Georgia
#> 2493 Idaho
#> 2494 Illinois
#> 2495 Indiana
#> 2496 Iowa
#> 2497 Kansas
#> 2498 Kentucky
#> 2499 Louisiana
#> 2500 Maryland
#> 2501 Massachusetts
#> 2502 Michigan
#> 2503 Minnesota
#> 2504 Mississippi
#> 2505 Missouri
#> 2506 Montana
#> 2507 Nevada
#> 2508 New Hampshire
#> 2509 New Jersey
#> 2510 New Mexico
#> 2511 New York
#> 2512 North Carolina
#> 2513 North Dakota
#> 2514 Ohio
#> 2515 Oregon
#> 2516 Pennsylvania
#> 2517 Rhode Island
#> 2518 South Carolina
#> 2519 South Dakota
#> 2520 Tennessee
#> 2521 Texas
#> 2522 Utah
#> 2523 Vermont
#> 2524 Virginia
#> 2525 Washington
#> 2526 West Virginia
#> 2527 Wisconsin
#> 2528 Wyoming
#> 2529 Idaho
#> 2530 Nevada
#> 2531 New Mexico
#> 2532 Oklahoma
#> 2533 Alabama
#> 2534 Alaska
#> 2535 Arizona
#> 2536 Arkansas
#> 2537 California
#> 2538 Colorado
#> 2539 Connecticut
#> 2540 Delaware
#> 2541 Florida
#> 2542 Georgia
#> 2543 Hawaii
#> 2544 Idaho
#> 2545 Illinois
#> 2546 Indiana
#> 2547 Iowa
#> 2548 Kansas
#> 2549 Kentucky
#> 2550 Louisiana
#> 2551 Maine
#> 2552 Maryland
#> 2553 Massachusetts
#> 2554 Michigan
#> 2555 Minnesota
#> 2556 Mississippi
#> 2557 Missouri
#> 2558 Montana
#> 2559 Nebraska
#> 2560 Nevada
#> 2561 New Hampshire
#> 2562 New Jersey
#> 2563 New Mexico
#> 2564 New York
#> 2565 North Carolina
#> 2566 North Dakota
#> 2567 Ohio
#> 2568 Oklahoma
#> 2569 Oregon
#> 2570 Pennsylvania
#> 2571 Rhode Island
#> 2572 South Carolina
#> 2573 South Dakota
#> 2574 Tennessee
#> 2575 Texas
#> 2576 Utah
#> 2577 Vermont
#> 2578 Virginia
#> 2579 Washington
#> 2580 West Virginia
#> 2581 Wisconsin
#> 2582 Wyoming
#> 2583 Alabama
#> 2584 Arizona
#> 2585 Arkansas
#> 2586 California
#> 2587 Colorado
#> 2588 Connecticut
#> 2589 Delaware
#> 2590 Florida
#> 2591 Georgia
#> 2592 Idaho
#> 2593 Illinois
#> 2594 Indiana
#> 2595 Iowa
#> 2596 Kansas
#> 2597 Kentucky
#> 2598 Maine
#> 2599 Maryland
#> 2600 Massachusetts
#> 2601 Michigan
#> 2602 Minnesota
#> 2603 Mississippi
#> 2604 Missouri
#> 2605 Montana
#> 2606 Nebraska
#> 2607 Nevada
#> 2608 New Hampshire
#> 2609 New Jersey
#> 2610 New York
#> 2611 North Carolina
#> 2612 North Dakota
#> 2613 Ohio
#> 2614 Oklahoma
#> 2615 Oregon
#> 2616 Pennsylvania
#> 2617 Rhode Island
#> 2618 South Carolina
#> 2619 South Dakota
#> 2620 Tennessee
#> 2621 Texas
#> 2622 Utah
#> 2623 Vermont
#> 2624 Virginia
#> 2625 Washington
#> 2626 West Virginia
#> 2627 Wisconsin
#> 2628 Wyoming
#> 2629 Alabama
#> 2630 Alaska
#> 2631 Arizona
#> 2632 Arkansas
#> 2633 California
#> 2634 Colorado
#> 2635 Connecticut
#> 2636 Delaware
#> 2637 Florida
#> 2638 Georgia
#> 2639 Hawaii
#> 2640 Idaho
#> 2641 Illinois
#> 2642 Indiana
#> 2643 Iowa
#> 2644 Kansas
#> 2645 Kentucky
#> 2646 Louisiana
#> 2647 Maine
#> 2648 Maryland
#> 2649 Massachusetts
#> 2650 Michigan
#> 2651 Minnesota
#> 2652 Mississippi
#> 2653 Missouri
#> 2654 Montana
#> 2655 Nebraska
#> 2656 Nevada
#> 2657 New Hampshire
#> 2658 New Jersey
#> 2659 New Mexico
#> 2660 New York
#> 2661 North Carolina
#> 2662 North Dakota
#> 2663 Ohio
#> 2664 Oklahoma
#> 2665 Oregon
#> 2666 Pennsylvania
#> 2667 Rhode Island
#> 2668 South Carolina
#> 2669 South Dakota
#> 2670 Tennessee
#> 2671 Texas
#> 2672 Utah
#> 2673 Vermont
#> 2674 Virginia
#> 2675 Washington
#> 2676 West Virginia
#> 2677 Wisconsin
#> 2678 Alabama
#> 2679 Arizona
#> 2680 Arkansas
#> 2681 California
#> 2682 Colorado
#> 2683 Connecticut
#> 2684 Delaware
#> 2685 Florida
#> 2686 Georgia
#> 2687 Idaho
#> 2688 Illinois
#> 2689 Indiana
#> 2690 Iowa
#> 2691 Kansas
#> 2692 Kentucky
#> 2693 Maine
#> 2694 Maryland
#> 2695 Michigan
#> 2696 Minnesota
#> 2697 Missouri
#> 2698 Montana
#> 2699 Nebraska
#> 2700 Nevada
#> 2701 New Hampshire
#> 2702 New Jersey
#> 2703 New Mexico
#> 2704 North Carolina
#> 2705 North Dakota
#> 2706 Ohio
#> 2707 Oklahoma
#> 2708 Oregon
#> 2709 Pennsylvania
#> 2710 Rhode Island
#> 2711 South Carolina
#> 2712 South Dakota
#> 2713 Tennessee
#> 2714 Texas
#> 2715 Utah
#> 2716 Vermont
#> 2717 Virginia
#> 2718 Washington
#> 2719 West Virginia
#> 2720 Wisconsin
#> 2721 Wyoming
#> 2722 Alabama
#> 2723 Arizona
#> 2724 Arkansas
#> 2725 California
#> 2726 Colorado
#> 2727 Connecticut
#> 2728 Delaware
#> 2729 Florida
#> 2730 Georgia
#> 2731 Idaho
#> 2732 Illinois
#> 2733 Indiana
#> 2734 Iowa
#> 2735 Kansas
#> 2736 Kentucky
#> 2737 Louisiana
#> 2738 Maine
#> 2739 Maryland
#> 2740 Massachusetts
#> 2741 Michigan
#> 2742 Minnesota
#> 2743 Mississippi
#> 2744 Missouri
#> 2745 Montana
#> 2746 Nebraska
#> 2747 Nevada
#> 2748 New Hampshire
#> 2749 New Jersey
#> 2750 New Mexico
#> 2751 New York
#> 2752 North Dakota
#> 2753 Ohio
#> 2754 Oklahoma
#> 2755 Pennsylvania
#> 2756 Rhode Island
#> 2757 South Carolina
#> 2758 South Dakota
#> 2759 Tennessee
#> 2760 Texas
#> 2761 Utah
#> 2762 Vermont
#> 2763 Virginia
#> 2764 Washington
#> 2765 West Virginia
#> 2766 Wisconsin
#> 2767 Wyoming
#> 2768 Alabama
#> 2769 Arizona
#> 2770 Arkansas
#> 2771 California
#> 2772 Colorado
#> 2773 Connecticut
#> 2774 Delaware
#> 2775 Florida
#> 2776 Georgia
#> 2777 Idaho
#> 2778 Illinois
#> 2779 Indiana
#> 2780 Iowa
#> 2781 Kansas
#> 2782 Kentucky
#> 2783 Louisiana
#> 2784 Maine
#> 2785 Maryland
#> 2786 Massachusetts
#> 2787 Michigan
#> 2788 Minnesota
#> 2789 Mississippi
#> 2790 Missouri
#> 2791 Montana
#> 2792 Nebraska
#> 2793 Nevada
#> 2794 New Hampshire
#> 2795 New Jersey
#> 2796 New Mexico
#> 2797 New York
#> 2798 North Carolina
#> 2799 North Dakota
#> 2800 Ohio
#> 2801 Oklahoma
#> 2802 Oregon
#> 2803 Pennsylvania
#> 2804 Rhode Island
#> 2805 South Carolina
#> 2806 South Dakota
#> 2807 Tennessee
#> 2808 Texas
#> 2809 Utah
#> 2810 Vermont
#> 2811 Virginia
#> 2812 West Virginia
#> 2813 Wisconsin
#> 2814 Wyoming
#> 2815 Alabama
#> 2816 Arkansas
#> 2817 California
#> 2818 Delaware
#> 2819 Georgia
#> 2820 Indiana
#> 2821 Kansas
#> 2822 Maryland
#> 2823 Michigan
#> 2824 Nebraska
#> 2825 Nevada
#> 2826 New Jersey
#> 2827 Pennsylvania
#> 2828 Rhode Island
#> 2829 South Carolina
#> 2830 Tennessee
#> 2831 Utah
#> 2832 Vermont
#> 2833 Virginia
#> 2834 Arizona
#> 2835 Arkansas
#> 2836 California
#> 2837 Colorado
#> 2838 Georgia
#> 2839 Hawaii
#> 2840 Indiana
#> 2841 Maine
#> 2842 Nebraska
#> 2843 Nevada
#> 2844 Ohio
#> 2845 Utah
#> 2846 Virginia
#> 2847 Washington
#> 2848 Wisconsin
#> 2849 Iowa
#> 2850 North Dakota
#> 2851 California
#> 2852 Colorado
#> 2853 Connecticut
#> 2854 Kansas
#> 2855 Maine
#> 2856 Maryland
#> 2857 Massachusetts
#> 2858 Michigan
#> 2859 Minnesota
#> 2860 Montana
#> 2861 Nevada
#> 2862 New York
#> 2863 North Carolina
#> 2864 Oregon
#> 2865 Washington
#> 2866 Wisconsin
#> 2867 Arizona
#> 2868 Florida
#> 2869 Hawaii
#> 2870 Maryland
#> 2871 New Jersey
#> 2872 Oregon
#> 2873 Rhode Island
#> 2874 Tennessee
#> 2875 Vermont
#> 2876 Washington
#> 2877 Alabama
#> 2878 Alaska
#> 2879 Arkansas
#> 2880 California
#> 2881 Connecticut
#> 2882 Delaware
#> 2883 Georgia
#> 2884 Illinois
#> 2885 Indiana
#> 2886 Louisiana
#> 2887 Maryland
#> 2888 Minnesota
#> 2889 Missouri
#> 2890 Nebraska
#> 2891 Nevada
#> 2892 New Jersey
#> 2893 New Mexico
#> 2894 North Carolina
#> 2895 Oklahoma
#> 2896 Oregon
#> 2897 Rhode Island
#> 2898 Tennessee
#> 2899 Texas
#> 2900 Virginia
#> 2901 Washington
#> 2902 West Virginia
#> 2903 Wyoming
#> 2904 Alabama
#> 2905 Arizona
#> 2906 Florida
#> 2907 Hawaii
#> 2908 Maryland
#> 2909 Michigan
#> 2910 Montana
#> 2911 Nevada
#> 2912 New Jersey
#> 2913 New Mexico
#> 2914 North Dakota
#> 2915 Ohio
#> 2916 Texas
#> 2917 Utah
#> 2918 Washington
#> 2919 Vermont
#> 2920 Alabama
#> 2921 Arizona
#> 2922 Arkansas
#> 2923 California
#> 2924 Colorado
#> 2925 Connecticut
#> 2926 Delaware
#> 2927 Florida
#> 2928 Georgia
#> 2929 Idaho
#> 2930 Illinois
#> 2931 Indiana
#> 2932 Iowa
#> 2933 Kansas
#> 2934 Kentucky
#> 2935 Louisiana
#> 2936 Maine
#> 2937 Maryland
#> 2938 Massachusetts
#> 2939 Michigan
#> 2940 Minnesota
#> 2941 Mississippi
#> 2942 Missouri
#> 2943 Montana
#> 2944 Nebraska
#> 2945 Nevada
#> 2946 New Hampshire
#> 2947 New Jersey
#> 2948 New Mexico
#> 2949 New York
#> 2950 North Carolina
#> 2951 North Dakota
#> 2952 Ohio
#> 2953 Oklahoma
#> 2954 Oregon
#> 2955 Pennsylvania
#> 2956 Rhode Island
#> 2957 South Carolina
#> 2958 South Dakota
#> 2959 Tennessee
#> 2960 Texas
#> 2961 Utah
#> 2962 Vermont
#> 2963 Virginia
#> 2964 West Virginia
#> 2965 Wisconsin
#> 2966 Wyoming
#> 2967 California
#> 2968 Colorado
#> 2969 Connecticut
#> 2970 Florida
#> 2971 Illinois
#> 2972 Indiana
#> 2973 Maine
#> 2974 Massachusetts
#> 2975 Michigan
#> 2976 Minnesota
#> 2977 New Hampshire
#> 2978 New Jersey
#> 2979 New York
#> 2980 North Carolina
#> 2981 Ohio
#> 2982 Oregon
#> 2983 Pennsylvania
#> 2984 Rhode Island
#> 2985 Vermont
#> 2986 Washington
#> 2987 Wisconsin
#> 2988 Utah
#> 2989 Kansas
#> 2990 Alaska
#> 2991 Colorado
#> 2992 Connecticut
#> 2993 Minnesota
#> 2994 Nevada
#> 2995 Connecticut
#> 2996 Vermont
#> 2997 Connecticut
#> 2998 Delaware
#> 2999 Vermont
#> 3000 Alaska
#> 3001 Georgia
#> 3002 Mississippi
#> 3003 North Dakota
#> 3004 Alabama
#> 3005 Alaska
#> 3006 Arizona
#> 3007 Arkansas
#> 3008 California
#> 3009 Colorado
#> 3010 Connecticut
#> 3011 Delaware
#> 3012 Florida
#> 3013 Georgia
#> 3014 Idaho
#> 3015 Illinois
#> 3016 Indiana
#> 3017 Iowa
#> 3018 Kansas
#> 3019 Kentucky
#> 3020 Maine
#> 3021 Maryland
#> 3022 Massachusetts
#> 3023 Michigan
#> 3024 Minnesota
#> 3025 Mississippi
#> 3026 Missouri
#> 3027 Montana
#> 3028 Nebraska
#> 3029 Nevada
#> 3030 New Hampshire
#> 3031 New Jersey
#> 3032 New Mexico
#> 3033 New York
#> 3034 North Carolina
#> 3035 North Dakota
#> 3036 Ohio
#> 3037 Oklahoma
#> 3038 Pennsylvania
#> 3039 Rhode Island
#> 3040 South Carolina
#> 3041 Tennessee
#> 3042 Texas
#> 3043 Utah
#> 3044 Vermont
#> 3045 Virginia
#> 3046 West Virginia
#> 3047 Wisconsin
#> 3048 Wyoming
#> 3049 Maine
#> 3050 Rhode Island
#> 3051 Arkansas
#> 3052 Colorado
#> 3053 Connecticut
#> 3054 Delaware
#> 3055 Florida
#> 3056 Hawaii
#> 3057 Idaho
#> 3058 Iowa
#> 3059 Kansas
#> 3060 Maryland
#> 3061 Massachusetts
#> 3062 Michigan
#> 3063 Minnesota
#> 3064 Nevada
#> 3065 New Mexico
#> 3066 North Carolina
#> 3067 Oklahoma
#> 3068 Rhode Island
#> 3069 South Carolina
#> 3070 Tennessee
#> 3071 Texas
#> 3072 Wisconsin
#> 3073 Alabama
#> 3074 Alaska
#> 3075 Arkansas
#> 3076 Colorado
#> 3077 Connecticut
#> 3078 Delaware
#> 3079 Florida
#> 3080 Georgia
#> 3081 Hawaii
#> 3082 Idaho
#> 3083 Illinois
#> 3084 Indiana
#> 3085 Iowa
#> 3086 Kansas
#> 3087 Kentucky
#> 3088 Maine
#> 3089 Maryland
#> 3090 Massachusetts
#> 3091 Michigan
#> 3092 Minnesota
#> 3093 Missouri
#> 3094 Montana
#> 3095 Nebraska
#> 3096 New Hampshire
#> 3097 New Jersey
#> 3098 New Mexico
#> 3099 New York
#> 3100 North Carolina
#> 3101 North Dakota
#> 3102 Ohio
#> 3103 Oklahoma
#> 3104 Oregon
#> 3105 Pennsylvania
#> 3106 Rhode Island
#> 3107 South Carolina
#> 3108 South Dakota
#> 3109 Tennessee
#> 3110 Texas
#> 3111 Utah
#> 3112 Vermont
#> 3113 Washington
#> 3114 West Virginia
#> 3115 Wisconsin
#> 3116 Wyoming
#> 3117 Alabama
#> 3118 Alaska
#> 3119 Arkansas
#> 3120 California
#> 3121 Colorado
#> 3122 Connecticut
#> 3123 Delaware
#> 3124 Florida
#> 3125 Georgia
#> 3126 Hawaii
#> 3127 Idaho
#> 3128 Illinois
#> 3129 Indiana
#> 3130 Iowa
#> 3131 Kansas
#> 3132 Kentucky
#> 3133 Maine
#> 3134 Maryland
#> 3135 Massachusetts
#> 3136 Michigan
#> 3137 Minnesota
#> 3138 Mississippi
#> 3139 Missouri
#> 3140 Montana
#> 3141 Nebraska
#> 3142 Nevada
#> 3143 New Hampshire
#> 3144 New Jersey
#> 3145 New Mexico
#> 3146 New York
#> 3147 North Dakota
#> 3148 Ohio
#> 3149 Oklahoma
#> 3150 Oregon
#> 3151 Pennsylvania
#> 3152 Rhode Island
#> 3153 South Carolina
#> 3154 South Dakota
#> 3155 Tennessee
#> 3156 Texas
#> 3157 Utah
#> 3158 Vermont
#> 3159 Virginia
#> 3160 Washington
#> 3161 West Virginia
#> 3162 Wisconsin
#> 3163 Wyoming
#> 3164 Maine
#> 3165 Massachusetts
#> 3166 Alabama
#> 3167 Alaska
#> 3168 Arizona
#> 3169 Arkansas
#> 3170 California
#> 3171 Colorado
#> 3172 Connecticut
#> 3173 Delaware
#> 3174 Florida
#> 3175 Georgia
#> 3176 Hawaii
#> 3177 Idaho
#> 3178 Illinois
#> 3179 Indiana
#> 3180 Iowa
#> 3181 Kansas
#> 3182 Kentucky
#> 3183 Louisiana
#> 3184 Maine
#> 3185 Maryland
#> 3186 Massachusetts
#> 3187 Michigan
#> 3188 Minnesota
#> 3189 Mississippi
#> 3190 Missouri
#> 3191 Montana
#> 3192 Nebraska
#> 3193 Nevada
#> 3194 New Hampshire
#> 3195 New Jersey
#> 3196 New Mexico
#> 3197 New York
#> 3198 North Carolina
#> 3199 North Dakota
#> 3200 Ohio
#> 3201 Oklahoma
#> 3202 Oregon
#> 3203 Pennsylvania
#> 3204 Rhode Island
#> 3205 South Carolina
#> 3206 South Dakota
#> 3207 Tennessee
#> 3208 Texas
#> 3209 Utah
#> 3210 Vermont
#> 3211 Virginia
#> 3212 Washington
#> 3213 West Virginia
#> 3214 Wisconsin
#> 3215 Wyoming
#> 3216 Alabama
#> 3217 Arizona
#> 3218 Arkansas
#> 3219 California
#> 3220 Colorado
#> 3221 Connecticut
#> 3222 Delaware
#> 3223 Florida
#> 3224 Georgia
#> 3225 Idaho
#> 3226 Illinois
#> 3227 Indiana
#> 3228 Iowa
#> 3229 Kansas
#> 3230 Kentucky
#> 3231 Louisiana
#> 3232 Maine
#> 3233 Maryland
#> 3234 Massachusetts
#> 3235 Michigan
#> 3236 Minnesota
#> 3237 Mississippi
#> 3238 Missouri
#> 3239 Montana
#> 3240 Nebraska
#> 3241 Nevada
#> 3242 New Hampshire
#> 3243 New Jersey
#> 3244 New Mexico
#> 3245 New York
#> 3246 North Carolina
#> 3247 North Dakota
#> 3248 Ohio
#> 3249 Oklahoma
#> 3250 Oregon
#> 3251 Pennsylvania
#> 3252 Rhode Island
#> 3253 South Carolina
#> 3254 South Dakota
#> 3255 Tennessee
#> 3256 Texas
#> 3257 Utah
#> 3258 Vermont
#> 3259 Virginia
#> 3260 Washington
#> 3261 West Virginia
#> 3262 Wisconsin
#> 3263 Wyoming
#> 3264 Maryland
#> 3265 Virginia
#> 3266 Alabama
#> 3267 Arizona
#> 3268 Arkansas
#> 3269 California
#> 3270 Colorado
#> 3271 Connecticut
#> 3272 Delaware
#> 3273 Florida
#> 3274 Georgia
#> 3275 Hawaii
#> 3276 Idaho
#> 3277 Illinois
#> 3278 Indiana
#> 3279 Iowa
#> 3280 Kansas
#> 3281 Kentucky
#> 3282 Louisiana
#> 3283 Maine
#> 3284 Maryland
#> 3285 Massachusetts
#> 3286 Michigan
#> 3287 Minnesota
#> 3288 Mississippi
#> 3289 Missouri
#> 3290 Nebraska
#> 3291 Nevada
#> 3292 New Jersey
#> 3293 New Mexico
#> 3294 New York
#> 3295 North Dakota
#> 3296 Ohio
#> 3297 Oklahoma
#> 3298 Oregon
#> 3299 Pennsylvania
#> 3300 Rhode Island
#> 3301 South Carolina
#> 3302 Tennessee
#> 3303 Texas
#> 3304 Utah
#> 3305 Vermont
#> 3306 Virginia
#> 3307 West Virginia
#> 3308 Wisconsin
#> 3309 New Mexico
#> 3310 Utah
#> 3311 Virginia
#> 3312 Alabama
#> 3313 Arizona
#> 3314 Arkansas
#> 3315 California
#> 3316 Colorado
#> 3317 Connecticut
#> 3318 Delaware
#> 3319 Florida
#> 3320 Georgia
#> 3321 Idaho
#> 3322 Illinois
#> 3323 Indiana
#> 3324 Kansas
#> 3325 Kentucky
#> 3326 Louisiana
#> 3327 Maine
#> 3328 Maryland
#> 3329 Massachusetts
#> 3330 Michigan
#> 3331 Minnesota
#> 3332 Mississippi
#> 3333 Montana
#> 3334 Nevada
#> 3335 New Hampshire
#> 3336 New Jersey
#> 3337 New Mexico
#> 3338 New York
#> 3339 North Carolina
#> 3340 Ohio
#> 3341 Oklahoma
#> 3342 Pennsylvania
#> 3343 Rhode Island
#> 3344 South Carolina
#> 3345 South Dakota
#> 3346 Texas
#> 3347 Utah
#> 3348 Vermont
#> 3349 Virginia
#> 3350 Washington
#> 3351 West Virginia
#> 3352 Wisconsin
#> 3353 Wyoming
#> 3354 Alabama
#> 3355 Arizona
#> 3356 Arkansas
#> 3357 Florida
#> 3358 Georgia
#> 3359 Idaho
#> 3360 Indiana
#> 3361 Kentucky
#> 3362 Louisiana
#> 3363 Maine
#> 3364 Michigan
#> 3365 Mississippi
#> 3366 Montana
#> 3367 Nevada
#> 3368 North Carolina
#> 3369 North Dakota
#> 3370 Oklahoma
#> 3371 Oregon
#> 3372 South Dakota
#> 3373 Tennessee
#> 3374 Texas
#> 3375 Utah
#> 3376 Virginia
#> 3377 West Virginia
#> 3378 Wyoming
#> 3379 Alabama
#> 3380 Arizona
#> 3381 Kentucky
#> 3382 Maine
#> 3383 Minnesota
#> 3384 Missouri
#> 3385 Nebraska
#> 3386 New Mexico
#> 3387 Pennsylvania
#> 3388 Rhode Island
#> 3389 Texas
#> 3390 Virginia
#> 3391 Washington
#> 3392 Arkansas
#> 3393 Colorado
#> 3394 Minnesota
#> 3395 Nebraska
#> 3396 North Dakota
#> 3397 Oregon
#> 3398 Washington
#> 3399 Alabama
#> 3400 Alaska
#> 3401 Arizona
#> 3402 Arkansas
#> 3403 Delaware
#> 3404 Idaho
#> 3405 Indiana
#> 3406 Kansas
#> 3407 Kentucky
#> 3408 Maine
#> 3409 Minnesota
#> 3410 Mississippi
#> 3411 Nevada
#> 3412 New Mexico
#> 3413 Oregon
#> 3414 South Carolina
#> 3415 South Dakota
#> 3416 Texas
#> 3417 Virginia
#> 3418 Wisconsin
#> 3419 Wyoming
#> 3420 Alabama
#> 3421 Arizona
#> 3422 Arkansas
#> 3423 California
#> 3424 Colorado
#> 3425 Florida
#> 3426 Georgia
#> 3427 Idaho
#> 3428 Illinois
#> 3429 Indiana
#> 3430 Iowa
#> 3431 Kansas
#> 3432 Kentucky
#> 3433 Louisiana
#> 3434 Michigan
#> 3435 Mississippi
#> 3436 Montana
#> 3437 Nebraska
#> 3438 New Mexico
#> 3439 New York
#> 3440 North Dakota
#> 3441 Ohio
#> 3442 Oklahoma
#> 3443 Oregon
#> 3444 Pennsylvania
#> 3445 South Dakota
#> 3446 Tennessee
#> 3447 Texas
#> 3448 Virginia
#> 3449 West Virginia
#> 3450 Wyoming
#> 3451 Alaska
#> 3452 Arizona
#> 3453 California
#> 3454 Connecticut
#> 3455 Florida
#> 3456 Idaho
#> 3457 Illinois
#> 3458 Indiana
#> 3459 Massachusetts
#> 3460 Minnesota
#> 3461 Montana
#> 3462 New Jersey
#> 3463 New Mexico
#> 3464 Oregon
#> 3465 Tennessee
#> 3466 Vermont
#> 3467 West Virginia
#> 3468 Colorado
#> 3469 Idaho
#> 3470 Indiana
#> 3471 Iowa
#> 3472 Kansas
#> 3473 Maine
#> 3474 Oklahoma
#> 3475 South Carolina
#> 3476 Utah
#> 3477 Wisconsin
#> 3478 Wyoming
#> 3479 Connecticut
#> 3480 Kansas
#> 3481 Ohio
#> 3482 Utah
#> 3483 Arizona
#> 3484 Arkansas
#> 3485 California
#> 3486 Colorado
#> 3487 Connecticut
#> 3488 Delaware
#> 3489 Georgia
#> 3490 Hawaii
#> 3491 Illinois
#> 3492 Iowa
#> 3493 Maine
#> 3494 Maryland
#> 3495 Massachusetts
#> 3496 Missouri
#> 3497 Nevada
#> 3498 New Hampshire
#> 3499 New Jersey
#> 3500 New Mexico
#> 3501 New York
#> 3502 North Carolina
#> 3503 Oregon
#> 3504 Rhode Island
#> 3505 Texas
#> 3506 Vermont
#> 3507 Virginia
#> 3508 Washington
#> 3509 West Virginia
#> 3510 Wisconsin
#> 3511 Arizona
#> 3512 Arkansas
#> 3513 California
#> 3514 Colorado
#> 3515 Connecticut
#> 3516 Delaware
#> 3517 Georgia
#> 3518 Hawaii
#> 3519 Illinois
#> 3520 Iowa
#> 3521 Maine
#> 3522 Maryland
#> 3523 Massachusetts
#> 3524 Michigan
#> 3525 Missouri
#> 3526 Montana
#> 3527 Nevada
#> 3528 New Hampshire
#> 3529 New Jersey
#> 3530 New Mexico
#> 3531 New York
#> 3532 North Carolina
#> 3533 Oregon
#> 3534 Rhode Island
#> 3535 Texas
#> 3536 Vermont
#> 3537 Washington
#> 3538 West Virginia
#> 3539 Wisconsin
#> 3540 Alabama
#> 3541 Arizona
#> 3542 Arkansas
#> 3543 California
#> 3544 Colorado
#> 3545 Delaware
#> 3546 Hawaii
#> 3547 Idaho
#> 3548 Illinois
#> 3549 Iowa
#> 3550 Kansas
#> 3551 Louisiana
#> 3552 Maryland
#> 3553 Minnesota
#> 3554 Montana
#> 3555 Nevada
#> 3556 New Jersey
#> 3557 North Carolina
#> 3558 North Dakota
#> 3559 Oklahoma
#> 3560 Oregon
#> 3561 Rhode Island
#> 3562 South Carolina
#> 3563 South Dakota
#> 3564 Texas
#> 3565 Utah
#> 3566 Washington
#> 3567 Wisconsin
#> 3568 Wyoming
#> 3569 Arizona
#> 3570 Florida
#> 3571 Georgia
#> 3572 Hawaii
#> 3573 Iowa
#> 3574 Louisiana
#> 3575 Maryland
#> 3576 Massachusetts
#> 3577 Missouri
#> 3578 Montana
#> 3579 New Mexico
#> 3580 New York
#> 3581 North Carolina
#> 3582 North Dakota
#> 3583 Ohio
#> 3584 Oklahoma
#> 3585 Oregon
#> 3586 Rhode Island
#> 3587 South Carolina
#> 3588 Texas
#> 3589 Utah
#> 3590 Vermont
#> 3591 West Virginia
#> 3592 Georgia
#> 3593 Kentucky
#> 3594 Maryland
#> 3595 Massachusetts
#> 3596 Montana
#> 3597 New Mexico
#> 3598 New York
#> 3599 Oregon
#> 3600 Alabama
#> 3601 Alaska
#> 3602 Arizona
#> 3603 Arkansas
#> 3604 California
#> 3605 Colorado
#> 3606 Connecticut
#> 3607 Delaware
#> 3608 Florida
#> 3609 Georgia
#> 3610 Hawaii
#> 3611 Idaho
#> 3612 Illinois
#> 3613 Indiana
#> 3614 Iowa
#> 3615 Kansas
#> 3616 Kentucky
#> 3617 Louisiana
#> 3618 Maine
#> 3619 Maryland
#> 3620 Massachusetts
#> 3621 Michigan
#> 3622 Minnesota
#> 3623 Mississippi
#> 3624 Missouri
#> 3625 Montana
#> 3626 Nebraska
#> 3627 Nevada
#> 3628 New Hampshire
#> 3629 New Jersey
#> 3630 New Mexico
#> 3631 New York
#> 3632 North Carolina
#> 3633 North Dakota
#> 3634 Ohio
#> 3635 Oklahoma
#> 3636 Oregon
#> 3637 Pennsylvania
#> 3638 Rhode Island
#> 3639 South Carolina
#> 3640 South Dakota
#> 3641 Tennessee
#> 3642 Texas
#> 3643 Utah
#> 3644 Vermont
#> 3645 Virginia
#> 3646 Washington
#> 3647 West Virginia
#> 3648 Wisconsin
#> 3649 Wyoming
#> 3650 Colorado
#> 3651 Connecticut
#> 3652 Delaware
#> 3653 Florida
#> 3654 Idaho
#> 3655 Illinois
#> 3656 Indiana
#> 3657 Iowa
#> 3658 Louisiana
#> 3659 Massachusetts
#> 3660 Michigan
#> 3661 Minnesota
#> 3662 New Jersey
#> 3663 New York
#> 3664 Ohio
#> 3665 Oklahoma
#> 3666 South Carolina
#> 3667 South Dakota
#> 3668 North Dakota
#> 3669 Texas
#> 3670 Washington
#> 3671 Alabama
#> 3672 Alaska
#> 3673 Arizona
#> 3674 Arkansas
#> 3675 California
#> 3676 Colorado
#> 3677 Connecticut
#> 3678 Delaware
#> 3679 Florida
#> 3680 Georgia
#> 3681 Hawaii
#> 3682 Idaho
#> 3683 Illinois
#> 3684 Indiana
#> 3685 Iowa
#> 3686 Kansas
#> 3687 Kentucky
#> 3688 Louisiana
#> 3689 Maine
#> 3690 Maryland
#> 3691 Massachusetts
#> 3692 Michigan
#> 3693 Minnesota
#> 3694 Mississippi
#> 3695 Missouri
#> 3696 Montana
#> 3697 Nebraska
#> 3698 Nevada
#> 3699 New Hampshire
#> 3700 New Jersey
#> 3701 New Mexico
#> 3702 New York
#> 3703 North Carolina
#> 3704 North Dakota
#> 3705 Ohio
#> 3706 Oklahoma
#> 3707 Oregon
#> 3708 Pennsylvania
#> 3709 Rhode Island
#> 3710 South Carolina
#> 3711 South Dakota
#> 3712 Tennessee
#> 3713 Texas
#> 3714 Utah
#> 3715 Vermont
#> 3716 Virginia
#> 3717 Washington
#> 3718 West Virginia
#> 3719 Wisconsin
#> 3720 Wyoming
#> 3721 California
#> 3722 Colorado
#> 3723 Connecticut
#> 3724 Delaware
#> 3725 Florida
#> 3726 Hawaii
#> 3727 Illinois
#> 3728 Kansas
#> 3729 Kentucky
#> 3730 Louisiana
#> 3731 Maine
#> 3732 Minnesota
#> 3733 Nevada
#> 3734 New Hampshire
#> 3735 New Jersey
#> 3736 New York
#> 3737 North Carolina
#> 3738 Oklahoma
#> 3739 Rhode Island
#> 3740 South Dakota
#> 3741 Texas
#> 3742 Utah
#> 3743 Vermont
#> 3744 Washington
#> 3745 Wisconsin
#> 3746 Alabama
#> 3747 Alaska
#> 3748 Arizona
#> 3749 Arkansas
#> 3750 California
#> 3751 Colorado
#> 3752 Connecticut
#> 3753 Delaware
#> 3754 Florida
#> 3755 Georgia
#> 3756 Hawaii
#> 3757 Idaho
#> 3758 Illinois
#> 3759 Indiana
#> 3760 Iowa
#> 3761 Kansas
#> 3762 Kentucky
#> 3763 Louisiana
#> 3764 Maine
#> 3765 Maryland
#> 3766 Massachusetts
#> 3767 Michigan
#> 3768 Minnesota
#> 3769 Mississippi
#> 3770 Missouri
#> 3771 Montana
#> 3772 Nebraska
#> 3773 Nevada
#> 3774 New Hampshire
#> 3775 New Jersey
#> 3776 New Mexico
#> 3777 New York
#> 3778 North Carolina
#> 3779 North Dakota
#> 3780 Ohio
#> 3781 Oklahoma
#> 3782 Oregon
#> 3783 Pennsylvania
#> 3784 Rhode Island
#> 3785 South Carolina
#> 3786 South Dakota
#> 3787 Tennessee
#> 3788 Texas
#> 3789 Utah
#> 3790 Vermont
#> 3791 Virginia
#> 3792 Washington
#> 3793 West Virginia
#> 3794 Wisconsin
#> 3795 Wyoming
#> 3796 Arizona
#> 3797 Arkansas
#> 3798 California
#> 3799 Colorado
#> 3800 Connecticut
#> 3801 Illinois
#> 3802 Iowa
#> 3803 Kansas
#> 3804 Kentucky
#> 3805 Louisiana
#> 3806 Maryland
#> 3807 Massachusetts
#> 3808 Michigan
#> 3809 Minnesota
#> 3810 New Jersey
#> 3811 New Mexico
#> 3812 New York
#> 3813 North Carolina
#> 3814 Ohio
#> 3815 Oregon
#> 3816 Rhode Island
#> 3817 Tennessee
#> 3818 Virginia
#> 3819 Washington
#> 3820 Wisconsin
#> 3821 Alaska
#> 3822 Arizona
#> 3823 Arkansas
#> 3824 Colorado
#> 3825 Hawaii
#> 3826 Idaho
#> 3827 Indiana
#> 3828 Louisiana
#> 3829 Massachusetts
#> 3830 Minnesota
#> 3831 Nebraska
#> 3832 Nevada
#> 3833 New Mexico
#> 3834 North Carolina
#> 3835 Rhode Island
#> 3836 Virginia
#> 3837 Wisconsin
#> 3838 California
#> 3839 Colorado
#> 3840 Georgia
#> 3841 Illinois
#> 3842 Louisiana
#> 3843 Maine
#> 3844 Michigan
#> 3845 Minnesota
#> 3846 New Hampshire
#> 3847 New Jersey
#> 3848 North Carolina
#> 3849 North Dakota
#> 3850 Oklahoma
#> 3851 Oregon
#> 3852 Pennsylvania
#> 3853 Rhode Island
#> 3854 South Dakota
#> 3855 Tennessee
#> 3856 Texas
#> 3857 Vermont
#> 3858 Washington
#> 3859 Alaska
#> 3860 Arizona
#> 3861 California
#> 3862 Colorado
#> 3863 Florida
#> 3864 Iowa
#> 3865 Michigan
#> 3866 Missouri
#> 3867 Nebraska
#> 3868 New Jersey
#> 3869 New York
#> 3870 North Dakota
#> 3871 Ohio
#> 3872 Oregon
#> 3873 West Virginia
#> 3874 Wisconsin
#> 3875 California
#> 3876 Connecticut
#> 3877 Florida
#> 3878 Idaho
#> 3879 Illinois
#> 3880 Maine
#> 3881 Michigan
#> 3882 Minnesota
#> 3883 New Jersey
#> 3884 New Mexico
#> 3885 North Carolina
#> 3886 Ohio
#> 3887 Oregon
#> 3888 Pennsylvania
#> 3889 Vermont
#> 3890 Washington
#> 3891 Wisconsin
#> 3892 Arkansas
#> 3893 California
#> 3894 Connecticut
#> 3895 Georgia
#> 3896 Illinois
#> 3897 Indiana
#> 3898 Iowa
#> 3899 Kansas
#> 3900 Kentucky
#> 3901 Louisiana
#> 3902 Maine
#> 3903 Maryland
#> 3904 Michigan
#> 3905 Minnesota
#> 3906 Mississippi
#> 3907 Missouri
#> 3908 New Jersey
#> 3909 New Mexico
#> 3910 North Carolina
#> 3911 North Dakota
#> 3912 Ohio
#> 3913 Oklahoma
#> 3914 Oregon
#> 3915 Pennsylvania
#> 3916 Rhode Island
#> 3917 South Dakota
#> 3918 Tennessee
#> 3919 Texas
#> 3920 Utah
#> 3921 Washington
#> 3922 Wisconsin
#> 3923 Alabama
#> 3924 Arizona
#> 3925 Arkansas
#> 3926 California
#> 3927 Colorado
#> 3928 Connecticut
#> 3929 Delaware
#> 3930 Florida
#> 3931 Georgia
#> 3932 Hawaii
#> 3933 Idaho
#> 3934 Illinois
#> 3935 Indiana
#> 3936 Kansas
#> 3937 Kentucky
#> 3938 Louisiana
#> 3939 Maryland
#> 3940 Mississippi
#> 3941 Missouri
#> 3942 Montana
#> 3943 Nebraska
#> 3944 Nevada
#> 3945 New Hampshire
#> 3946 New Jersey
#> 3947 New Mexico
#> 3948 New York
#> 3949 North Carolina
#> 3950 Ohio
#> 3951 Oklahoma
#> 3952 Oregon
#> 3953 Pennsylvania
#> 3954 South Carolina
#> 3955 South Dakota
#> 3956 Tennessee
#> 3957 Texas
#> 3958 Utah
#> 3959 Virginia
#> 3960 Washington
#> 3961 Wyoming
#> 3962 Utah
#> 3963 Colorado
#> 3964 Delaware
#> 3965 Nevada
#> 3966 North Dakota
#> 3967 Rhode Island
#> 3968 Tennessee
#> 3969 Utah
#> 3970 Colorado
#> 3971 Florida
#> 3972 Hawaii
#> 3973 Idaho
#> 3974 Kansas
#> 3975 Minnesota
#> 3976 Nebraska
#> 3977 Ohio
#> 3978 Alabama
#> 3979 Arizona
#> 3980 Arkansas
#> 3981 Colorado
#> 3982 Delaware
#> 3983 Florida
#> 3984 Georgia
#> 3985 Idaho
#> 3986 Illinois
#> 3987 Indiana
#> 3988 Iowa
#> 3989 Kansas
#> 3990 Louisiana
#> 3991 Maine
#> 3992 Maryland
#> 3993 Massachusetts
#> 3994 Minnesota
#> 3995 Missouri
#> 3996 Montana
#> 3997 Nebraska
#> 3998 Nevada
#> 3999 New Jersey
#> 4000 New Mexico
#> 4001 North Carolina
#> 4002 North Dakota
#> 4003 Ohio
#> 4004 Oklahoma
#> 4005 Oregon
#> 4006 Pennsylvania
#> 4007 Rhode Island
#> 4008 South Carolina
#> 4009 South Dakota
#> 4010 Tennessee
#> 4011 Texas
#> 4012 Utah
#> 4013 Vermont
#> 4014 Virginia
#> 4015 Washington
#> 4016 Wisconsin
#> 4017 Wyoming
#> 4018 Alabama
#> 4019 Arizona
#> 4020 Arkansas
#> 4021 California
#> 4022 Colorado
#> 4023 Connecticut
#> 4024 Delaware
#> 4025 Florida
#> 4026 Georgia
#> 4027 Idaho
#> 4028 Illinois
#> 4029 Indiana
#> 4030 Iowa
#> 4031 Kansas
#> 4032 Kentucky
#> 4033 Louisiana
#> 4034 Maine
#> 4035 Maryland
#> 4036 Massachusetts
#> 4037 Michigan
#> 4038 Minnesota
#> 4039 Mississippi
#> 4040 Missouri
#> 4041 Montana
#> 4042 Nebraska
#> 4043 Nevada
#> 4044 New Hampshire
#> 4045 New Jersey
#> 4046 New Mexico
#> 4047 New York
#> 4048 North Carolina
#> 4049 North Dakota
#> 4050 Ohio
#> 4051 Oklahoma
#> 4052 Oregon
#> 4053 Pennsylvania
#> 4054 Rhode Island
#> 4055 South Carolina
#> 4056 South Dakota
#> 4057 Tennessee
#> 4058 Texas
#> 4059 Utah
#> 4060 Vermont
#> 4061 Virginia
#> 4062 Washington
#> 4063 West Virginia
#> 4064 Wisconsin
#> 4065 Wyoming
#> 4066 Arkansas
#> 4067 Colorado
#> 4068 Iowa
#> 4069 Minnesota
#> 4070 Nebraska
#> 4071 Nevada
#> 4072 North Carolina
#> 4073 North Dakota
#> 4074 South Carolina
#> 4075 South Dakota
#> 4076 Tennessee
#> 4077 Utah
#> 4078 Alabama
#> 4079 Alaska
#> 4080 Arkansas
#> 4081 California
#> 4082 Colorado
#> 4083 Delaware
#> 4084 Georgia
#> 4085 Idaho
#> 4086 Indiana
#> 4087 Kansas
#> 4088 Maine
#> 4089 Maryland
#> 4090 Michigan
#> 4091 Minnesota
#> 4092 Mississippi
#> 4093 Missouri
#> 4094 Montana
#> 4095 Nevada
#> 4096 New Hampshire
#> 4097 New Jersey
#> 4098 New Mexico
#> 4099 New York
#> 4100 North Dakota
#> 4101 Ohio
#> 4102 Oklahoma
#> 4103 Oregon
#> 4104 Pennsylvania
#> 4105 Rhode Island
#> 4106 South Carolina
#> 4107 South Dakota
#> 4108 Tennessee
#> 4109 Utah
#> 4110 Vermont
#> 4111 Wisconsin
#> 4112 Wyoming
#> 4113 Alabama
#> 4114 Arkansas
#> 4115 Colorado
#> 4116 Connecticut
#> 4117 Illinois
#> 4118 Kentucky
#> 4119 Maryland
#> 4120 Minnesota
#> 4121 Missouri
#> 4122 New Jersey
#> 4123 New Mexico
#> 4124 North Carolina
#> 4125 Ohio
#> 4126 South Carolina
#> 4127 Tennessee
#> 4128 Texas
#> 4129 Washington
#> 4130 Arkansas
#> 4131 Colorado
#> 4132 Illinois
#> 4133 Mississippi
#> 4134 Nebraska
#> 4135 South Carolina
#> 4136 Arkansas
#> 4137 Idaho
#> 4138 Minnesota
#> 4139 Nevada
#> 4140 South Carolina
#> 4141 Texas
#> 4142 Arkansas
#> 4143 California
#> 4144 Colorado
#> 4145 Florida
#> 4146 Illinois
#> 4147 Minnesota
#> 4148 Missouri
#> 4149 Arkansas
#> 4150 Connecticut
#> 4151 Florida
#> 4152 Idaho
#> 4153 Illinois
#> 4154 Kentucky
#> 4155 Minnesota
#> 4156 Missouri
#> 4157 Nevada
#> 4158 New Mexico
#> 4159 Ohio
#> 4160 Texas
#> 4161 West Virginia
#> 4162 Colorado
#> 4163 Pennsylvania
#> 4164 Texas
#> 4165 Idaho
#> 4166 Kentucky
#> 4167 Minnesota
#> 4168 Florida
#> 4169 Illinois
#> 4170 Pennsylvania
#> 4171 Missouri
#> 4172 South Carolina
#> 4173 Colorado
#> 4174 Idaho
#> 4175 Minnesota
#> 4176 Ohio
#> 4177 South Carolina
#> 4178 Texas
#> 4179 Virginia
#> 4180 Arizona
#> 4181 Arkansas
#> 4182 California
#> 4183 Colorado
#> 4184 Florida
#> 4185 Idaho
#> 4186 Illinois
#> 4187 Kentucky
#> 4188 Maine
#> 4189 Maryland
#> 4190 Massachusetts
#> 4191 Michigan
#> 4192 Mississippi
#> 4193 Missouri
#> 4194 Montana
#> 4195 Nebraska
#> 4196 Nevada
#> 4197 New Mexico
#> 4198 North Dakota
#> 4199 Ohio
#> 4200 Oklahoma
#> 4201 Oregon
#> 4202 South Dakota
#> 4203 Utah
#> 4204 Washington
#> 4205 Wyoming
#> 4206 Alabama
#> 4207 Arizona
#> 4208 Arkansas
#> 4209 California
#> 4210 Colorado
#> 4211 Connecticut
#> 4212 Delaware
#> 4213 Florida
#> 4214 Georgia
#> 4215 Idaho
#> 4216 Illinois
#> 4217 Indiana
#> 4218 Iowa
#> 4219 Kansas
#> 4220 Kentucky
#> 4221 Louisiana
#> 4222 Maine
#> 4223 Maryland
#> 4224 Massachusetts
#> 4225 Michigan
#> 4226 Minnesota
#> 4227 Mississippi
#> 4228 Missouri
#> 4229 Montana
#> 4230 Nebraska
#> 4231 Nevada
#> 4232 New Hampshire
#> 4233 New Jersey
#> 4234 New Mexico
#> 4235 New York
#> 4236 North Carolina
#> 4237 North Dakota
#> 4238 Ohio
#> 4239 Oklahoma
#> 4240 Oregon
#> 4241 Pennsylvania
#> 4242 Rhode Island
#> 4243 South Carolina
#> 4244 South Dakota
#> 4245 Tennessee
#> 4246 Texas
#> 4247 Utah
#> 4248 Vermont
#> 4249 Virginia
#> 4250 Washington
#> 4251 West Virginia
#> 4252 Wisconsin
#> 4253 Wyoming
#> 4254 Alaska
#> 4255 Arizona
#> 4256 Arkansas
#> 4257 Colorado
#> 4258 Delaware
#> 4259 Florida
#> 4260 Hawaii
#> 4261 Indiana
#> 4262 Iowa
#> 4263 Maryland
#> 4264 Minnesota
#> 4265 Nevada
#> 4266 New Mexico
#> 4267 North Dakota
#> 4268 Oregon
#> 4269 Texas
#> 4270 Virginia
#> 4271 Alabama
#> 4272 Arkansas
#> 4273 Hawaii
#> 4274 Maryland
#> 4275 Mississippi
#> 4276 New Mexico
#> 4277 Oregon
#> 4278 South Dakota
#> 4279 Vermont
#> 4280 Connecticut
#> 4281 Wisconsin
#> 4282 Colorado
#> 4283 Connecticut
#> 4284 Iowa
#> 4285 Kentucky
#> 4286 North Dakota
#> 4287 South Carolina
#> 4288 Texas
#> 4289 Vermont
#> 4290 Alaska
#> 4291 Arkansas
#> 4292 Colorado
#> 4293 Connecticut
#> 4294 Florida
#> 4295 Hawaii
#> 4296 Kentucky
#> 4297 Michigan
#> 4298 Minnesota
#> 4299 Montana
#> 4300 New York
#> 4301 North Carolina
#> 4302 Oregon
#> 4303 Utah
#> 4304 Virginia
#> 4305 Wyoming
#> 4306 Alabama
#> 4307 Alaska
#> 4308 Arizona
#> 4309 Arkansas
#> 4310 California
#> 4311 Colorado
#> 4312 Hawaii
#> 4313 Idaho
#> 4314 Kansas
#> 4315 Kentucky
#> 4316 Maine
#> 4317 Michigan
#> 4318 Minnesota
#> 4319 Missouri
#> 4320 Montana
#> 4321 New Mexico
#> 4322 North Dakota
#> 4323 Oregon
#> 4324 Pennsylvania
#> 4325 South Dakota
#> 4326 Texas
#> 4327 Utah
#> 4328 Washington
#> 4329 Alaska
#> 4330 Arizona
#> 4331 Arkansas
#> 4332 Colorado
#> 4333 Connecticut
#> 4334 Delaware
#> 4335 Florida
#> 4336 Georgia
#> 4337 Illinois
#> 4338 Indiana
#> 4339 Iowa
#> 4340 Kansas
#> 4341 Louisiana
#> 4342 Maryland
#> 4343 Massachusetts
#> 4344 Michigan
#> 4345 Minnesota
#> 4346 Mississippi
#> 4347 Missouri
#> 4348 Montana
#> 4349 Nevada
#> 4350 New Jersey
#> 4351 North Carolina
#> 4352 Ohio
#> 4353 Oklahoma
#> 4354 Oregon
#> 4355 South Carolina
#> 4356 South Dakota
#> 4357 Texas
#> 4358 Utah
#> 4359 Washington
#> 4360 West Virginia
#> 4361 Arizona
#> 4362 Arkansas
#> 4363 California
#> 4364 Colorado
#> 4365 Connecticut
#> 4366 Delaware
#> 4367 Florida
#> 4368 Georgia
#> 4369 Hawaii
#> 4370 Idaho
#> 4371 Illinois
#> 4372 Indiana
#> 4373 Iowa
#> 4374 Kansas
#> 4375 Kentucky
#> 4376 Louisiana
#> 4377 Maine
#> 4378 Maryland
#> 4379 Michigan
#> 4380 Minnesota
#> 4381 Missouri
#> 4382 Montana
#> 4383 Nebraska
#> 4384 Nevada
#> 4385 New Hampshire
#> 4386 New Jersey
#> 4387 New Mexico
#> 4388 New York
#> 4389 North Carolina
#> 4390 North Dakota
#> 4391 Ohio
#> 4392 Oklahoma
#> 4393 Oregon
#> 4394 Pennsylvania
#> 4395 Rhode Island
#> 4396 Tennessee
#> 4397 Texas
#> 4398 Utah
#> 4399 Vermont
#> 4400 Virginia
#> 4401 Washington
#> 4402 West Virginia
#> 4403 Wisconsin
#> 4404 Wyoming
#> 4405 Connecticut
#> 4406 Washington
#> 4407 Alabama
#> 4408 Alaska
#> 4409 Arizona
#> 4410 Arkansas
#> 4411 California
#> 4412 Colorado
#> 4413 Connecticut
#> 4414 Delaware
#> 4415 Florida
#> 4416 Hawaii
#> 4417 Idaho
#> 4418 Illinois
#> 4419 Indiana
#> 4420 Iowa
#> 4421 Kansas
#> 4422 Kentucky
#> 4423 Maryland
#> 4424 Massachusetts
#> 4425 Minnesota
#> 4426 Mississippi
#> 4427 Missouri
#> 4428 Montana
#> 4429 Nebraska
#> 4430 Nevada
#> 4431 New Hampshire
#> 4432 New Jersey
#> 4433 New Mexico
#> 4434 New York
#> 4435 North Carolina
#> 4436 North Dakota
#> 4437 Ohio
#> 4438 Oklahoma
#> 4439 Oregon
#> 4440 Pennsylvania
#> 4441 Rhode Island
#> 4442 South Carolina
#> 4443 South Dakota
#> 4444 Texas
#> 4445 Utah
#> 4446 Vermont
#> 4447 Virginia
#> 4448 Washington
#> 4449 West Virginia
#> 4450 Wyoming
#> 4451 Alabama
#> 4452 Alaska
#> 4453 Arizona
#> 4454 Arkansas
#> 4455 California
#> 4456 Colorado
#> 4457 Connecticut
#> 4458 Delaware
#> 4459 Florida
#> 4460 Georgia
#> 4461 Idaho
#> 4462 Illinois
#> 4463 Indiana
#> 4464 Iowa
#> 4465 Kentucky
#> 4466 Louisiana
#> 4467 Maine
#> 4468 Maryland
#> 4469 Minnesota
#> 4470 Missouri
#> 4471 Montana
#> 4472 Nebraska
#> 4473 Nevada
#> 4474 New Jersey
#> 4475 New Mexico
#> 4476 New York
#> 4477 North Carolina
#> 4478 North Dakota
#> 4479 Ohio
#> 4480 Oklahoma
#> 4481 Oregon
#> 4482 Pennsylvania
#> 4483 Rhode Island
#> 4484 South Dakota
#> 4485 Tennessee
#> 4486 Texas
#> 4487 Utah
#> 4488 Virginia
#> 4489 Washington
#> 4490 West Virginia
#> 4491 Wyoming
#> 4492 Arizona
#> 4493 Arkansas
#> 4494 California
#> 4495 Georgia
#> 4496 Idaho
#> 4497 Maine
#> 4498 Maryland
#> 4499 Massachusetts
#> 4500 Minnesota
#> 4501 Nebraska
#> 4502 New Hampshire
#> 4503 New Jersey
#> 4504 New Mexico
#> 4505 North Carolina
#> 4506 Ohio
#> 4507 Oregon
#> 4508 Rhode Island
#> 4509 Tennessee
#> 4510 Texas
#> 4511 Utah
#> 4512 Vermont
#> 4513 Virginia
#> 4514 Washington
#> 4515 West Virginia
#> 4516 Wisconsin
#> 4517 Alaska
#> 4518 California
#> 4519 Colorado
#> 4520 Connecticut
#> 4521 Maine
#> 4522 Massachusetts
#> 4523 Minnesota
#> 4524 Mississippi
#> 4525 Nebraska
#> 4526 Nevada
#> 4527 New York
#> 4528 North Carolina
#> 4529 Ohio
#> 4530 Oregon
#> 4531 Rhode Island
#> 4532 South Dakota
#> 4533 Vermont
#> 4534 Alaska
#> 4535 Arizona
#> 4536 California
#> 4537 Colorado
#> 4538 Connecticut
#> 4539 Delaware
#> 4540 Hawaii
#> 4541 Maine
#> 4542 Massachusetts
#> 4543 Michigan
#> 4544 Montana
#> 4545 Nevada
#> 4546 New Hampshire
#> 4547 New Jersey
#> 4548 New Mexico
#> 4549 Oregon
#> 4550 Rhode Island
#> 4551 Vermont
#> 4552 Washington
#> 4553 Arizona
#> 4554 California
#> 4555 Colorado
#> 4556 Connecticut
#> 4557 Delaware
#> 4558 Florida
#> 4559 Hawaii
#> 4560 Idaho
#> 4561 Illinois
#> 4562 Indiana
#> 4563 Iowa
#> 4564 Kansas
#> 4565 Louisiana
#> 4566 Maine
#> 4567 Maryland
#> 4568 Massachusetts
#> 4569 Michigan
#> 4570 Minnesota
#> 4571 Montana
#> 4572 Nebraska
#> 4573 Nevada
#> 4574 New Hampshire
#> 4575 New Jersey
#> 4576 New Mexico
#> 4577 New York
#> 4578 North Carolina
#> 4579 North Dakota
#> 4580 Ohio
#> 4581 Oregon
#> 4582 Rhode Island
#> 4583 South Dakota
#> 4584 Utah
#> 4585 Vermont
#> 4586 Washington
#> 4587 Wisconsin
#> 4588 Arizona
#> 4589 Delaware
#> 4590 Florida
#> 4591 Hawaii
#> 4592 Illinois
#> 4593 Indiana
#> 4594 Iowa
#> 4595 Kansas
#> 4596 Louisiana
#> 4597 Maine
#> 4598 Maryland
#> 4599 Massachusetts
#> 4600 Michigan
#> 4601 Minnesota
#> 4602 Montana
#> 4603 Nebraska
#> 4604 Nevada
#> 4605 New Jersey
#> 4606 New Mexico
#> 4607 New York
#> 4608 North Dakota
#> 4609 Ohio
#> 4610 Oregon
#> 4611 Pennsylvania
#> 4612 Rhode Island
#> 4613 South Dakota
#> 4614 Utah
#> 4615 Vermont
#> 4616 Washington
#> 4617 Wisconsin
#> 4618 Alabama
#> 4619 Alaska
#> 4620 Arizona
#> 4621 Connecticut
#> 4622 Florida
#> 4623 Georgia
#> 4624 Hawaii
#> 4625 Idaho
#> 4626 Iowa
#> 4627 Louisiana
#> 4628 Maine
#> 4629 Maryland
#> 4630 Minnesota
#> 4631 Mississippi
#> 4632 Montana
#> 4633 Nebraska
#> 4634 North Carolina
#> 4635 Oklahoma
#> 4636 Oregon
#> 4637 Rhode Island
#> 4638 South Carolina
#> 4639 Tennessee
#> 4640 Utah
#> 4641 Vermont
#> 4642 Virginia
#> 4643 Washington
#> 4644 Arizona
#> 4645 Arkansas
#> 4646 California
#> 4647 Colorado
#> 4648 Connecticut
#> 4649 Florida
#> 4650 Georgia
#> 4651 Idaho
#> 4652 Indiana
#> 4653 Iowa
#> 4654 Kansas
#> 4655 Kentucky
#> 4656 Maine
#> 4657 Maryland
#> 4658 Massachusetts
#> 4659 Michigan
#> 4660 Minnesota
#> 4661 Mississippi
#> 4662 Montana
#> 4663 Nevada
#> 4664 New Jersey
#> 4665 New Mexico
#> 4666 North Carolina
#> 4667 North Dakota
#> 4668 Ohio
#> 4669 Oklahoma
#> 4670 Oregon
#> 4671 Pennsylvania
#> 4672 South Carolina
#> 4673 South Dakota
#> 4674 Tennessee
#> 4675 Texas
#> 4676 Utah
#> 4677 Vermont
#> 4678 Virginia
#> 4679 Washington
#> 4680 West Virginia
#> 4681 Wisconsin
#> 4682 Wyoming
#> 4683 Alabama
#> 4684 Alaska
#> 4685 Arizona
#> 4686 Arkansas
#> 4687 California
#> 4688 Colorado
#> 4689 Connecticut
#> 4690 Delaware
#> 4691 Florida
#> 4692 Georgia
#> 4693 Hawaii
#> 4694 Idaho
#> 4695 Illinois
#> 4696 Indiana
#> 4697 Iowa
#> 4698 Kansas
#> 4699 Kentucky
#> 4700 Louisiana
#> 4701 Maine
#> 4702 Maryland
#> 4703 Massachusetts
#> 4704 Michigan
#> 4705 Minnesota
#> 4706 Mississippi
#> 4707 Missouri
#> 4708 Montana
#> 4709 Nebraska
#> 4710 Nevada
#> 4711 New Hampshire
#> 4712 New Jersey
#> 4713 New Mexico
#> 4714 New York
#> 4715 North Carolina
#> 4716 North Dakota
#> 4717 Ohio
#> 4718 Oklahoma
#> 4719 Oregon
#> 4720 Pennsylvania
#> 4721 Rhode Island
#> 4722 South Carolina
#> 4723 South Dakota
#> 4724 Tennessee
#> 4725 Texas
#> 4726 Utah
#> 4727 Vermont
#> 4728 Virginia
#> 4729 Washington
#> 4730 West Virginia
#> 4731 Wisconsin
#> 4732 Wyoming
#> 4733 Alabama
#> 4734 Arizona
#> 4735 Arkansas
#> 4736 California
#> 4737 Florida
#> 4738 Georgia
#> 4739 Hawaii
#> 4740 Idaho
#> 4741 Illinois
#> 4742 Indiana
#> 4743 Kansas
#> 4744 Kentucky
#> 4745 Maine
#> 4746 Maryland
#> 4747 Nebraska
#> 4748 New Hampshire
#> 4749 New Mexico
#> 4750 North Carolina
#> 4751 Oregon
#> 4752 Rhode Island
#> 4753 Texas
#> 4754 Utah
#> 4755 Vermont
#> 4756 Virginia
#> 4757 Washington
#> 4758 Arkansas
#> 4759 California
#> 4760 Delaware
#> 4761 Hawaii
#> 4762 Indiana
#> 4763 Kansas
#> 4764 Maine
#> 4765 Massachusetts
#> 4766 Mississippi
#> 4767 Montana
#> 4768 Nebraska
#> 4769 New Mexico
#> 4770 North Dakota
#> 4771 Oklahoma
#> 4772 Tennessee
#> 4773 Texas
#> 4774 Wisconsin
#> 4775 Colorado
#> 4776 Louisiana
#> 4777 Minnesota
#> 4778 North Dakota
#> 4779 Ohio
#> 4780 Oklahoma
#> 4781 Alabama
#> 4782 Arizona
#> 4783 Arkansas
#> 4784 California
#> 4785 Connecticut
#> 4786 Florida
#> 4787 Georgia
#> 4788 Idaho
#> 4789 Illinois
#> 4790 Indiana
#> 4791 Kansas
#> 4792 Kentucky
#> 4793 Louisiana
#> 4794 Maine
#> 4795 Maryland
#> 4796 Mississippi
#> 4797 Missouri
#> 4798 New Hampshire
#> 4799 New Mexico
#> 4800 New York
#> 4801 North Carolina
#> 4802 Oklahoma
#> 4803 Oregon
#> 4804 South Dakota
#> 4805 Tennessee
#> 4806 Texas
#> 4807 Utah
#> 4808 Vermont
#> 4809 Virginia
#> 4810 Washington
#> 4811 Wyoming
#> 4812 Alaska
#> 4813 Arizona
#> 4814 Arkansas
#> 4815 California
#> 4816 Colorado
#> 4817 Hawaii
#> 4818 Idaho
#> 4819 Iowa
#> 4820 Kansas
#> 4821 Nevada
#> 4822 New Mexico
#> 4823 North Carolina
#> 4824 Tennessee
#> 4825 Texas
#> 4826 Vermont
#> 4827 Colorado
#> 4828 Connecticut
#> 4829 Delaware
#> 4830 Illinois
#> 4831 Indiana
#> 4832 Iowa
#> 4833 Kansas
#> 4834 Louisiana
#> 4835 Maine
#> 4836 Maryland
#> 4837 Massachusetts
#> 4838 Michigan
#> 4839 Minnesota
#> 4840 Nebraska
#> 4841 New Jersey
#> 4842 New Mexico
#> 4843 New York
#> 4844 North Carolina
#> 4845 Oklahoma
#> 4846 Oregon
#> 4847 Rhode Island
#> 4848 Vermont
#> 4849 Virginia
#> 4850 Wisconsin
#> 4851 Alaska
#> 4852 Arizona
#> 4853 California
#> 4854 Colorado
#> 4855 Delaware
#> 4856 Florida
#> 4857 Hawaii
#> 4858 Idaho
#> 4859 Indiana
#> 4860 Iowa
#> 4861 Kentucky
#> 4862 Louisiana
#> 4863 Minnesota
#> 4864 Missouri
#> 4865 Nevada
#> 4866 New Jersey
#> 4867 New York
#> 4868 North Carolina
#> 4869 Ohio
#> 4870 Oklahoma
#> 4871 Oregon
#> 4872 Tennessee
#> 4873 Virginia
#> 4874 West Virginia
#> 4875 Alabama
#> 4876 California
#> 4877 Connecticut
#> 4878 Delaware
#> 4879 Georgia
#> 4880 Kansas
#> 4881 Kentucky
#> 4882 Louisiana
#> 4883 Massachusetts
#> 4884 Missouri
#> 4885 North Carolina
#> 4886 North Dakota
#> 4887 South Carolina
#> 4888 South Dakota
#> 4889 Alaska
#> 4890 California
#> 4891 Connecticut
#> 4892 Delaware
#> 4893 Hawaii
#> 4894 Illinois
#> 4895 Iowa
#> 4896 Maine
#> 4897 Maryland
#> 4898 Massachusetts
#> 4899 Michigan
#> 4900 Minnesota
#> 4901 Montana
#> 4902 Nebraska
#> 4903 Nevada
#> 4904 New Hampshire
#> 4905 New Jersey
#> 4906 New Mexico
#> 4907 New York
#> 4908 North Dakota
#> 4909 Ohio
#> 4910 Oregon
#> 4911 Pennsylvania
#> 4912 Rhode Island
#> 4913 Vermont
#> 4914 Virginia
#> 4915 Washington
#> 4916 West Virginia
#> 4917 Wisconsin
#> 4918 Alabama
#> 4919 Arizona
#> 4920 Arkansas
#> 4921 California
#> 4922 Connecticut
#> 4923 Delaware
#> 4924 Florida
#> 4925 Georgia
#> 4926 Hawaii
#> 4927 Idaho
#> 4928 Illinois
#> 4929 Indiana
#> 4930 Iowa
#> 4931 Kansas
#> 4932 Kentucky
#> 4933 Louisiana
#> 4934 Maryland
#> 4935 Massachusetts
#> 4936 Michigan
#> 4937 Minnesota
#> 4938 Mississippi
#> 4939 Nevada
#> 4940 New Hampshire
#> 4941 New Jersey
#> 4942 New Mexico
#> 4943 New York
#> 4944 North Carolina
#> 4945 Ohio
#> 4946 Oklahoma
#> 4947 Oregon
#> 4948 Pennsylvania
#> 4949 Rhode Island
#> 4950 South Carolina
#> 4951 Tennessee
#> 4952 Texas
#> 4953 Utah
#> 4954 Vermont
#> 4955 Virginia
#> 4956 Washington
#> 4957 West Virginia
#> 4958 Wyoming
#> 4959 Alabama
#> 4960 Alaska
#> 4961 Arizona
#> 4962 Arkansas
#> 4963 California
#> 4964 Colorado
#> 4965 Connecticut
#> 4966 Florida
#> 4967 Georgia
#> 4968 Hawaii
#> 4969 Idaho
#> 4970 Illinois
#> 4971 Indiana
#> 4972 Iowa
#> 4973 Kansas
#> 4974 Kentucky
#> 4975 Louisiana
#> 4976 Maine
#> 4977 Maryland
#> 4978 Massachusetts
#> 4979 Michigan
#> 4980 Mississippi
#> 4981 Missouri
#> 4982 Montana
#> 4983 Nebraska
#> 4984 New Hampshire
#> 4985 New Jersey
#> 4986 New Mexico
#> 4987 New York
#> 4988 North Carolina
#> 4989 Ohio
#> 4990 Oklahoma
#> 4991 Oregon
#> 4992 Pennsylvania
#> 4993 Rhode Island
#> 4994 South Carolina
#> 4995 Tennessee
#> 4996 Texas
#> 4997 Utah
#> 4998 Vermont
#> 4999 Virginia
#> 5000 Washington
#> 5001 West Virginia
#> 5002 Wisconsin
#> 5003 Wyoming
#> 5004 Alabama
#> 5005 Arkansas
#> 5006 California
#> 5007 Colorado
#> 5008 Connecticut
#> 5009 Delaware
#> 5010 Florida
#> 5011 Georgia
#> 5012 Idaho
#> 5013 Illinois
#> 5014 Kentucky
#> 5015 Maine
#> 5016 Maryland
#> 5017 Massachusetts
#> 5018 Nebraska
#> 5019 New Hampshire
#> 5020 New Mexico
#> 5021 New York
#> 5022 North Carolina
#> 5023 Ohio
#> 5024 Oklahoma
#> 5025 Oregon
#> 5026 Pennsylvania
#> 5027 Rhode Island
#> 5028 South Carolina
#> 5029 South Dakota
#> 5030 Tennessee
#> 5031 Texas
#> 5032 Vermont
#> 5033 Virginia
#> 5034 Washington
#> 5035 West Virginia
#> 5036 Wyoming
#> 5037 Idaho
#> 5038 Maine
#> 5039 Minnesota
#> 5040 New Hampshire
#> 5041 Oregon
#> 5042 Wisconsin
#> 5043 Wyoming
#> 5044 Arizona
#> 5045 Arkansas
#> 5046 California
#> 5047 Connecticut
#> 5048 Delaware
#> 5049 Illinois
#> 5050 Maine
#> 5051 Maryland
#> 5052 Massachusetts
#> 5053 Minnesota
#> 5054 Mississippi
#> 5055 Montana
#> 5056 Nebraska
#> 5057 Nevada
#> 5058 New Hampshire
#> 5059 New Jersey
#> 5060 New Mexico
#> 5061 Ohio
#> 5062 Oklahoma
#> 5063 Oregon
#> 5064 Pennsylvania
#> 5065 Rhode Island
#> 5066 Texas
#> 5067 Virginia
#> 5068 Arizona
#> 5069 California
#> 5070 Colorado
#> 5071 Connecticut
#> 5072 Delaware
#> 5073 Hawaii
#> 5074 Idaho
#> 5075 Illinois
#> 5076 Minnesota
#> 5077 Nevada
#> 5078 North Dakota
#> 5079 Oregon
#> 5080 Pennsylvania
#> 5081 Indiana
#> 5082 Vermont
#> 5083 Alabama
#> 5084 Alaska
#> 5085 Arizona
#> 5086 Arkansas
#> 5087 California
#> 5088 Colorado
#> 5089 Connecticut
#> 5090 Delaware
#> 5091 Florida
#> 5092 Georgia
#> 5093 Hawaii
#> 5094 Idaho
#> 5095 Indiana
#> 5096 Iowa
#> 5097 Kansas
#> 5098 Kentucky
#> 5099 Louisiana
#> 5100 Maine
#> 5101 Maryland
#> 5102 Massachusetts
#> 5103 Michigan
#> 5104 Minnesota
#> 5105 Mississippi
#> 5106 Missouri
#> 5107 Montana
#> 5108 Nebraska
#> 5109 Nevada
#> 5110 New Hampshire
#> 5111 New Jersey
#> 5112 New Mexico
#> 5113 North Carolina
#> 5114 North Dakota
#> 5115 Ohio
#> 5116 Oklahoma
#> 5117 Oregon
#> 5118 Pennsylvania
#> 5119 Rhode Island
#> 5120 South Carolina
#> 5121 South Dakota
#> 5122 Tennessee
#> 5123 Texas
#> 5124 Utah
#> 5125 Vermont
#> 5126 Virginia
#> 5127 Wisconsin
#> 5128 Wyoming
#> 5129 Alaska
#> 5130 Arkansas
#> 5131 California
#> 5132 Colorado
#> 5133 Connecticut
#> 5134 Hawaii
#> 5135 Illinois
#> 5136 Maine
#> 5137 Maryland
#> 5138 Massachusetts
#> 5139 Minnesota
#> 5140 New Hampshire
#> 5141 New Jersey
#> 5142 New Mexico
#> 5143 New York
#> 5144 Oklahoma
#> 5145 Oregon
#> 5146 Pennsylvania
#> 5147 South Carolina
#> 5148 Utah
#> 5149 Vermont
#> 5150 Washington
#> 5151 Wisconsin
#> 5152 Alabama
#> 5153 Alaska
#> 5154 Arizona
#> 5155 Arkansas
#> 5156 California
#> 5157 Colorado
#> 5158 Connecticut
#> 5159 Delaware
#> 5160 Florida
#> 5161 Georgia
#> 5162 Hawaii
#> 5163 Idaho
#> 5164 Illinois
#> 5165 Indiana
#> 5166 Iowa
#> 5167 Kansas
#> 5168 Kentucky
#> 5169 Maine
#> 5170 Maryland
#> 5171 Massachusetts
#> 5172 Michigan
#> 5173 Minnesota
#> 5174 Mississippi
#> 5175 Missouri
#> 5176 Montana
#> 5177 Nebraska
#> 5178 Nevada
#> 5179 New Hampshire
#> 5180 New Jersey
#> 5181 New Mexico
#> 5182 New York
#> 5183 North Carolina
#> 5184 Ohio
#> 5185 Oklahoma
#> 5186 Oregon
#> 5187 Pennsylvania
#> 5188 Rhode Island
#> 5189 South Carolina
#> 5190 South Dakota
#> 5191 Tennessee
#> 5192 Texas
#> 5193 Utah
#> 5194 Vermont
#> 5195 Virginia
#> 5196 Washington
#> 5197 West Virginia
#> 5198 Wisconsin
#> 5199 Wyoming
#> 5200 Texas
#> 5201 Arkansas
#> 5202 Colorado
#> 5203 Georgia
#> 5204 Illinois
#> 5205 Indiana
#> 5206 Kentucky
#> 5207 Louisiana
#> 5208 Nevada
#> 5209 New Mexico
#> 5210 North Dakota
#> 5211 Oklahoma
#> 5212 Tennessee
#> 5213 Texas
#> 5214 Utah
#> 5215 Alabama
#> 5216 Arizona
#> 5217 Arkansas
#> 5218 Connecticut
#> 5219 Florida
#> 5220 Georgia
#> 5221 Kansas
#> 5222 Kentucky
#> 5223 Louisiana
#> 5224 Missouri
#> 5225 New York
#> 5226 North Carolina
#> 5227 Ohio
#> 5228 Oklahoma
#> 5229 Pennsylvania
#> 5230 South Carolina
#> 5231 Tennessee
#> 5232 Texas
#> 5233 Washington
#> 5234 Wisconsin
#> 5235 Wyoming
#> 5236 Alabama
#> 5237 Alaska
#> 5238 Arizona
#> 5239 Arkansas
#> 5240 Colorado
#> 5241 Connecticut
#> 5242 Delaware
#> 5243 Florida
#> 5244 Georgia
#> 5245 Hawaii
#> 5246 Idaho
#> 5247 Illinois
#> 5248 Indiana
#> 5249 Iowa
#> 5250 Kansas
#> 5251 Kentucky
#> 5252 Louisiana
#> 5253 Maine
#> 5254 Maryland
#> 5255 Michigan
#> 5256 Minnesota
#> 5257 Mississippi
#> 5258 Missouri
#> 5259 Montana
#> 5260 Nebraska
#> 5261 Nevada
#> 5262 New Hampshire
#> 5263 New Jersey
#> 5264 New Mexico
#> 5265 New York
#> 5266 North Carolina
#> 5267 North Dakota
#> 5268 Ohio
#> 5269 Oklahoma
#> 5270 Oregon
#> 5271 Pennsylvania
#> 5272 Rhode Island
#> 5273 South Carolina
#> 5274 South Dakota
#> 5275 Tennessee
#> 5276 Texas
#> 5277 Utah
#> 5278 Virginia
#> 5279 Washington
#> 5280 Wisconsin
#> 5281 Wyoming
#> 5282 Alabama
#> 5283 Arizona
#> 5284 Arkansas
#> 5285 California
#> 5286 Colorado
#> 5287 Connecticut
#> 5288 Delaware
#> 5289 Florida
#> 5290 Georgia
#> 5291 Idaho
#> 5292 Illinois
#> 5293 Indiana
#> 5294 Iowa
#> 5295 Kansas
#> 5296 Kentucky
#> 5297 Louisiana
#> 5298 Maine
#> 5299 Maryland
#> 5300 Massachusetts
#> 5301 Michigan
#> 5302 Minnesota
#> 5303 Mississippi
#> 5304 Missouri
#> 5305 Montana
#> 5306 Nebraska
#> 5307 Nevada
#> 5308 New Hampshire
#> 5309 New Jersey
#> 5310 New Mexico
#> 5311 New York
#> 5312 North Carolina
#> 5313 North Dakota
#> 5314 Ohio
#> 5315 Oklahoma
#> 5316 Oregon
#> 5317 Pennsylvania
#> 5318 Rhode Island
#> 5319 South Carolina
#> 5320 South Dakota
#> 5321 Tennessee
#> 5322 Texas
#> 5323 Utah
#> 5324 Vermont
#> 5325 Virginia
#> 5326 Washington
#> 5327 West Virginia
#> 5328 Wisconsin
#> 5329 Wyoming
#> 5330 Alabama
#> 5331 Alaska
#> 5332 Arizona
#> 5333 Arkansas
#> 5334 California
#> 5335 Colorado
#> 5336 Florida
#> 5337 Georgia
#> 5338 Hawaii
#> 5339 Idaho
#> 5340 Illinois
#> 5341 Indiana
#> 5342 Iowa
#> 5343 Kansas
#> 5344 Kentucky
#> 5345 Louisiana
#> 5346 Massachusetts
#> 5347 Mississippi
#> 5348 Missouri
#> 5349 Montana
#> 5350 Nebraska
#> 5351 New Hampshire
#> 5352 North Carolina
#> 5353 North Dakota
#> 5354 South Carolina
#> 5355 South Dakota
#> 5356 Tennessee
#> 5357 Utah
#> 5358 Virginia
#> 5359 Wyoming
#> 5360 Alabama
#> 5361 Arizona
#> 5362 Arkansas
#> 5363 California
#> 5364 Colorado
#> 5365 Connecticut
#> 5366 Delaware
#> 5367 Florida
#> 5368 Georgia
#> 5369 Hawaii
#> 5370 Illinois
#> 5371 Indiana
#> 5372 Kansas
#> 5373 Kentucky
#> 5374 Louisiana
#> 5375 Maine
#> 5376 Maryland
#> 5377 Michigan
#> 5378 Minnesota
#> 5379 Mississippi
#> 5380 Missouri
#> 5381 Nebraska
#> 5382 Nevada
#> 5383 New Jersey
#> 5384 New York
#> 5385 Ohio
#> 5386 Oklahoma
#> 5387 Oregon
#> 5388 Pennsylvania
#> 5389 Rhode Island
#> 5390 South Carolina
#> 5391 Tennessee
#> 5392 Texas
#> 5393 Utah
#> 5394 Vermont
#> 5395 Virginia
#> 5396 West Virginia
#> 5397 Wisconsin
#> 5398 Alaska
#> 5399 Arizona
#> 5400 Connecticut
#> 5401 Idaho
#> 5402 Kansas
#> 5403 Pennsylvania
#> 5404 Connecticut
#> 5405 Florida
#> 5406 Illinois
#> 5407 Indiana
#> 5408 Kentucky
#> 5409 Louisiana
#> 5410 Massachusetts
#> 5411 New Jersey
#> 5412 North Dakota
#> 5413 Ohio
#> 5414 Pennsylvania
#> 5415 Tennessee
#> 5416 Utah
#> 5417 Washington
#> 5418 Alaska
#> 5419 Arkansas
#> 5420 California
#> 5421 Colorado
#> 5422 Delaware
#> 5423 Florida
#> 5424 Hawaii
#> 5425 Idaho
#> 5426 Illinois
#> 5427 Indiana
#> 5428 Kentucky
#> 5429 Louisiana
#> 5430 Maryland
#> 5431 Massachusetts
#> 5432 Michigan
#> 5433 Minnesota
#> 5434 Mississippi
#> 5435 Missouri
#> 5436 New Jersey
#> 5437 New York
#> 5438 Oregon
#> 5439 Pennsylvania
#> 5440 Rhode Island
#> 5441 South Carolina
#> 5442 Tennessee
#> 5443 Texas
#> 5444 Virginia
#> 5445 Washington
#> 5446 West Virginia
#> 5447 California
#> 5448 Connecticut
#> 5449 Delaware
#> 5450 Hawaii
#> 5451 Iowa
#> 5452 Maine
#> 5453 Massachusetts
#> 5454 Michigan
#> 5455 New York
#> 5456 Oregon
#> 5457 Vermont
#> 5458 Arizona
#> 5459 California
#> 5460 Connecticut
#> 5461 Florida
#> 5462 Maine
#> 5463 Maryland
#> 5464 Massachusetts
#> 5465 New Jersey
#> 5466 New Mexico
#> 5467 New York
#> 5468 Oregon
#> 5469 Pennsylvania
#> 5470 Rhode Island
#> 5471 Vermont
#> 5472 Washington
#> 5473 Arkansas
#> 5474 California
#> 5475 Colorado
#> 5476 Connecticut
#> 5477 Hawaii
#> 5478 Illinois
#> 5479 Indiana
#> 5480 Maine
#> 5481 Maryland
#> 5482 Massachusetts
#> 5483 Michigan
#> 5484 Minnesota
#> 5485 Missouri
#> 5486 New Hampshire
#> 5487 New Jersey
#> 5488 New York
#> 5489 North Carolina
#> 5490 Oklahoma
#> 5491 Oregon
#> 5492 Pennsylvania
#> 5493 Rhode Island
#> 5494 South Carolina
#> 5495 Texas
#> 5496 Utah
#> 5497 Vermont
#> 5498 Virginia
#> 5499 Washington
#> 5500 West Virginia
#> 5501 Wisconsin
#> 5502 California
#> 5503 Connecticut
#> 5504 Delaware
#> 5505 Maine
#> 5506 Maryland
#> 5507 Massachusetts
#> 5508 New Hampshire
#> 5509 New Jersey
#> 5510 New York
#> 5511 Rhode Island
#> 5512 Vermont
#> 5513 California
#> 5514 Connecticut
#> 5515 Delaware
#> 5516 Hawaii
#> 5517 Illinois
#> 5518 Maine
#> 5519 Massachusetts
#> 5520 Michigan
#> 5521 Minnesota
#> 5522 Montana
#> 5523 New Hampshire
#> 5524 New Jersey
#> 5525 New Mexico
#> 5526 New York
#> 5527 Ohio
#> 5528 Oregon
#> 5529 Pennsylvania
#> 5530 Rhode Island
#> 5531 Vermont
#> 5532 Wisconsin
#> 5533 California
#> 5534 Connecticut
#> 5535 Georgia
#> 5536 Hawaii
#> 5537 Indiana
#> 5538 Maryland
#> 5539 Massachusetts
#> 5540 Minnesota
#> 5541 Montana
#> 5542 New York
#> 5543 North Carolina
#> 5544 South Dakota
#> 5545 Virginia
#> 5546 Washington
#> 5547 Wisconsin
#> 5548 Alabama
#> 5549 Delaware
#> 5550 Georgia
#> 5551 Hawaii
#> 5552 Idaho
#> 5553 Illinois
#> 5554 Iowa
#> 5555 Kentucky
#> 5556 Maine
#> 5557 Maryland
#> 5558 Minnesota
#> 5559 Mississippi
#> 5560 Missouri
#> 5561 Nebraska
#> 5562 Nevada
#> 5563 Ohio
#> 5564 Oklahoma
#> 5565 Pennsylvania
#> 5566 South Dakota
#> 5567 Utah
#> 5568 Virginia
#> 5569 Washington
#> 5570 Alaska
#> 5571 Colorado
#> 5572 Connecticut
#> 5573 Hawaii
#> 5574 Illinois
#> 5575 Louisiana
#> 5576 Maryland
#> 5577 Massachusetts
#> 5578 Montana
#> 5579 New Hampshire
#> 5580 New Mexico
#> 5581 Pennsylvania
#> 5582 Texas
#> 5583 Vermont
#> 5584 Washington
#> 5585 West Virginia
#> 5586 Wyoming
#> 5587 Arizona
#> 5588 Arkansas
#> 5589 California
#> 5590 Colorado
#> 5591 Connecticut
#> 5592 Georgia
#> 5593 Illinois
#> 5594 Kentucky
#> 5595 Maine
#> 5596 Maryland
#> 5597 Massachusetts
#> 5598 Michigan
#> 5599 Missouri
#> 5600 Montana
#> 5601 New Hampshire
#> 5602 New Jersey
#> 5603 New York
#> 5604 North Dakota
#> 5605 Ohio
#> 5606 Oklahoma
#> 5607 Oregon
#> 5608 Pennsylvania
#> 5609 Rhode Island
#> 5610 South Dakota
#> 5611 Washington
#> 5612 West Virginia
#> 5613 Wyoming
#> 5614 Alabama
#> 5615 Arkansas
#> 5616 Colorado
#> 5617 Hawaii
#> 5618 Idaho
#> 5619 Massachusetts
#> 5620 Mississippi
#> 5621 New Mexico
#> 5622 North Dakota
#> 5623 Washington
#> 5624 Connecticut
#> 5625 Delaware
#> 5626 Hawaii
#> 5627 Illinois
#> 5628 Indiana
#> 5629 Iowa
#> 5630 Kentucky
#> 5631 Maine
#> 5632 Maryland
#> 5633 Massachusetts
#> 5634 Minnesota
#> 5635 Nebraska
#> 5636 New Jersey
#> 5637 New York
#> 5638 North Carolina
#> 5639 Ohio
#> 5640 Oregon
#> 5641 Pennsylvania
#> 5642 Rhode Island
#> 5643 Tennessee
#> 5644 Vermont
#> 5645 Washington
#> 5646 California
#> 5647 Connecticut
#> 5648 Hawaii
#> 5649 Illinois
#> 5650 Indiana
#> 5651 Maine
#> 5652 Maryland
#> 5653 Michigan
#> 5654 Minnesota
#> 5655 Missouri
#> 5656 New Jersey
#> 5657 New York
#> 5658 North Carolina
#> 5659 Oklahoma
#> 5660 Oregon
#> 5661 Pennsylvania
#> 5662 Rhode Island
#> 5663 South Carolina
#> 5664 Texas
#> 5665 Utah
#> 5666 Vermont
#> 5667 Virginia
#> 5668 Washington
#> 5669 West Virginia
#> 5670 Wisconsin
#> 5671 Alaska
#> 5672 Alabama
#> 5673 Arizona
#> 5674 Arkansas
#> 5675 California
#> 5676 Colorado
#> 5677 Connecticut
#> 5678 Delaware
#> 5679 Florida
#> 5680 Georgia
#> 5681 Idaho
#> 5682 Illinois
#> 5683 Indiana
#> 5684 Iowa
#> 5685 Kansas
#> 5686 Kentucky
#> 5687 Louisiana
#> 5688 Maine
#> 5689 Maryland
#> 5690 Massachusetts
#> 5691 Michigan
#> 5692 Minnesota
#> 5693 Mississippi
#> 5694 Missouri
#> 5695 Montana
#> 5696 Nebraska
#> 5697 Nevada
#> 5698 New Hampshire
#> 5699 New Jersey
#> 5700 New Mexico
#> 5701 New York
#> 5702 North Carolina
#> 5703 North Dakota
#> 5704 Ohio
#> 5705 Oklahoma
#> 5706 Oregon
#> 5707 Pennsylvania
#> 5708 Rhode Island
#> 5709 South Carolina
#> 5710 South Dakota
#> 5711 Tennessee
#> 5712 Texas
#> 5713 Utah
#> 5714 Vermont
#> 5715 Virginia
#> 5716 Washington
#> 5717 West Virginia
#> 5718 Wisconsin
#> 5719 Wyoming
#> 5720 North Dakota
#> 5721 Arkansas
#> 5722 California
#> 5723 Colorado
#> 5724 Delaware
#> 5725 Florida
#> 5726 Idaho
#> 5727 Illinois
#> 5728 Kansas
#> 5729 Maryland
#> 5730 Montana
#> 5731 Nevada
#> 5732 New Hampshire
#> 5733 New Mexico
#> 5734 North Dakota
#> 5735 Oklahoma
#> 5736 Pennsylvania
#> 5737 Rhode Island
#> 5738 Texas
#> 5739 Washington
#> 5740 Wyoming
#> 5741 Alaska
#> 5742 California
#> 5743 Colorado
#> 5744 Connecticut
#> 5745 Delaware
#> 5746 Hawaii
#> 5747 Idaho
#> 5748 Illinois
#> 5749 Indiana
#> 5750 Iowa
#> 5751 Kansas
#> 5752 Massachusetts
#> 5753 Michigan
#> 5754 Minnesota
#> 5755 Missouri
#> 5756 Nebraska
#> 5757 New Jersey
#> 5758 New Mexico
#> 5759 New York
#> 5760 Ohio
#> 5761 Oregon
#> 5762 Pennsylvania
#> 5763 Rhode Island
#> 5764 Vermont
#> 5765 Washington
#> 5766 Wisconsin
#> 5767 Arizona
#> 5768 Arkansas
#> 5769 California
#> 5770 Colorado
#> 5771 Connecticut
#> 5772 Delaware
#> 5773 Florida
#> 5774 Georgia
#> 5775 Idaho
#> 5776 Illinois
#> 5777 Indiana
#> 5778 Iowa
#> 5779 Kansas
#> 5780 Kentucky
#> 5781 Louisiana
#> 5782 Maine
#> 5783 Maryland
#> 5784 Massachusetts
#> 5785 Michigan
#> 5786 Minnesota
#> 5787 Mississippi
#> 5788 Montana
#> 5789 Nebraska
#> 5790 Nevada
#> 5791 New Hampshire
#> 5792 New Mexico
#> 5793 New York
#> 5794 North Carolina
#> 5795 North Dakota
#> 5796 Ohio
#> 5797 Oklahoma
#> 5798 Oregon
#> 5799 Pennsylvania
#> 5800 Rhode Island
#> 5801 South Carolina
#> 5802 South Dakota
#> 5803 Tennessee
#> 5804 Utah
#> 5805 Vermont
#> 5806 Virginia
#> 5807 Washington
#> 5808 West Virginia
#> 5809 Wisconsin
#> 5810 Wyoming
#> 5811 Minnesota
#> 5812 Montana
#> 5813 Nebraska
#> 5814 Nevada
#> 5815 Arizona
#> 5816 Arkansas
#> 5817 California
#> 5818 Connecticut
#> 5819 Delaware
#> 5820 Florida
#> 5821 Georgia
#> 5822 Illinois
#> 5823 Indiana
#> 5824 Maryland
#> 5825 Massachusetts
#> 5826 Mississippi
#> 5827 Nebraska
#> 5828 New Jersey
#> 5829 North Carolina
#> 5830 North Dakota
#> 5831 Oklahoma
#> 5832 South Carolina
#> 5833 Tennessee
#> 5834 Virginia
#> 5835 Wyoming
#> 5836 Alabama
#> 5837 Alaska
#> 5838 Arizona
#> 5839 Arkansas
#> 5840 California
#> 5841 Colorado
#> 5842 Connecticut
#> 5843 Delaware
#> 5844 Florida
#> 5845 Georgia
#> 5846 Hawaii
#> 5847 Idaho
#> 5848 Illinois
#> 5849 Indiana
#> 5850 Iowa
#> 5851 Kansas
#> 5852 Kentucky
#> 5853 Louisiana
#> 5854 Maine
#> 5855 Maryland
#> 5856 Massachusetts
#> 5857 Michigan
#> 5858 Minnesota
#> 5859 Mississippi
#> 5860 Missouri
#> 5861 Montana
#> 5862 Nebraska
#> 5863 Nevada
#> 5864 New Hampshire
#> 5865 New Jersey
#> 5866 New Mexico
#> 5867 New York
#> 5868 North Carolina
#> 5869 North Dakota
#> 5870 Ohio
#> 5871 Oklahoma
#> 5872 Oregon
#> 5873 Pennsylvania
#> 5874 Rhode Island
#> 5875 South Carolina
#> 5876 South Dakota
#> 5877 Tennessee
#> 5878 Texas
#> 5879 Utah
#> 5880 Vermont
#> 5881 Virginia
#> 5882 Washington
#> 5883 West Virginia
#> 5884 Wisconsin
#> 5885 Wyoming
#> 5886 Alabama
#> 5887 Alaska
#> 5888 Arizona
#> 5889 Arkansas
#> 5890 California
#> 5891 Colorado
#> 5892 Connecticut
#> 5893 Delaware
#> 5894 Florida
#> 5895 Georgia
#> 5896 Idaho
#> 5897 Illinois
#> 5898 Iowa
#> 5899 Kansas
#> 5900 Louisiana
#> 5901 Maine
#> 5902 Maryland
#> 5903 Michigan
#> 5904 Minnesota
#> 5905 Mississippi
#> 5906 Montana
#> 5907 Nebraska
#> 5908 Nevada
#> 5909 New Hampshire
#> 5910 New Jersey
#> 5911 New Mexico
#> 5912 North Carolina
#> 5913 North Dakota
#> 5914 Oklahoma
#> 5915 Oregon
#> 5916 Pennsylvania
#> 5917 South Dakota
#> 5918 Texas
#> 5919 Virginia
#> 5920 Washington
#> 5921 Wisconsin
#> 5922 Wyoming
#> 5923 Alabama
#> 5924 Arizona
#> 5925 Arkansas
#> 5926 California
#> 5927 Florida
#> 5928 Georgia
#> 5929 Louisiana
#> 5930 Michigan
#> 5931 Minnesota
#> 5932 Mississippi
#> 5933 Montana
#> 5934 New Jersey
#> 5935 North Dakota
#> 5936 Ohio
#> 5937 Oregon
#> 5938 South Carolina
#> 5939 South Dakota
#> 5940 Tennessee
#> 5941 Texas
#> 5942 Vermont
#> 5943 Wyoming
#> 5944 Arkansas
#> 5945 North Dakota
#> 5946 Alabama
#> 5947 Alaska
#> 5948 Arizona
#> 5949 Arkansas
#> 5950 California
#> 5951 Florida
#> 5952 Georgia
#> 5953 Idaho
#> 5954 Illinois
#> 5955 Indiana
#> 5956 Kansas
#> 5957 Kentucky
#> 5958 Louisiana
#> 5959 Maryland
#> 5960 Michigan
#> 5961 Minnesota
#> 5962 Mississippi
#> 5963 Missouri
#> 5964 Montana
#> 5965 Nebraska
#> 5966 Nevada
#> 5967 North Carolina
#> 5968 North Dakota
#> 5969 Ohio
#> 5970 Oklahoma
#> 5971 Pennsylvania
#> 5972 Rhode Island
#> 5973 South Carolina
#> 5974 South Dakota
#> 5975 Tennessee
#> 5976 Texas
#> 5977 Utah
#> 5978 Virginia
#> 5979 Washington
#> 5980 West Virginia
#> 5981 Wisconsin
#> 5982 Alabama
#> 5983 Arkansas
#> 5984 Georgia
#> 5985 Idaho
#> 5986 Kansas
#> 5987 Louisiana
#> 5988 Nebraska
#> 5989 North Dakota
#> 5990 Oklahoma
#> 5991 Texas
#> 5992 California
#> 5993 Colorado
#> 5994 Connecticut
#> 5995 Massachusetts
#> 5996 Michigan
#> 5997 Minnesota
#> 5998 New Hampshire
#> 5999 New Jersey
#> 6000 New York
#> 6001 Oregon
#> 6002 Pennsylvania
#> 6003 Delaware
#> 6004 Arizona
#> 6005 Arkansas
#> 6006 Colorado
#> 6007 Connecticut
#> 6008 Florida
#> 6009 Hawaii
#> 6010 Idaho
#> 6011 Illinois
#> 6012 Indiana
#> 6013 Kansas
#> 6014 Maryland
#> 6015 Michigan
#> 6016 Minnesota
#> 6017 Mississippi
#> 6018 Nebraska
#> 6019 New Mexico
#> 6020 New York
#> 6021 North Carolina
#> 6022 North Dakota
#> 6023 Ohio
#> 6024 Oregon
#> 6025 South Carolina
#> 6026 South Dakota
#> 6027 Tennessee
#> 6028 Utah
#> 6029 Virginia
#> 6030 Washington
#> 6031 Wisconsin
#> 6032 Wyoming
#> 6033 Alabama
#> 6034 Alaska
#> 6035 Arizona
#> 6036 Arkansas
#> 6037 California
#> 6038 Colorado
#> 6039 Connecticut
#> 6040 Florida
#> 6041 Georgia
#> 6042 Hawaii
#> 6043 Idaho
#> 6044 Illinois
#> 6045 Indiana
#> 6046 Iowa
#> 6047 Kansas
#> 6048 Kentucky
#> 6049 Louisiana
#> 6050 Maine
#> 6051 Maryland
#> 6052 Massachusetts
#> 6053 Michigan
#> 6054 Minnesota
#> 6055 Mississippi
#> 6056 Missouri
#> 6057 Montana
#> 6058 New Jersey
#> 6059 New Mexico
#> 6060 New York
#> 6061 North Carolina
#> 6062 Ohio
#> 6063 Oklahoma
#> 6064 Oregon
#> 6065 Pennsylvania
#> 6066 Rhode Island
#> 6067 South Carolina
#> 6068 South Dakota
#> 6069 Tennessee
#> 6070 Texas
#> 6071 Utah
#> 6072 Virginia
#> 6073 Washington
#> 6074 West Virginia
#> 6075 Wisconsin
#> 6076 Wyoming
#> 6077 Alabama
#> 6078 Arizona
#> 6079 Arkansas
#> 6080 California
#> 6081 Colorado
#> 6082 Connecticut
#> 6083 Delaware
#> 6084 Georgia
#> 6085 Illinois
#> 6086 Indiana
#> 6087 Iowa
#> 6088 Kansas
#> 6089 Maine
#> 6090 Maryland
#> 6091 Massachusetts
#> 6092 Michigan
#> 6093 Minnesota
#> 6094 Missouri
#> 6095 Nebraska
#> 6096 Nevada
#> 6097 New Hampshire
#> 6098 New Jersey
#> 6099 New York
#> 6100 North Carolina
#> 6101 Ohio
#> 6102 Oregon
#> 6103 Pennsylvania
#> 6104 Rhode Island
#> 6105 South Carolina
#> 6106 Texas
#> 6107 Vermont
#> 6108 Virginia
#> 6109 Washington
#> 6110 Wisconsin
#> 6111 Wyoming
#> 6112 California
#> 6113 Connecticut
#> 6114 Hawaii
#> 6115 Maine
#> 6116 Maryland
#> 6117 Nevada
#> 6118 Washington
#> 6119 Alabama
#> 6120 Alaska
#> 6121 Arizona
#> 6122 Arkansas
#> 6123 Colorado
#> 6124 Connecticut
#> 6125 Delaware
#> 6126 Florida
#> 6127 Georgia
#> 6128 Hawaii
#> 6129 Idaho
#> 6130 Illinois
#> 6131 Indiana
#> 6132 Iowa
#> 6133 Kansas
#> 6134 Kentucky
#> 6135 Louisiana
#> 6136 Maine
#> 6137 Maryland
#> 6138 Massachusetts
#> 6139 Michigan
#> 6140 Minnesota
#> 6141 Mississippi
#> 6142 Missouri
#> 6143 Montana
#> 6144 Nebraska
#> 6145 Nevada
#> 6146 New Jersey
#> 6147 New York
#> 6148 North Carolina
#> 6149 Ohio
#> 6150 Oregon
#> 6151 Pennsylvania
#> 6152 Rhode Island
#> 6153 South Dakota
#> 6154 Tennessee
#> 6155 Texas
#> 6156 Virginia
#> 6157 Wisconsin
#> 6158 Wyoming
#> 6159 California
#> 6160 Colorado
#> 6161 Connecticut
#> 6162 Delaware
#> 6163 Hawaii
#> 6164 Idaho
#> 6165 Illinois
#> 6166 Minnesota
#> 6167 Montana
#> 6168 New Mexico
#> 6169 North Carolina
#> 6170 North Dakota
#> 6171 Ohio
#> 6172 Oklahoma
#> 6173 Oregon
#> 6174 Rhode Island
#> 6175 Utah
#> 6176 Virginia
#> 6177 Washington
#> 6178 Wisconsin
#> 6179 Alaska
#> 6180 California
#> 6181 Colorado
#> 6182 Connecticut
#> 6183 Delaware
#> 6184 Florida
#> 6185 Georgia
#> 6186 Hawaii
#> 6187 Idaho
#> 6188 Illinois
#> 6189 Iowa
#> 6190 Maine
#> 6191 Maryland
#> 6192 Massachusetts
#> 6193 Michigan
#> 6194 Minnesota
#> 6195 Missouri
#> 6196 Montana
#> 6197 Nevada
#> 6198 New Jersey
#> 6199 New Mexico
#> 6200 New York
#> 6201 North Carolina
#> 6202 North Dakota
#> 6203 Ohio
#> 6204 Oklahoma
#> 6205 Oregon
#> 6206 Pennsylvania
#> 6207 Texas
#> 6208 Virginia
#> 6209 Washington
#> 6210 Alabama
#> 6211 Arizona
#> 6212 California
#> 6213 Colorado
#> 6214 Delaware
#> 6215 Georgia
#> 6216 Hawaii
#> 6217 Idaho
#> 6218 Illinois
#> 6219 Indiana
#> 6220 Iowa
#> 6221 Michigan
#> 6222 Minnesota
#> 6223 Montana
#> 6224 Nevada
#> 6225 New Mexico
#> 6226 North Carolina
#> 6227 North Dakota
#> 6228 Oklahoma
#> 6229 Oregon
#> 6230 Virginia
#> 6231 Washington
#> 6232 Alabama
#> 6233 Arkansas
#> 6234 California
#> 6235 Colorado
#> 6236 Connecticut
#> 6237 Delaware
#> 6238 Florida
#> 6239 Georgia
#> 6240 Idaho
#> 6241 Illinois
#> 6242 Indiana
#> 6243 Iowa
#> 6244 Kansas
#> 6245 Kentucky
#> 6246 Louisiana
#> 6247 Maine
#> 6248 Maryland
#> 6249 Massachusetts
#> 6250 Michigan
#> 6251 Minnesota
#> 6252 Mississippi
#> 6253 Missouri
#> 6254 Montana
#> 6255 Nebraska
#> 6256 New Hampshire
#> 6257 New Jersey
#> 6258 New York
#> 6259 North Carolina
#> 6260 North Dakota
#> 6261 Ohio
#> 6262 Oklahoma
#> 6263 Oregon
#> 6264 Pennsylvania
#> 6265 Rhode Island
#> 6266 South Carolina
#> 6267 South Dakota
#> 6268 Tennessee
#> 6269 Texas
#> 6270 Vermont
#> 6271 Virginia
#> 6272 Washington
#> 6273 West Virginia
#> 6274 Wisconsin
#> 6275 Wyoming
#> 6276 Alabama
#> 6277 Arizona
#> 6278 Arkansas
#> 6279 California
#> 6280 Colorado
#> 6281 Connecticut
#> 6282 Delaware
#> 6283 Florida
#> 6284 Georgia
#> 6285 Hawaii
#> 6286 Idaho
#> 6287 Illinois
#> 6288 Indiana
#> 6289 Iowa
#> 6290 Kansas
#> 6291 Kentucky
#> 6292 Maine
#> 6293 Massachusetts
#> 6294 Michigan
#> 6295 Minnesota
#> 6296 Mississippi
#> 6297 Missouri
#> 6298 Montana
#> 6299 Nebraska
#> 6300 Nevada
#> 6301 New Hampshire
#> 6302 New Jersey
#> 6303 New Mexico
#> 6304 North Carolina
#> 6305 North Dakota
#> 6306 Ohio
#> 6307 Oklahoma
#> 6308 Oregon
#> 6309 Pennsylvania
#> 6310 Rhode Island
#> 6311 South Dakota
#> 6312 Tennessee
#> 6313 Texas
#> 6314 Utah
#> 6315 Vermont
#> 6316 Washington
#> 6317 Wisconsin
#> 6318 Wyoming
#> 6319 Alabama
#> 6320 Arizona
#> 6321 Arkansas
#> 6322 Colorado
#> 6323 Connecticut
#> 6324 Florida
#> 6325 Georgia
#> 6326 Hawaii
#> 6327 Illinois
#> 6328 Iowa
#> 6329 Kansas
#> 6330 Maryland
#> 6331 Michigan
#> 6332 Mississippi
#> 6333 Missouri
#> 6334 Nebraska
#> 6335 New York
#> 6336 North Carolina
#> 6337 North Dakota
#> 6338 Ohio
#> 6339 Oklahoma
#> 6340 Pennsylvania
#> 6341 South Dakota
#> 6342 Tennessee
#> 6343 Virginia
#> 6344 West Virginia
#> 6345 Alaska
#> 6346 California
#> 6347 Hawaii
#> 6348 Oregon
#> 6349 Washington
#> 6350 West Virginia
#> 6351 Alabama
#> 6352 Alaska
#> 6353 Arizona
#> 6354 Arkansas
#> 6355 California
#> 6356 Colorado
#> 6357 Connecticut
#> 6358 Delaware
#> 6359 Florida
#> 6360 Georgia
#> 6361 Illinois
#> 6362 Indiana
#> 6363 Kansas
#> 6364 Louisiana
#> 6365 Maine
#> 6366 Massachusetts
#> 6367 Michigan
#> 6368 Mississippi
#> 6369 Missouri
#> 6370 Montana
#> 6371 Nebraska
#> 6372 Nevada
#> 6373 New Hampshire
#> 6374 New Jersey
#> 6375 New Mexico
#> 6376 New York
#> 6377 North Dakota
#> 6378 Ohio
#> 6379 Oklahoma
#> 6380 Rhode Island
#> 6381 South Carolina
#> 6382 South Dakota
#> 6383 Tennessee
#> 6384 Texas
#> 6385 Utah
#> 6386 Vermont
#> 6387 Alabama
#> 6388 Alaska
#> 6389 Arizona
#> 6390 Arkansas
#> 6391 California
#> 6392 Colorado
#> 6393 Delaware
#> 6394 Florida
#> 6395 Georgia
#> 6396 Idaho
#> 6397 Illinois
#> 6398 Indiana
#> 6399 Iowa
#> 6400 Kentucky
#> 6401 Louisiana
#> 6402 Maine
#> 6403 Maryland
#> 6404 Michigan
#> 6405 Minnesota
#> 6406 Mississippi
#> 6407 Missouri
#> 6408 Montana
#> 6409 Nebraska
#> 6410 Nevada
#> 6411 New Hampshire
#> 6412 New Jersey
#> 6413 New Mexico
#> 6414 North Carolina
#> 6415 North Dakota
#> 6416 Ohio
#> 6417 Oklahoma
#> 6418 Oregon
#> 6419 Pennsylvania
#> 6420 Rhode Island
#> 6421 South Carolina
#> 6422 Tennessee
#> 6423 Texas
#> 6424 Utah
#> 6425 Virginia
#> 6426 West Virginia
#> 6427 Wisconsin
#> 6428 Wyoming
#> 6429 Alabama
#> 6430 Alaska
#> 6431 Arizona
#> 6432 Arkansas
#> 6433 Colorado
#> 6434 Connecticut
#> 6435 Delaware
#> 6436 Florida
#> 6437 Georgia
#> 6438 Hawaii
#> 6439 Idaho
#> 6440 Illinois
#> 6441 Indiana
#> 6442 Iowa
#> 6443 Kansas
#> 6444 Kentucky
#> 6445 Louisiana
#> 6446 Maine
#> 6447 Maryland
#> 6448 Massachusetts
#> 6449 Michigan
#> 6450 Minnesota
#> 6451 Mississippi
#> 6452 Missouri
#> 6453 Montana
#> 6454 Nebraska
#> 6455 Nevada
#> 6456 New Hampshire
#> 6457 New Jersey
#> 6458 New Mexico
#> 6459 New York
#> 6460 North Carolina
#> 6461 North Dakota
#> 6462 Ohio
#> 6463 Oregon
#> 6464 Rhode Island
#> 6465 South Carolina
#> 6466 South Dakota
#> 6467 Tennessee
#> 6468 Texas
#> 6469 Utah
#> 6470 Vermont
#> 6471 Virginia
#> 6472 Washington
#> 6473 West Virginia
#> 6474 Wisconsin
#> 6475 Wyoming
#> 6476 Alabama
#> 6477 Arkansas
#> 6478 Delaware
#> 6479 Georgia
#> 6480 Illinois
#> 6481 Indiana
#> 6482 Iowa
#> 6483 Kansas
#> 6484 Kentucky
#> 6485 Louisiana
#> 6486 Maine
#> 6487 Maryland
#> 6488 Michigan
#> 6489 Minnesota
#> 6490 Mississippi
#> 6491 Missouri
#> 6492 Nevada
#> 6493 North Carolina
#> 6494 North Dakota
#> 6495 Oregon
#> 6496 Rhode Island
#> 6497 South Carolina
#> 6498 Texas
#> 6499 Utah
#> 6500 Vermont
#> 6501 Washington
#> 6502 West Virginia
#> 6503 Wisconsin
#> 6504 Wyoming
#> 6505 Alabama
#> 6506 Arizona
#> 6507 Arkansas
#> 6508 Illinois
#> 6509 Indiana
#> 6510 Kansas
#> 6511 Kentucky
#> 6512 Louisiana
#> 6513 Michigan
#> 6514 Minnesota
#> 6515 Mississippi
#> 6516 Missouri
#> 6517 Nebraska
#> 6518 North Dakota
#> 6519 Ohio
#> 6520 Oklahoma
#> 6521 Pennsylvania
#> 6522 South Carolina
#> 6523 Texas
#> 6524 Virginia
#> 6525 Wisconsin
#> 6526 Colorado
#> 6527 Delaware
#> 6528 Florida
#> 6529 Illinois
#> 6530 Indiana
#> 6531 Iowa
#> 6532 Kansas
#> 6533 Louisiana
#> 6534 Maine
#> 6535 Maryland
#> 6536 Michigan
#> 6537 Mississippi
#> 6538 Missouri
#> 6539 Nevada
#> 6540 New Jersey
#> 6541 New Mexico
#> 6542 New York
#> 6543 Ohio
#> 6544 Oklahoma
#> 6545 Pennsylvania
#> 6546 Rhode Island
#> 6547 South Dakota
#> 6548 West Virginia
#> 6549 Arizona
#> 6550 Arkansas
#> 6551 California
#> 6552 Colorado
#> 6553 Connecticut
#> 6554 Delaware
#> 6555 Florida
#> 6556 Georgia
#> 6557 Idaho
#> 6558 Illinois
#> 6559 Indiana
#> 6560 Iowa
#> 6561 Kansas
#> 6562 Kentucky
#> 6563 Louisiana
#> 6564 Maine
#> 6565 Maryland
#> 6566 Massachusetts
#> 6567 Michigan
#> 6568 Minnesota
#> 6569 Missouri
#> 6570 Montana
#> 6571 Nebraska
#> 6572 New Hampshire
#> 6573 New Jersey
#> 6574 New Mexico
#> 6575 New York
#> 6576 North Carolina
#> 6577 North Dakota
#> 6578 Ohio
#> 6579 Oklahoma
#> 6580 Oregon
#> 6581 Pennsylvania
#> 6582 Rhode Island
#> 6583 South Carolina
#> 6584 South Dakota
#> 6585 Tennessee
#> 6586 Texas
#> 6587 Vermont
#> 6588 Virginia
#> 6589 Washington
#> 6590 West Virginia
#> 6591 Wisconsin
#> 6592 Wyoming
#> 6593 California
#> 6594 Illinois
#> 6595 Maine
#> 6596 Nevada
#> 6597 New Jersey
#> 6598 Washington
#> 6599 Wisconsin
#> 6600 Alabama
#> 6601 Arizona
#> 6602 Arkansas
#> 6603 California
#> 6604 Colorado
#> 6605 Connecticut
#> 6606 Delaware
#> 6607 Florida
#> 6608 Georgia
#> 6609 Idaho
#> 6610 Illinois
#> 6611 Indiana
#> 6612 Iowa
#> 6613 Kansas
#> 6614 Kentucky
#> 6615 Louisiana
#> 6616 Maine
#> 6617 Maryland
#> 6618 Massachusetts
#> 6619 Michigan
#> 6620 Minnesota
#> 6621 Mississippi
#> 6622 Missouri
#> 6623 Montana
#> 6624 Nebraska
#> 6625 Nevada
#> 6626 New Hampshire
#> 6627 New Jersey
#> 6628 New Mexico
#> 6629 New York
#> 6630 North Carolina
#> 6631 North Dakota
#> 6632 Ohio
#> 6633 Oklahoma
#> 6634 Oregon
#> 6635 Pennsylvania
#> 6636 Rhode Island
#> 6637 South Carolina
#> 6638 South Dakota
#> 6639 Tennessee
#> 6640 Texas
#> 6641 Utah
#> 6642 Vermont
#> 6643 Virginia
#> 6644 Washington
#> 6645 West Virginia
#> 6646 Wisconsin
#> 6647 Wyoming
#> 6648 California
#> 6649 Colorado
#> 6650 Connecticut
#> 6651 Delaware
#> 6652 Hawaii
#> 6653 Illinois
#> 6654 Iowa
#> 6655 Maine
#> 6656 Maryland
#> 6657 Massachusetts
#> 6658 Minnesota
#> 6659 Nevada
#> 6660 New Jersey
#> 6661 New Mexico
#> 6662 Oregon
#> 6663 Rhode Island
#> 6664 Vermont
#> 6665 Washington
#> 6666 Arizona
#> 6667 California
#> 6668 Colorado
#> 6669 Connecticut
#> 6670 Delaware
#> 6671 Florida
#> 6672 Hawaii
#> 6673 Illinois
#> 6674 Iowa
#> 6675 Kansas
#> 6676 Kentucky
#> 6677 Louisiana
#> 6678 Maine
#> 6679 Maryland
#> 6680 Massachusetts
#> 6681 Minnesota
#> 6682 Missouri
#> 6683 Nebraska
#> 6684 Nevada
#> 6685 New Hampshire
#> 6686 New Jersey
#> 6687 New Mexico
#> 6688 New York
#> 6689 Oregon
#> 6690 Pennsylvania
#> 6691 Rhode Island
#> 6692 Tennessee
#> 6693 Texas
#> 6694 Vermont
#> 6695 Washington
#> 6696 Wisconsin
#> 6697 Alabama
#> 6698 Alaska
#> 6699 Arizona
#> 6700 Arkansas
#> 6701 California
#> 6702 Colorado
#> 6703 Delaware
#> 6704 Florida
#> 6705 Georgia
#> 6706 Hawaii
#> 6707 Idaho
#> 6708 Illinois
#> 6709 Indiana
#> 6710 Kansas
#> 6711 Kentucky
#> 6712 Louisiana
#> 6713 Maine
#> 6714 Michigan
#> 6715 Minnesota
#> 6716 Missouri
#> 6717 Montana
#> 6718 North Carolina
#> 6719 North Dakota
#> 6720 Oklahoma
#> 6721 Oregon
#> 6722 Pennsylvania
#> 6723 South Carolina
#> 6724 South Dakota
#> 6725 Tennessee
#> 6726 Texas
#> 6727 Utah
#> 6728 Virginia
#> 6729 Washington
#> 6730 Alabama
#> 6731 Alaska
#> 6732 Arizona
#> 6733 Arkansas
#> 6734 California
#> 6735 Colorado
#> 6736 Connecticut
#> 6737 Delaware
#> 6738 Florida
#> 6739 Georgia
#> 6740 Hawaii
#> 6741 Idaho
#> 6742 Indiana
#> 6743 Iowa
#> 6744 Kansas
#> 6745 Kentucky
#> 6746 Louisiana
#> 6747 Maine
#> 6748 Maryland
#> 6749 Massachusetts
#> 6750 Michigan
#> 6751 Minnesota
#> 6752 Mississippi
#> 6753 Missouri
#> 6754 Montana
#> 6755 Nebraska
#> 6756 Nevada
#> 6757 New Hampshire
#> 6758 New Jersey
#> 6759 New Mexico
#> 6760 New York
#> 6761 North Carolina
#> 6762 North Dakota
#> 6763 Ohio
#> 6764 Oklahoma
#> 6765 Oregon
#> 6766 Pennsylvania
#> 6767 Rhode Island
#> 6768 South Carolina
#> 6769 South Dakota
#> 6770 Tennessee
#> 6771 Texas
#> 6772 Utah
#> 6773 Vermont
#> 6774 Virginia
#> 6775 Washington
#> 6776 West Virginia
#> 6777 Wisconsin
#> 6778 Wyoming
#> 6779 California
#> 6780 Connecticut
#> 6781 Illinois
#> 6782 Maine
#> 6783 Nevada
#> 6784 New Hampshire
#> 6785 New Jersey
#> 6786 Oregon
#> 6787 Rhode Island
#> 6788 Vermont
#> 6789 Washington
#> 6790 Wisconsin
#> 6791 Arizona
#> 6792 California
#> 6793 Colorado
#> 6794 Connecticut
#> 6795 Delaware
#> 6796 Florida
#> 6797 Hawaii
#> 6798 Illinois
#> 6799 Iowa
#> 6800 Kansas
#> 6801 Kentucky
#> 6802 Louisiana
#> 6803 Maine
#> 6804 Maryland
#> 6805 Massachusetts
#> 6806 Minnesota
#> 6807 Missouri
#> 6808 Nebraska
#> 6809 Nevada
#> 6810 New Hampshire
#> 6811 New Jersey
#> 6812 New Mexico
#> 6813 New York
#> 6814 Oregon
#> 6815 Rhode Island
#> 6816 Tennessee
#> 6817 Texas
#> 6818 Vermont
#> 6819 Washington
#> 6820 Wisconsin
#> 6821 Connecticut
#> 6822 Iowa
#> 6823 Massachusetts
#> 6824 New Hampshire
#> 6825 New York
#> 6826 Vermont
#> 6827 Washington
#> 6828 Alabama
#> 6829 Alaska
#> 6830 Arizona
#> 6831 Arkansas
#> 6832 California
#> 6833 Colorado
#> 6834 Connecticut
#> 6835 Delaware
#> 6836 Florida
#> 6837 Georgia
#> 6838 Hawaii
#> 6839 Idaho
#> 6840 Illinois
#> 6841 Indiana
#> 6842 Iowa
#> 6843 Kansas
#> 6844 Kentucky
#> 6845 Louisiana
#> 6846 Maine
#> 6847 Maryland
#> 6848 Massachusetts
#> 6849 Michigan
#> 6850 Minnesota
#> 6851 Mississippi
#> 6852 Missouri
#> 6853 Montana
#> 6854 Nebraska
#> 6855 Nevada
#> 6856 New Hampshire
#> 6857 New Jersey
#> 6858 New Mexico
#> 6859 New York
#> 6860 North Carolina
#> 6861 Ohio
#> 6862 Oklahoma
#> 6863 Oregon
#> 6864 Pennsylvania
#> 6865 Rhode Island
#> 6866 South Carolina
#> 6867 South Dakota
#> 6868 Tennessee
#> 6869 Texas
#> 6870 Utah
#> 6871 Vermont
#> 6872 Virginia
#> 6873 Washington
#> 6874 West Virginia
#> 6875 Wisconsin
#> 6876 Wyoming
#> 6877 Alaska
#> 6878 Arizona
#> 6879 California
#> 6880 Colorado
#> 6881 Connecticut
#> 6882 Delaware
#> 6883 Florida
#> 6884 Hawaii
#> 6885 Idaho
#> 6886 Illinois
#> 6887 Indiana
#> 6888 Iowa
#> 6889 Kansas
#> 6890 Kentucky
#> 6891 Louisiana
#> 6892 Maine
#> 6893 Maryland
#> 6894 Massachusetts
#> 6895 Michigan
#> 6896 Minnesota
#> 6897 Missouri
#> 6898 Montana
#> 6899 Nebraska
#> 6900 Nevada
#> 6901 New Hampshire
#> 6902 New Jersey
#> 6903 New Mexico
#> 6904 New York
#> 6905 North Dakota
#> 6906 Oklahoma
#> 6907 Oregon
#> 6908 Pennsylvania
#> 6909 Rhode Island
#> 6910 South Dakota
#> 6911 Tennessee
#> 6912 Texas
#> 6913 Utah
#> 6914 Vermont
#> 6915 Virginia
#> 6916 Washington
#> 6917 West Virginia
#> 6918 Wisconsin
#> 6919 Wyoming
#> 6920 Alaska
#> 6921 California
#> 6922 Colorado
#> 6923 Connecticut
#> 6924 Delaware
#> 6925 Hawaii
#> 6926 Idaho
#> 6927 Indiana
#> 6928 Iowa
#> 6929 Kansas
#> 6930 Kentucky
#> 6931 Maine
#> 6932 Maryland
#> 6933 Massachusetts
#> 6934 Michigan
#> 6935 Minnesota
#> 6936 Montana
#> 6937 New Hampshire
#> 6938 New Jersey
#> 6939 New Mexico
#> 6940 New York
#> 6941 North Dakota
#> 6942 Ohio
#> 6943 Oregon
#> 6944 Pennsylvania
#> 6945 Rhode Island
#> 6946 South Dakota
#> 6947 Tennessee
#> 6948 Texas
#> 6949 Vermont
#> 6950 Washington
#> 6951 West Virginia
#> 6952 Wisconsin
#> 6953 Wyoming
#> 6954 Hawaii
#> 6955 Vermont
#> 6956 Wisconsin
#> 6957 Alaska
#> 6958 Arizona
#> 6959 Arkansas
#> 6960 California
#> 6961 Colorado
#> 6962 Connecticut
#> 6963 Florida
#> 6964 Georgia
#> 6965 Hawaii
#> 6966 Idaho
#> 6967 Illinois
#> 6968 Indiana
#> 6969 Kansas
#> 6970 Kentucky
#> 6971 Maine
#> 6972 Maryland
#> 6973 Massachusetts
#> 6974 Michigan
#> 6975 Minnesota
#> 6976 Missouri
#> 6977 Montana
#> 6978 Nebraska
#> 6979 Nevada
#> 6980 New Hampshire
#> 6981 New Jersey
#> 6982 New Mexico
#> 6983 New York
#> 6984 North Dakota
#> 6985 Ohio
#> 6986 Oklahoma
#> 6987 Oregon
#> 6988 Pennsylvania
#> 6989 Rhode Island
#> 6990 South Dakota
#> 6991 Utah
#> 6992 Vermont
#> 6993 Washington
#> 6994 West Virginia
#> 6995 Wisconsin
#> 6996 Wyoming
#> 6997 Alabama
#> 6998 Alaska
#> 6999 Arizona
#> 7000 Arkansas
#> 7001 California
#> 7002 Colorado
#> 7003 Connecticut
#> 7004 Delaware
#> 7005 Florida
#> 7006 Georgia
#> 7007 Hawaii
#> 7008 Idaho
#> 7009 Illinois
#> 7010 Indiana
#> 7011 Iowa
#> 7012 Kansas
#> 7013 Kentucky
#> 7014 Louisiana
#> 7015 Maine
#> 7016 Maryland
#> 7017 Massachusetts
#> 7018 Michigan
#> 7019 Minnesota
#> 7020 Mississippi
#> 7021 Missouri
#> 7022 Montana
#> 7023 Nebraska
#> 7024 Nevada
#> 7025 New Hampshire
#> 7026 New Jersey
#> 7027 New Mexico
#> 7028 New York
#> 7029 North Carolina
#> 7030 North Dakota
#> 7031 Ohio
#> 7032 Oklahoma
#> 7033 Oregon
#> 7034 Pennsylvania
#> 7035 Rhode Island
#> 7036 South Carolina
#> 7037 South Dakota
#> 7038 Tennessee
#> 7039 Texas
#> 7040 Utah
#> 7041 Vermont
#> 7042 Virginia
#> 7043 Washington
#> 7044 West Virginia
#> 7045 Wisconsin
#> 7046 Wyoming
#> 7047 Alaska
#> 7048 California
#> 7049 Colorado
#> 7050 Connecticut
#> 7051 Florida
#> 7052 Hawaii
#> 7053 Iowa
#> 7054 Louisiana
#> 7055 Maryland
#> 7056 Massachusetts
#> 7057 Montana
#> 7058 Nebraska
#> 7059 New Hampshire
#> 7060 New Jersey
#> 7061 New Mexico
#> 7062 Pennsylvania
#> 7063 Rhode Island
#> 7064 Texas
#> 7065 Utah
#> 7066 Virginia
#> 7067 Washington
#> 7068 Wyoming
#> 7069 Delaware
#> 7070 Indiana
#> 7071 Iowa
#> 7072 Kansas
#> 7073 Kentucky
#> 7074 Maryland
#> 7075 Massachusetts
#> 7076 Michigan
#> 7077 New York
#> 7078 Ohio
#> 7079 Pennsylvania
#> 7080 California
#> 7081 Colorado
#> 7082 Connecticut
#> 7083 Delaware
#> 7084 Hawaii
#> 7085 Illinois
#> 7086 Iowa
#> 7087 Maine
#> 7088 Massachusetts
#> 7089 Minnesota
#> 7090 Nevada
#> 7091 New Jersey
#> 7092 New Mexico
#> 7093 Oregon
#> 7094 Rhode Island
#> 7095 Vermont
#> 7096 Washington
#> 7097 Alaska
#> 7098 California
#> 7099 Colorado
#> 7100 Connecticut
#> 7101 Delaware
#> 7102 Florida
#> 7103 Illinois
#> 7104 Massachusetts
#> 7105 New Mexico
#> 7106 New York
#> 7107 North Carolina
#> 7108 Rhode Island
#> 7109 Vermont
#> 7110 Washington
#> 7111 Alaska
#> 7112 Arizona
#> 7113 Arkansas
#> 7114 Colorado
#> 7115 Florida
#> 7116 Hawaii
#> 7117 Illinois
#> 7118 Kansas
#> 7119 Kentucky
#> 7120 Louisiana
#> 7121 Maine
#> 7122 Maryland
#> 7123 Massachusetts
#> 7124 Minnesota
#> 7125 Montana
#> 7126 New Jersey
#> 7127 North Dakota
#> 7128 Oregon
#> 7129 South Carolina
#> 7130 Texas
#> 7131 Washington
#> 7132 West Virginia
#> 7133 Wyoming
#> 7134 Alabama
#> 7135 Colorado
#> 7136 Hawaii
#> 7137 Massachusetts
#> 7138 Minnesota
#> 7139 Connecticut
#> 7140 Hawaii
#> 7141 Illinois
#> 7142 Iowa
#> 7143 Maryland
#> 7144 Michigan
#> 7145 Missouri
#> 7146 Nebraska
#> 7147 New Jersey
#> 7148 New York
#> 7149 North Carolina
#> 7150 Pennsylvania
#> 7151 Rhode Island
#> 7152 Tennessee
#> 7153 California
#> 7154 Colorado
#> 7155 Connecticut
#> 7156 Delaware
#> 7157 Hawaii
#> 7158 Illinois
#> 7159 Massachusetts
#> 7160 New Jersey
#> 7161 New York
#> 7162 Rhode Island
#> 7163 Alabama
#> 7164 California
#> 7165 Connecticut
#> 7166 Florida
#> 7167 Hawaii
#> 7168 Indiana
#> 7169 Iowa
#> 7170 Maryland
#> 7171 New Jersey
#> 7172 Pennsylvania
#> 7173 Rhode Island
#> 7174 South Dakota
#> 7175 Wisconsin
#> 7176 California
#> 7177 Connecticut
#> 7178 Hawaii
#> 7179 Maryland
#> 7180 Massachusetts
#> 7181 New Jersey
#> 7182 New York
#> 7183 Alabama
#> 7184 California
#> 7185 Connecticut
#> 7186 Delaware
#> 7187 Georgia
#> 7188 Hawaii
#> 7189 Idaho
#> 7190 Indiana
#> 7191 Maryland
#> 7192 Massachusetts
#> 7193 New Hampshire
#> 7194 New Jersey
#> 7195 New York
#> 7196 North Carolina
#> 7197 Oregon
#> 7198 Pennsylvania
#> 7199 Rhode Island
#> 7200 South Carolina
#> 7201 Virginia
#> 7202 Washington
#> 7203 Alabama
#> 7204 Alaska
#> 7205 Arizona
#> 7206 Arkansas
#> 7207 Colorado
#> 7208 Connecticut
#> 7209 Florida
#> 7210 Georgia
#> 7211 Idaho
#> 7212 Illinois
#> 7213 Indiana
#> 7214 Iowa
#> 7215 Kansas
#> 7216 Kentucky
#> 7217 Louisiana
#> 7218 Maine
#> 7219 Michigan
#> 7220 Minnesota
#> 7221 Mississippi
#> 7222 Missouri
#> 7223 Montana
#> 7224 Nebraska
#> 7225 Nevada
#> 7226 New Hampshire
#> 7227 New Mexico
#> 7228 North Carolina
#> 7229 North Dakota
#> 7230 Ohio
#> 7231 Oklahoma
#> 7232 Oregon
#> 7233 Pennsylvania
#> 7234 South Carolina
#> 7235 South Dakota
#> 7236 Tennessee
#> 7237 Texas
#> 7238 Utah
#> 7239 Vermont
#> 7240 Virginia
#> 7241 Washington
#> 7242 West Virginia
#> 7243 Wisconsin
#> 7244 Wyoming
#> 7245 California
#> 7246 Hawaii
#> 7247 Illinois
#> 7248 Maryland
#> 7249 Massachusetts
#> 7250 Minnesota
#> 7251 New York
#> 7252 South Carolina
#> 7253 Arizona
#> 7254 Hawaii
#> 7255 Illinois
#> 7256 Maine
#> 7257 Massachusetts
#> 7258 Minnesota
#> 7259 Mississippi
#> 7260 Nevada
#> 7261 Oregon
#> 7262 Pennsylvania
#> 7263 South Carolina
#> 7264 Alabama
#> 7265 Arizona
#> 7266 California
#> 7267 Colorado
#> 7268 Connecticut
#> 7269 Delaware
#> 7270 Florida
#> 7271 Georgia
#> 7272 Idaho
#> 7273 Illinois
#> 7274 Iowa
#> 7275 Kansas
#> 7276 Kentucky
#> 7277 Louisiana
#> 7278 Maine
#> 7279 Maryland
#> 7280 Massachusetts
#> 7281 Michigan
#> 7282 Minnesota
#> 7283 Mississippi
#> 7284 Missouri
#> 7285 Montana
#> 7286 Nevada
#> 7287 New Hampshire
#> 7288 New Jersey
#> 7289 New York
#> 7290 North Carolina
#> 7291 North Dakota
#> 7292 Ohio
#> 7293 Oklahoma
#> 7294 Oregon
#> 7295 Pennsylvania
#> 7296 Rhode Island
#> 7297 South Dakota
#> 7298 Tennessee
#> 7299 Texas
#> 7300 Utah
#> 7301 Vermont
#> 7302 Virginia
#> 7303 Washington
#> 7304 West Virginia
#> 7305 Wisconsin
#> 7306 Alabama
#> 7307 Alaska
#> 7308 Arizona
#> 7309 California
#> 7310 Colorado
#> 7311 Connecticut
#> 7312 Delaware
#> 7313 Florida
#> 7314 Georgia
#> 7315 Hawaii
#> 7316 Idaho
#> 7317 Illinois
#> 7318 Iowa
#> 7319 Kansas
#> 7320 Kentucky
#> 7321 Louisiana
#> 7322 Maine
#> 7323 Maryland
#> 7324 Massachusetts
#> 7325 Michigan
#> 7326 Minnesota
#> 7327 Mississippi
#> 7328 Missouri
#> 7329 Montana
#> 7330 Nebraska
#> 7331 Nevada
#> 7332 New Hampshire
#> 7333 New Jersey
#> 7334 New Mexico
#> 7335 New York
#> 7336 North Carolina
#> 7337 North Dakota
#> 7338 Ohio
#> 7339 Oklahoma
#> 7340 Oregon
#> 7341 Pennsylvania
#> 7342 Rhode Island
#> 7343 South Dakota
#> 7344 Tennessee
#> 7345 Texas
#> 7346 Utah
#> 7347 Vermont
#> 7348 Virginia
#> 7349 Washington
#> 7350 West Virginia
#> 7351 Wisconsin
#> 7352 Alabama
#> 7353 Arizona
#> 7354 Arkansas
#> 7355 California
#> 7356 Colorado
#> 7357 Connecticut
#> 7358 Delaware
#> 7359 Florida
#> 7360 Georgia
#> 7361 Idaho
#> 7362 Illinois
#> 7363 Indiana
#> 7364 Iowa
#> 7365 Kansas
#> 7366 Kentucky
#> 7367 Louisiana
#> 7368 Maine
#> 7369 Maryland
#> 7370 Massachusetts
#> 7371 Michigan
#> 7372 Minnesota
#> 7373 Mississippi
#> 7374 Missouri
#> 7375 Nebraska
#> 7376 Nevada
#> 7377 New Hampshire
#> 7378 New Jersey
#> 7379 New York
#> 7380 North Carolina
#> 7381 North Dakota
#> 7382 Ohio
#> 7383 Oklahoma
#> 7384 Oregon
#> 7385 Pennsylvania
#> 7386 Rhode Island
#> 7387 South Carolina
#> 7388 Tennessee
#> 7389 Texas
#> 7390 Utah
#> 7391 Vermont
#> 7392 Washington
#> 7393 West Virginia
#> 7394 Wisconsin
#> 7395 Alabama
#> 7396 Arizona
#> 7397 Arkansas
#> 7398 Connecticut
#> 7399 Delaware
#> 7400 Florida
#> 7401 Georgia
#> 7402 Idaho
#> 7403 Indiana
#> 7404 Iowa
#> 7405 Louisiana
#> 7406 Mississippi
#> 7407 Missouri
#> 7408 Nebraska
#> 7409 New Hampshire
#> 7410 North Dakota
#> 7411 South Carolina
#> 7412 South Dakota
#> 7413 Texas
#> 7414 Utah
#> 7415 Washington
#> 7416 West Virginia
#> 7417 Wisconsin
#> 7418 Alabama
#> 7419 Georgia
#> 7420 Indiana
#> 7421 Kansas
#> 7422 Missouri
#> 7423 Oklahoma
#> 7424 South Carolina
#> 7425 Texas
#> 7426 Utah
#> 7427 Alaska
#> 7428 Delaware
#> 7429 Hawaii
#> 7430 Maine
#> 7431 Mississippi
#> 7432 New Mexico
#> 7433 Wyoming
#> 7434 Montana
#> 7435 Washington
#> 7436 Alabama
#> 7437 Alaska
#> 7438 Arizona
#> 7439 Arkansas
#> 7440 California
#> 7441 Colorado
#> 7442 Connecticut
#> 7443 Delaware
#> 7444 Florida
#> 7445 Georgia
#> 7446 Hawaii
#> 7447 Idaho
#> 7448 Indiana
#> 7449 Kansas
#> 7450 Kentucky
#> 7451 Louisiana
#> 7452 Maine
#> 7453 Maryland
#> 7454 Massachusetts
#> 7455 Michigan
#> 7456 Minnesota
#> 7457 Mississippi
#> 7458 Missouri
#> 7459 Montana
#> 7460 Nebraska
#> 7461 Nevada
#> 7462 New Hampshire
#> 7463 New Jersey
#> 7464 New Mexico
#> 7465 New York
#> 7466 North Carolina
#> 7467 North Dakota
#> 7468 Ohio
#> 7469 Oklahoma
#> 7470 Oregon
#> 7471 Pennsylvania
#> 7472 Rhode Island
#> 7473 South Carolina
#> 7474 South Dakota
#> 7475 Tennessee
#> 7476 Texas
#> 7477 Utah
#> 7478 Vermont
#> 7479 Virginia
#> 7480 Washington
#> 7481 West Virginia
#> 7482 Wisconsin
#> 7483 Wyoming
#> 7484 Alabama
#> 7485 Alaska
#> 7486 California
#> 7487 Georgia
#> 7488 Kentucky
#> 7489 Louisiana
#> 7490 Maine
#> 7491 Maryland
#> 7492 Massachusetts
#> 7493 Michigan
#> 7494 Minnesota
#> 7495 Mississippi
#> 7496 Missouri
#> 7497 Nebraska
#> 7498 Nevada
#> 7499 New Jersey
#> 7500 New York
#> 7501 North Carolina
#> 7502 Ohio
#> 7503 Oregon
#> 7504 Pennsylvania
#> 7505 Rhode Island
#> 7506 Tennessee
#> 7507 Vermont
#> 7508 Virginia
#> 7509 Washington
#> 7510 West Virginia
#> 7511 Wisconsin
#> 7512 Alabama
#> 7513 Alaska
#> 7514 California
#> 7515 Georgia
#> 7516 Kentucky
#> 7517 Louisiana
#> 7518 Maine
#> 7519 Maryland
#> 7520 Massachusetts
#> 7521 Michigan
#> 7522 Mississippi
#> 7523 Missouri
#> 7524 Nebraska
#> 7525 Nevada
#> 7526 New Jersey
#> 7527 New York
#> 7528 North Carolina
#> 7529 North Dakota
#> 7530 Ohio
#> 7531 Oregon
#> 7532 Pennsylvania
#> 7533 Rhode Island
#> 7534 South Carolina
#> 7535 Tennessee
#> 7536 Vermont
#> 7537 Virginia
#> 7538 Washington
#> 7539 West Virginia
#> 7540 Alaska
#> 7541 Arizona
#> 7542 California
#> 7543 Colorado
#> 7544 Connecticut
#> 7545 Delaware
#> 7546 Florida
#> 7547 Idaho
#> 7548 Iowa
#> 7549 Kansas
#> 7550 Kentucky
#> 7551 Maine
#> 7552 Maryland
#> 7553 Massachusetts
#> 7554 Minnesota
#> 7555 Mississippi
#> 7556 Missouri
#> 7557 Montana
#> 7558 Nebraska
#> 7559 New Hampshire
#> 7560 New Jersey
#> 7561 New York
#> 7562 North Carolina
#> 7563 North Dakota
#> 7564 Ohio
#> 7565 Oklahoma
#> 7566 Oregon
#> 7567 Rhode Island
#> 7568 South Carolina
#> 7569 Tennessee
#> 7570 Texas
#> 7571 Vermont
#> 7572 Virginia
#> 7573 Washington
#> 7574 Wisconsin
#> 7575 Wyoming
#> 7576 Alaska
#> 7577 Arizona
#> 7578 Arkansas
#> 7579 California
#> 7580 Colorado
#> 7581 Connecticut
#> 7582 Delaware
#> 7583 Florida
#> 7584 Georgia
#> 7585 Idaho
#> 7586 Illinois
#> 7587 Indiana
#> 7588 Iowa
#> 7589 Kansas
#> 7590 Kentucky
#> 7591 Louisiana
#> 7592 Maine
#> 7593 Maryland
#> 7594 Massachusetts
#> 7595 Minnesota
#> 7596 Mississippi
#> 7597 Missouri
#> 7598 Montana
#> 7599 Nebraska
#> 7600 Nevada
#> 7601 New Hampshire
#> 7602 New Jersey
#> 7603 New Mexico
#> 7604 New York
#> 7605 North Carolina
#> 7606 North Dakota
#> 7607 Ohio
#> 7608 Oklahoma
#> 7609 Oregon
#> 7610 Rhode Island
#> 7611 South Carolina
#> 7612 South Dakota
#> 7613 Tennessee
#> 7614 Texas
#> 7615 Utah
#> 7616 Virginia
#> 7617 Washington
#> 7618 West Virginia
#> 7619 Wisconsin
#> 7620 Wyoming
#> 7621 Alaska
#> 7622 Arizona
#> 7623 California
#> 7624 Colorado
#> 7625 Connecticut
#> 7626 Delaware
#> 7627 Florida
#> 7628 Georgia
#> 7629 Idaho
#> 7630 Illinois
#> 7631 Iowa
#> 7632 Kansas
#> 7633 Kentucky
#> 7634 Louisiana
#> 7635 Maine
#> 7636 Maryland
#> 7637 Massachusetts
#> 7638 Minnesota
#> 7639 Mississippi
#> 7640 Missouri
#> 7641 Montana
#> 7642 Nebraska
#> 7643 Nevada
#> 7644 New Hampshire
#> 7645 New Jersey
#> 7646 New Mexico
#> 7647 New York
#> 7648 North Carolina
#> 7649 North Dakota
#> 7650 Ohio
#> 7651 Oklahoma
#> 7652 Oregon
#> 7653 Rhode Island
#> 7654 South Carolina
#> 7655 Tennessee
#> 7656 Texas
#> 7657 Utah
#> 7658 Vermont
#> 7659 Virginia
#> 7660 Washington
#> 7661 West Virginia
#> 7662 Wisconsin
#> 7663 Wyoming
#> 7664 Alaska
#> 7665 Arizona
#> 7666 California
#> 7667 Colorado
#> 7668 Connecticut
#> 7669 Delaware
#> 7670 Florida
#> 7671 Idaho
#> 7672 Illinois
#> 7673 Iowa
#> 7674 Kansas
#> 7675 Kentucky
#> 7676 Maine
#> 7677 Maryland
#> 7678 Massachusetts
#> 7679 Minnesota
#> 7680 Mississippi
#> 7681 Missouri
#> 7682 Montana
#> 7683 Nebraska
#> 7684 New Hampshire
#> 7685 New Jersey
#> 7686 New Mexico
#> 7687 New York
#> 7688 North Carolina
#> 7689 North Dakota
#> 7690 Ohio
#> 7691 Oklahoma
#> 7692 Oregon
#> 7693 Rhode Island
#> 7694 South Carolina
#> 7695 Tennessee
#> 7696 Texas
#> 7697 Utah
#> 7698 Vermont
#> 7699 Virginia
#> 7700 Washington
#> 7701 Wisconsin
#> 7702 Wyoming
#> 7703 Alabama
#> 7704 Arkansas
#> 7705 Georgia
#> 7706 Illinois
#> 7707 Iowa
#> 7708 Kansas
#> 7709 Louisiana
#> 7710 Maine
#> 7711 Minnesota
#> 7712 Missouri
#> 7713 Montana
#> 7714 New Jersey
#> 7715 New Mexico
#> 7716 North Carolina
#> 7717 Ohio
#> 7718 Rhode Island
#> 7719 South Carolina
#> 7720 Tennessee
#> 7721 Texas
#> 7722 Vermont
#> 7723 Virginia
#> 7724 West Virginia
#> 7725 Wyoming
#> 7726 Alaska
#> 7727 Colorado
#> 7728 Hawaii
#> 7729 Illinois
#> 7730 Indiana
#> 7731 Kansas
#> 7732 Louisiana
#> 7733 Maine
#> 7734 Mississippi
#> 7735 Montana
#> 7736 Nebraska
#> 7737 New Mexico
#> 7738 North Carolina
#> 7739 North Dakota
#> 7740 Ohio
#> 7741 Rhode Island
#> 7742 South Carolina
#> 7743 Texas
#> 7744 Vermont
#> 7745 Virginia
#> 7746 West Virginia
#> 7747 Wyoming
#> 7748 Alabama
#> 7749 Alaska
#> 7750 Arizona
#> 7751 Arkansas
#> 7752 Connecticut
#> 7753 Florida
#> 7754 Hawaii
#> 7755 Illinois
#> 7756 Kansas
#> 7757 Maine
#> 7758 Maryland
#> 7759 Massachusetts
#> 7760 Michigan
#> 7761 Missouri
#> 7762 New Hampshire
#> 7763 New Jersey
#> 7764 Ohio
#> 7765 Oklahoma
#> 7766 Oregon
#> 7767 Pennsylvania
#> 7768 Rhode Island
#> 7769 South Carolina
#> 7770 Tennessee
#> 7771 Utah
#> 7772 Washington
#> 7773 Wisconsin
#> 7774 Wyoming
#> 7775 Alabama
#> 7776 Alaska
#> 7777 Arizona
#> 7778 California
#> 7779 Florida
#> 7780 Georgia
#> 7781 Hawaii
#> 7782 Indiana
#> 7783 Louisiana
#> 7784 Maryland
#> 7785 Massachusetts
#> 7786 Minnesota
#> 7787 Mississippi
#> 7788 Nevada
#> 7789 New Jersey
#> 7790 New Mexico
#> 7791 New York
#> 7792 North Carolina
#> 7793 Ohio
#> 7794 South Carolina
#> 7795 Tennessee
#> 7796 Texas
#> 7797 Utah
#> 7798 Virginia
#> 7799 Washington
#> 7800 Wisconsin
#> 7801 Alaska
#> 7802 Arizona
#> 7803 Arkansas
#> 7804 California
#> 7805 Colorado
#> 7806 Connecticut
#> 7807 Delaware
#> 7808 Florida
#> 7809 Georgia
#> 7810 Idaho
#> 7811 Illinois
#> 7812 Indiana
#> 7813 Iowa
#> 7814 Kansas
#> 7815 Kentucky
#> 7816 Louisiana
#> 7817 Maine
#> 7818 Maryland
#> 7819 Michigan
#> 7820 Minnesota
#> 7821 Mississippi
#> 7822 Missouri
#> 7823 Montana
#> 7824 Nebraska
#> 7825 Nevada
#> 7826 New Jersey
#> 7827 New Mexico
#> 7828 New York
#> 7829 North Carolina
#> 7830 Oklahoma
#> 7831 Oregon
#> 7832 Pennsylvania
#> 7833 Rhode Island
#> 7834 South Carolina
#> 7835 Tennessee
#> 7836 Texas
#> 7837 Utah
#> 7838 Washington
#> 7839 Wisconsin
#> 7840 California
#> 7841 Colorado
#> 7842 Connecticut
#> 7843 Delaware
#> 7844 Illinois
#> 7845 Indiana
#> 7846 Kansas
#> 7847 Maryland
#> 7848 Massachusetts
#> 7849 Michigan
#> 7850 Minnesota
#> 7851 Missouri
#> 7852 New Jersey
#> 7853 New Mexico
#> 7854 New York
#> 7855 Ohio
#> 7856 Oklahoma
#> 7857 Oregon
#> 7858 Pennsylvania
#> 7859 Rhode Island
#> 7860 Washington
#> 7861 Wisconsin
#> 7862 Alabama
#> 7863 Arizona
#> 7864 Arkansas
#> 7865 California
#> 7866 Colorado
#> 7867 Connecticut
#> 7868 Delaware
#> 7869 Florida
#> 7870 Georgia
#> 7871 Idaho
#> 7872 Illinois
#> 7873 Indiana
#> 7874 Iowa
#> 7875 Kansas
#> 7876 Kentucky
#> 7877 Louisiana
#> 7878 Maine
#> 7879 Maryland
#> 7880 Massachusetts
#> 7881 Michigan
#> 7882 Minnesota
#> 7883 Mississippi
#> 7884 Missouri
#> 7885 Montana
#> 7886 Nebraska
#> 7887 Nevada
#> 7888 New Hampshire
#> 7889 New Jersey
#> 7890 New Mexico
#> 7891 New York
#> 7892 North Carolina
#> 7893 North Dakota
#> 7894 Ohio
#> 7895 Oklahoma
#> 7896 Oregon
#> 7897 Pennsylvania
#> 7898 Rhode Island
#> 7899 South Carolina
#> 7900 South Dakota
#> 7901 Tennessee
#> 7902 Texas
#> 7903 Utah
#> 7904 Vermont
#> 7905 Virginia
#> 7906 Washington
#> 7907 West Virginia
#> 7908 Wisconsin
#> 7909 Wyoming
#> 7910 Arizona
#> 7911 Arkansas
#> 7912 Colorado
#> 7913 Connecticut
#> 7914 Florida
#> 7915 Georgia
#> 7916 Hawaii
#> 7917 Illinois
#> 7918 Indiana
#> 7919 Iowa
#> 7920 Kansas
#> 7921 Kentucky
#> 7922 Maine
#> 7923 Maryland
#> 7924 Michigan
#> 7925 Minnesota
#> 7926 Montana
#> 7927 Nevada
#> 7928 New Jersey
#> 7929 New Mexico
#> 7930 North Carolina
#> 7931 Ohio
#> 7932 Oklahoma
#> 7933 Oregon
#> 7934 Pennsylvania
#> 7935 Rhode Island
#> 7936 South Carolina
#> 7937 Tennessee
#> 7938 Texas
#> 7939 Utah
#> 7940 Vermont
#> 7941 Virginia
#> 7942 Washington
#> 7943 West Virginia
#> 7944 Wisconsin
#> 7945 Alabama
#> 7946 Alaska
#> 7947 Arizona
#> 7948 Arkansas
#> 7949 Florida
#> 7950 Georgia
#> 7951 Idaho
#> 7952 Illinois
#> 7953 Indiana
#> 7954 Iowa
#> 7955 Kansas
#> 7956 Kentucky
#> 7957 Louisiana
#> 7958 Michigan
#> 7959 Mississippi
#> 7960 Missouri
#> 7961 Montana
#> 7962 Nebraska
#> 7963 New Jersey
#> 7964 New Mexico
#> 7965 North Dakota
#> 7966 Ohio
#> 7967 Oklahoma
#> 7968 Rhode Island
#> 7969 South Carolina
#> 7970 South Dakota
#> 7971 Tennessee
#> 7972 Utah
#> 7973 Virginia
#> 7974 West Virginia
#> 7975 Wisconsin
#> 7976 Alabama
#> 7977 Alaska
#> 7978 Arizona
#> 7979 Arkansas
#> 7980 California
#> 7981 Colorado
#> 7982 Connecticut
#> 7983 Delaware
#> 7984 Florida
#> 7985 Georgia
#> 7986 Hawaii
#> 7987 Idaho
#> 7988 Illinois
#> 7989 Indiana
#> 7990 Iowa
#> 7991 Kansas
#> 7992 Kentucky
#> 7993 Louisiana
#> 7994 Maine
#> 7995 Maryland
#> 7996 Massachusetts
#> 7997 Michigan
#> 7998 Minnesota
#> 7999 Mississippi
#> 8000 Missouri
#> 8001 Montana
#> 8002 Nebraska
#> 8003 Nevada
#> 8004 New Hampshire
#> 8005 New Jersey
#> 8006 New Mexico
#> 8007 New York
#> 8008 North Carolina
#> 8009 North Dakota
#> 8010 Ohio
#> 8011 Oklahoma
#> 8012 Oregon
#> 8013 Pennsylvania
#> 8014 Rhode Island
#> 8015 South Carolina
#> 8016 South Dakota
#> 8017 Tennessee
#> 8018 Texas
#> 8019 Utah
#> 8020 Vermont
#> 8021 Virginia
#> 8022 Washington
#> 8023 West Virginia
#> 8024 Wisconsin
#> 8025 Wyoming
#> 8026 Alabama
#> 8027 Alaska
#> 8028 Arizona
#> 8029 Arkansas
#> 8030 California
#> 8031 Colorado
#> 8032 Connecticut
#> 8033 Delaware
#> 8034 Florida
#> 8035 Georgia
#> 8036 Hawaii
#> 8037 Idaho
#> 8038 Illinois
#> 8039 Indiana
#> 8040 Iowa
#> 8041 Kansas
#> 8042 Kentucky
#> 8043 Louisiana
#> 8044 Maine
#> 8045 Maryland
#> 8046 Massachusetts
#> 8047 Michigan
#> 8048 Minnesota
#> 8049 Mississippi
#> 8050 Missouri
#> 8051 Montana
#> 8052 Nebraska
#> 8053 Nevada
#> 8054 New Hampshire
#> 8055 New Jersey
#> 8056 New Mexico
#> 8057 New York
#> 8058 North Carolina
#> 8059 North Dakota
#> 8060 Ohio
#> 8061 Oklahoma
#> 8062 Oregon
#> 8063 Pennsylvania
#> 8064 Rhode Island
#> 8065 South Carolina
#> 8066 South Dakota
#> 8067 Tennessee
#> 8068 Texas
#> 8069 Utah
#> 8070 Vermont
#> 8071 Virginia
#> 8072 Washington
#> 8073 West Virginia
#> 8074 Wisconsin
#> 8075 Wyoming
#> 8076 Alabama
#> 8077 Alaska
#> 8078 Arizona
#> 8079 Arkansas
#> 8080 California
#> 8081 Colorado
#> 8082 Florida
#> 8083 Georgia
#> 8084 Hawaii
#> 8085 Idaho
#> 8086 Illinois
#> 8087 Indiana
#> 8088 Iowa
#> 8089 Kansas
#> 8090 Kentucky
#> 8091 Louisiana
#> 8092 Massachusetts
#> 8093 Mississippi
#> 8094 Missouri
#> 8095 Montana
#> 8096 Nebraska
#> 8097 New Hampshire
#> 8098 North Carolina
#> 8099 North Dakota
#> 8100 Oklahoma
#> 8101 South Carolina
#> 8102 South Dakota
#> 8103 Tennessee
#> 8104 Utah
#> 8105 Virginia
#> 8106 Wyoming
#> 8107 Colorado
#> 8108 Connecticut
#> 8109 Hawaii
#> 8110 Illinois
#> 8111 Kansas
#> 8112 Maryland
#> 8113 Michigan
#> 8114 Minnesota
#> 8115 Nebraska
#> 8116 New Jersey
#> 8117 New Mexico
#> 8118 New York
#> 8119 Oklahoma
#> 8120 Oregon
#> 8121 Texas
#> 8122 Utah
#> 8123 Washington
#> 8124 Wisconsin
#> 8125 Alabama
#> 8126 Arizona
#> 8127 Arkansas
#> 8128 California
#> 8129 Colorado
#> 8130 Delaware
#> 8131 Georgia
#> 8132 Idaho
#> 8133 Iowa
#> 8134 Kansas
#> 8135 Kentucky
#> 8136 Louisiana
#> 8137 Maryland
#> 8138 Massachusetts
#> 8139 Minnesota
#> 8140 Missouri
#> 8141 Montana
#> 8142 New Hampshire
#> 8143 New Mexico
#> 8144 New York
#> 8145 North Carolina
#> 8146 North Dakota
#> 8147 Oregon
#> 8148 South Carolina
#> 8149 Tennessee
#> 8150 Utah
#> 8151 Vermont
#> 8152 Virginia
#> 8153 Arizona
#> 8154 California
#> 8155 Colorado
#> 8156 Connecticut
#> 8157 Idaho
#> 8158 Iowa
#> 8159 Kansas
#> 8160 Louisiana
#> 8161 Michigan
#> 8162 Minnesota
#> 8163 Mississippi
#> 8164 Montana
#> 8165 Nebraska
#> 8166 Nevada
#> 8167 New Mexico
#> 8168 New York
#> 8169 North Carolina
#> 8170 North Dakota
#> 8171 Oklahoma
#> 8172 Oregon
#> 8173 Rhode Island
#> 8174 South Dakota
#> 8175 Washington
#> 8176 Wisconsin
#> 8177 Alabama
#> 8178 Alaska
#> 8179 Arizona
#> 8180 Arkansas
#> 8181 California
#> 8182 Colorado
#> 8183 Connecticut
#> 8184 Delaware
#> 8185 Florida
#> 8186 Georgia
#> 8187 Hawaii
#> 8188 Idaho
#> 8189 Illinois
#> 8190 Indiana
#> 8191 Iowa
#> 8192 Kansas
#> 8193 Kentucky
#> 8194 Louisiana
#> 8195 Maine
#> 8196 Maryland
#> 8197 Massachusetts
#> 8198 Michigan
#> 8199 Minnesota
#> 8200 Mississippi
#> 8201 Missouri
#> 8202 Montana
#> 8203 Nebraska
#> 8204 Nevada
#> 8205 New Hampshire
#> 8206 New Jersey
#> 8207 New Mexico
#> 8208 New York
#> 8209 North Carolina
#> 8210 North Dakota
#> 8211 Ohio
#> 8212 Oklahoma
#> 8213 Oregon
#> 8214 Pennsylvania
#> 8215 Rhode Island
#> 8216 South Carolina
#> 8217 South Dakota
#> 8218 Tennessee
#> 8219 Texas
#> 8220 Utah
#> 8221 Vermont
#> 8222 Virginia
#> 8223 Washington
#> 8224 West Virginia
#> 8225 Wisconsin
#> 8226 Wyoming
#> 8227 Arkansas
#> 8228 Connecticut
#> 8229 Georgia
#> 8230 Illinois
#> 8231 Indiana
#> 8232 Iowa
#> 8233 Maine
#> 8234 Maryland
#> 8235 New Hampshire
#> 8236 New York
#> 8237 Oklahoma
#> 8238 Pennsylvania
#> 8239 West Virginia
#> 8240 Wisconsin
#> 8241 Arizona
#> 8242 Arkansas
#> 8243 California
#> 8244 Colorado
#> 8245 Connecticut
#> 8246 Delaware
#> 8247 Florida
#> 8248 Georgia
#> 8249 Hawaii
#> 8250 Illinois
#> 8251 Indiana
#> 8252 Iowa
#> 8253 Kansas
#> 8254 Kentucky
#> 8255 Louisiana
#> 8256 Maine
#> 8257 Maryland
#> 8258 Massachusetts
#> 8259 Michigan
#> 8260 Minnesota
#> 8261 Mississippi
#> 8262 Missouri
#> 8263 Montana
#> 8264 Nebraska
#> 8265 Nevada
#> 8266 New Hampshire
#> 8267 New Jersey
#> 8268 New Mexico
#> 8269 New York
#> 8270 North Carolina
#> 8271 Ohio
#> 8272 Oklahoma
#> 8273 Oregon
#> 8274 Pennsylvania
#> 8275 Rhode Island
#> 8276 South Carolina
#> 8277 Tennessee
#> 8278 Texas
#> 8279 Utah
#> 8280 Virginia
#> 8281 West Virginia
#> 8282 Wisconsin
#> 8283 Wyoming
#> 8284 Alabama
#> 8285 Alaska
#> 8286 Arizona
#> 8287 Arkansas
#> 8288 California
#> 8289 Connecticut
#> 8290 Delaware
#> 8291 Florida
#> 8292 Georgia
#> 8293 Idaho
#> 8294 Illinois
#> 8295 Indiana
#> 8296 Kansas
#> 8297 Kentucky
#> 8298 Louisiana
#> 8299 Maine
#> 8300 Maryland
#> 8301 Massachusetts
#> 8302 Michigan
#> 8303 Minnesota
#> 8304 Mississippi
#> 8305 Missouri
#> 8306 Montana
#> 8307 Nebraska
#> 8308 Nevada
#> 8309 North Carolina
#> 8310 North Dakota
#> 8311 Ohio
#> 8312 Oklahoma
#> 8313 Pennsylvania
#> 8314 Rhode Island
#> 8315 South Carolina
#> 8316 South Dakota
#> 8317 Tennessee
#> 8318 Texas
#> 8319 Utah
#> 8320 Vermont
#> 8321 Virginia
#> 8322 West Virginia
#> 8323 Wisconsin
#> 8324 Arkansas
#> 8325 California
#> 8326 Connecticut
#> 8327 Hawaii
#> 8328 Illinois
#> 8329 Maryland
#> 8330 Massachusetts
#> 8331 Montana
#> 8332 New Jersey
#> 8333 New York
#> 8334 Ohio
#> 8335 Rhode Island
#> 8336 Texas
#> 8337 West Virginia
#> 8338 Hawaii
#> 8339 Arizona
#> 8340 Arkansas
#> 8341 California
#> 8342 Colorado
#> 8343 Idaho
#> 8344 Maine
#> 8345 Massachusetts
#> 8346 Michigan
#> 8347 Mississippi
#> 8348 Missouri
#> 8349 Montana
#> 8350 Nebraska
#> 8351 Nevada
#> 8352 North Dakota
#> 8353 Ohio
#> 8354 Oklahoma
#> 8355 Oregon
#> 8356 South Dakota
#> 8357 Utah
#> 8358 Washington
#> 8359 Alabama
#> 8360 Arizona
#> 8361 Arkansas
#> 8362 Florida
#> 8363 Idaho
#> 8364 Indiana
#> 8365 Kansas
#> 8366 Louisiana
#> 8367 Michigan
#> 8368 Minnesota
#> 8369 Mississippi
#> 8370 Missouri
#> 8371 Nebraska
#> 8372 North Carolina
#> 8373 Ohio
#> 8374 Oklahoma
#> 8375 Pennsylvania
#> 8376 South Carolina
#> 8377 South Dakota
#> 8378 Tennessee
#> 8379 Utah
#> 8380 Vermont
#> 8381 Arizona
#> 8382 California
#> 8383 Colorado
#> 8384 Connecticut
#> 8385 Delaware
#> 8386 Georgia
#> 8387 Idaho
#> 8388 Illinois
#> 8389 Indiana
#> 8390 Iowa
#> 8391 Kansas
#> 8392 Kentucky
#> 8393 Louisiana
#> 8394 Maine
#> 8395 Maryland
#> 8396 Michigan
#> 8397 Minnesota
#> 8398 Montana
#> 8399 Nevada
#> 8400 New Hampshire
#> 8401 New Mexico
#> 8402 New York
#> 8403 North Dakota
#> 8404 Oregon
#> 8405 Pennsylvania
#> 8406 Rhode Island
#> 8407 South Carolina
#> 8408 South Dakota
#> 8409 Texas
#> 8410 Utah
#> 8411 Vermont
#> 8412 Washington
#> 8413 West Virginia
#> 8414 Wyoming
#> 8415 Alaska
#> 8416 Arizona
#> 8417 California
#> 8418 Colorado
#> 8419 Connecticut
#> 8420 Delaware
#> 8421 Georgia
#> 8422 Hawaii
#> 8423 Idaho
#> 8424 Illinois
#> 8425 Indiana
#> 8426 Iowa
#> 8427 Kansas
#> 8428 Kentucky
#> 8429 Louisiana
#> 8430 Maine
#> 8431 Maryland
#> 8432 Michigan
#> 8433 Minnesota
#> 8434 Montana
#> 8435 Nebraska
#> 8436 Nevada
#> 8437 New Hampshire
#> 8438 New Mexico
#> 8439 New York
#> 8440 North Dakota
#> 8441 Oregon
#> 8442 Pennsylvania
#> 8443 Rhode Island
#> 8444 South Carolina
#> 8445 South Dakota
#> 8446 Texas
#> 8447 Utah
#> 8448 Vermont
#> 8449 Washington
#> 8450 West Virginia
#> 8451 Wyoming
#> 8452 North Dakota
#> 8453 Alabama
#> 8454 Arizona
#> 8455 Arkansas
#> 8456 Florida
#> 8457 Idaho
#> 8458 Indiana
#> 8459 Kansas
#> 8460 Kentucky
#> 8461 Louisiana
#> 8462 Mississippi
#> 8463 Missouri
#> 8464 Nebraska
#> 8465 North Carolina
#> 8466 North Dakota
#> 8467 Ohio
#> 8468 Oklahoma
#> 8469 Pennsylvania
#> 8470 Rhode Island
#> 8471 South Carolina
#> 8472 South Dakota
#> 8473 Tennessee
#> 8474 Utah
#> 8475 Virginia
#> 8476 Wisconsin
#> 8477 Arkansas
#> 8478 Colorado
#> 8479 Idaho
#> 8480 Illinois
#> 8481 Kansas
#> 8482 Kentucky
#> 8483 Massachusetts
#> 8484 Michigan
#> 8485 Mississippi
#> 8486 Missouri
#> 8487 Nebraska
#> 8488 North Carolina
#> 8489 North Dakota
#> 8490 Ohio
#> 8491 Oklahoma
#> 8492 Pennsylvania
#> 8493 Rhode Island
#> 8494 South Carolina
#> 8495 Utah
#> 8496 Virginia
#> 8497 Wisconsin
#> 8498 California
#> 8499 Illinois
#> 8500 Kansas
#> 8501 Nebraska
#> 8502 New Mexico
#> 8503 New York
#> 8504 Oklahoma
#> 8505 Texas
#> 8506 Utah
#> 8507 Washington
#> 8508 Wisconsin
#> 8509 Alaska
#> 8510 Arizona
#> 8511 Delaware
#> 8512 Iowa
#> 8513 New Mexico
#> 8514 North Dakota
#> 8515 Ohio
#> 8516 Texas
#> 8517 Colorado
#> 8518 Kansas
#> 8519 Michigan
#> 8520 New Mexico
#> 8521 North Carolina
#> 8522 North Dakota
#> 8523 Wyoming
#> 8524 Idaho
#> 8525 Kansas
#> 8526 Kentucky
#> 8527 Missouri
#> 8528 Virginia
#> 8529 Alabama
#> 8530 Arizona
#> 8531 Arkansas
#> 8532 California
#> 8533 Florida
#> 8534 Idaho
#> 8535 Kentucky
#> 8536 Louisiana
#> 8537 Michigan
#> 8538 Mississippi
#> 8539 Missouri
#> 8540 Nebraska
#> 8541 Nevada
#> 8542 New Mexico
#> 8543 North Carolina
#> 8544 North Dakota
#> 8545 Oklahoma
#> 8546 Oregon
#> 8547 South Dakota
#> 8548 Texas
#> 8549 Utah
#> 8550 Virginia
#> 8551 Washington
#> 8552 West Virginia
#> 8553 Wisconsin
#> 8554 Wyoming
#> 8555 Maine
#> 8556 New Hampshire
#> 8557 New Jersey
#> 8558 New York
#> 8559 Pennsylvania
#> 8560 Colorado
#> 8561 Connecticut
#> 8562 Idaho
#> 8563 Iowa
#> 8564 Kentucky
#> 8565 Massachusetts
#> 8566 Michigan
#> 8567 Nebraska
#> 8568 North Dakota
#> 8569 Ohio
#> 8570 South Carolina
#> 8571 Texas
#> 8572 Utah
#> 8573 Vermont
#> 8574 Virginia
#> 8575 Alabama
#> 8576 Alaska
#> 8577 Arizona
#> 8578 Arkansas
#> 8579 California
#> 8580 Colorado
#> 8581 Connecticut
#> 8582 Delaware
#> 8583 Florida
#> 8584 Georgia
#> 8585 Hawaii
#> 8586 Idaho
#> 8587 Illinois
#> 8588 Indiana
#> 8589 Iowa
#> 8590 Kansas
#> 8591 Kentucky
#> 8592 Maine
#> 8593 Maryland
#> 8594 Massachusetts
#> 8595 Michigan
#> 8596 Minnesota
#> 8597 Mississippi
#> 8598 Missouri
#> 8599 Montana
#> 8600 Nebraska
#> 8601 Nevada
#> 8602 New Hampshire
#> 8603 New Jersey
#> 8604 New Mexico
#> 8605 New York
#> 8606 North Carolina
#> 8607 North Dakota
#> 8608 Ohio
#> 8609 Oklahoma
#> 8610 Oregon
#> 8611 Pennsylvania
#> 8612 Rhode Island
#> 8613 South Carolina
#> 8614 South Dakota
#> 8615 Tennessee
#> 8616 Texas
#> 8617 Utah
#> 8618 Vermont
#> 8619 Virginia
#> 8620 Washington
#> 8621 West Virginia
#> 8622 Wisconsin
#> 8623 Wyoming
#> 8624 Alabama
#> 8625 Alaska
#> 8626 Arizona
#> 8627 Arkansas
#> 8628 California
#> 8629 Colorado
#> 8630 Connecticut
#> 8631 Delaware
#> 8632 Florida
#> 8633 Georgia
#> 8634 Hawaii
#> 8635 Idaho
#> 8636 Illinois
#> 8637 Indiana
#> 8638 Iowa
#> 8639 Kansas
#> 8640 Kentucky
#> 8641 Maine
#> 8642 Maryland
#> 8643 Massachusetts
#> 8644 Michigan
#> 8645 Minnesota
#> 8646 Mississippi
#> 8647 Missouri
#> 8648 Montana
#> 8649 Nebraska
#> 8650 Nevada
#> 8651 New Hampshire
#> 8652 New Jersey
#> 8653 New Mexico
#> 8654 New York
#> 8655 North Carolina
#> 8656 North Dakota
#> 8657 Ohio
#> 8658 Oklahoma
#> 8659 Oregon
#> 8660 Pennsylvania
#> 8661 Rhode Island
#> 8662 South Carolina
#> 8663 South Dakota
#> 8664 Tennessee
#> 8665 Texas
#> 8666 Utah
#> 8667 Vermont
#> 8668 Virginia
#> 8669 Washington
#> 8670 West Virginia
#> 8671 Wisconsin
#> 8672 Wyoming
#> 8673 Connecticut
#> 8674 New Jersey
#> 8675 Pennsylvania
#> 8676 Alabama
#> 8677 Delaware
#> 8678 Indiana
#> 8679 Maine
#> 8680 Mississippi
#> 8681 Missouri
#> 8682 Montana
#> 8683 Nebraska
#> 8684 New Hampshire
#> 8685 West Virginia
#> 8686 Colorado
#> 8687 Kansas
#> 8688 Alabama
#> 8689 Alaska
#> 8690 Arizona
#> 8691 Arkansas
#> 8692 California
#> 8693 Colorado
#> 8694 Connecticut
#> 8695 Delaware
#> 8696 Florida
#> 8697 Georgia
#> 8698 Hawaii
#> 8699 Idaho
#> 8700 Illinois
#> 8701 Indiana
#> 8702 Iowa
#> 8703 Kansas
#> 8704 Kentucky
#> 8705 Maine
#> 8706 Maryland
#> 8707 Massachusetts
#> 8708 Michigan
#> 8709 Minnesota
#> 8710 Mississippi
#> 8711 Missouri
#> 8712 Montana
#> 8713 Nebraska
#> 8714 Nevada
#> 8715 New Hampshire
#> 8716 New Jersey
#> 8717 New Mexico
#> 8718 New York
#> 8719 North Carolina
#> 8720 North Dakota
#> 8721 Ohio
#> 8722 Oklahoma
#> 8723 Oregon
#> 8724 Pennsylvania
#> 8725 Rhode Island
#> 8726 South Carolina
#> 8727 South Dakota
#> 8728 Tennessee
#> 8729 Texas
#> 8730 Utah
#> 8731 Vermont
#> 8732 Virginia
#> 8733 Washington
#> 8734 West Virginia
#> 8735 Wisconsin
#> 8736 Wyoming
#> 8737 Minnesota
#> 8738 New Jersey
#> 8739 North Dakota
#> 8740 Rhode Island
#> 8741 Arizona
#> 8742 California
#> 8743 Delaware
#> 8744 Florida
#> 8745 Kentucky
#> 8746 Maryland
#> 8747 Nebraska
#> 8748 New Jersey
#> 8749 New York
#> 8750 Ohio
#> 8751 Oklahoma
#> 8752 Virginia
#> 8753 Washington
#> 8754 West Virginia
#> 8755 Delaware
#> 8756 Illinois
#> 8757 Maine
#> 8758 Missouri
#> 8759 New Hampshire
#> 8760 New Mexico
#> 8761 North Dakota
#> 8762 West Virginia
#> 8763 Arizona
#> 8764 Alabama
#> 8765 Alaska
#> 8766 Arizona
#> 8767 Arkansas
#> 8768 California
#> 8769 Colorado
#> 8770 Florida
#> 8771 Illinois
#> 8772 Indiana
#> 8773 Kansas
#> 8774 Kentucky
#> 8775 Maryland
#> 8776 Michigan
#> 8777 Mississippi
#> 8778 Montana
#> 8779 Nebraska
#> 8780 Nevada
#> 8781 New Mexico
#> 8782 New York
#> 8783 North Dakota
#> 8784 Ohio
#> 8785 Oklahoma
#> 8786 Pennsylvania
#> 8787 South Dakota
#> 8788 Texas
#> 8789 Utah
#> 8790 Virginia
#> 8791 West Virginia
#> 8792 Wyoming
#> 8793 Alabama
#> 8794 Alaska
#> 8795 Arizona
#> 8796 Arkansas
#> 8797 California
#> 8798 Colorado
#> 8799 Connecticut
#> 8800 Delaware
#> 8801 Florida
#> 8802 Georgia
#> 8803 Idaho
#> 8804 Illinois
#> 8805 Indiana
#> 8806 Iowa
#> 8807 Kansas
#> 8808 Kentucky
#> 8809 Maine
#> 8810 Minnesota
#> 8811 Missouri
#> 8812 Montana
#> 8813 Nebraska
#> 8814 Nevada
#> 8815 New Jersey
#> 8816 New Mexico
#> 8817 New York
#> 8818 North Carolina
#> 8819 Ohio
#> 8820 Oklahoma
#> 8821 Oregon
#> 8822 Pennsylvania
#> 8823 South Carolina
#> 8824 Tennessee
#> 8825 Texas
#> 8826 Utah
#> 8827 Vermont
#> 8828 Virginia
#> 8829 Washington
#> 8830 Wisconsin
#> 8831 Alabama
#> 8832 Alaska
#> 8833 Arizona
#> 8834 California
#> 8835 Colorado
#> 8836 Delaware
#> 8837 Georgia
#> 8838 Hawaii
#> 8839 Idaho
#> 8840 Illinois
#> 8841 Indiana
#> 8842 Iowa
#> 8843 Kansas
#> 8844 Kentucky
#> 8845 Louisiana
#> 8846 Maryland
#> 8847 Michigan
#> 8848 Minnesota
#> 8849 Mississippi
#> 8850 Montana
#> 8851 Nevada
#> 8852 New Jersey
#> 8853 New Mexico
#> 8854 New York
#> 8855 North Carolina
#> 8856 North Dakota
#> 8857 Ohio
#> 8858 Oregon
#> 8859 Pennsylvania
#> 8860 South Carolina
#> 8861 South Dakota
#> 8862 Tennessee
#> 8863 Utah
#> 8864 Vermont
#> 8865 Virginia
#> 8866 Washington
#> 8867 Wisconsin
#> 8868 Indiana
#> 8869 Mississippi
#> 8870 Missouri
#> 8871 Tennessee
#> 8872 Alabama
#> 8873 California
#> 8874 Delaware
#> 8875 Idaho
#> 8876 Indiana
#> 8877 Kansas
#> 8878 Mississippi
#> 8879 Montana
#> 8880 Nebraska
#> 8881 New Mexico
#> 8882 North Dakota
#> 8883 Oklahoma
#> 8884 Rhode Island
#> 8885 South Carolina
#> 8886 South Dakota
#> 8887 Texas
#> 8888 Utah
#> 8889 Wisconsin
#> 8890 Alabama
#> 8891 Alaska
#> 8892 Arizona
#> 8893 Arkansas
#> 8894 California
#> 8895 Colorado
#> 8896 Connecticut
#> 8897 Delaware
#> 8898 Florida
#> 8899 Georgia
#> 8900 Hawaii
#> 8901 Idaho
#> 8902 Illinois
#> 8903 Indiana
#> 8904 Iowa
#> 8905 Kansas
#> 8906 Kentucky
#> 8907 Louisiana
#> 8908 Maine
#> 8909 Maryland
#> 8910 Massachusetts
#> 8911 Michigan
#> 8912 Minnesota
#> 8913 Mississippi
#> 8914 Missouri
#> 8915 Montana
#> 8916 Nebraska
#> 8917 Nevada
#> 8918 New Hampshire
#> 8919 New Jersey
#> 8920 New Mexico
#> 8921 New York
#> 8922 North Carolina
#> 8923 North Dakota
#> 8924 Ohio
#> 8925 Oklahoma
#> 8926 Oregon
#> 8927 Pennsylvania
#> 8928 Rhode Island
#> 8929 South Carolina
#> 8930 South Dakota
#> 8931 Tennessee
#> 8932 Texas
#> 8933 Utah
#> 8934 Vermont
#> 8935 Virginia
#> 8936 Washington
#> 8937 Wisconsin
#> 8938 Wyoming
#> 8939 Arizona
#> 8940 California
#> 8941 Colorado
#> 8942 Connecticut
#> 8943 Delaware
#> 8944 Idaho
#> 8945 Illinois
#> 8946 Maine
#> 8947 Mississippi
#> 8948 Nebraska
#> 8949 Nevada
#> 8950 New Mexico
#> 8951 Oklahoma
#> 8952 Rhode Island
#> 8953 South Carolina
#> 8954 Texas
#> 8955 Utah
#> 8956 Virginia
#> 8957 Washington
#> 8958 Wyoming
#> 8959 Alabama
#> 8960 Alaska
#> 8961 Arizona
#> 8962 Arkansas
#> 8963 California
#> 8964 Colorado
#> 8965 Connecticut
#> 8966 Delaware
#> 8967 Florida
#> 8968 Georgia
#> 8969 Hawaii
#> 8970 Idaho
#> 8971 Illinois
#> 8972 Indiana
#> 8973 Iowa
#> 8974 Kansas
#> 8975 Kentucky
#> 8976 Louisiana
#> 8977 Maine
#> 8978 Maryland
#> 8979 Massachusetts
#> 8980 Michigan
#> 8981 Minnesota
#> 8982 Mississippi
#> 8983 Missouri
#> 8984 Montana
#> 8985 Nebraska
#> 8986 Nevada
#> 8987 New Hampshire
#> 8988 New Jersey
#> 8989 New Mexico
#> 8990 New York
#> 8991 North Carolina
#> 8992 North Dakota
#> 8993 Ohio
#> 8994 Oklahoma
#> 8995 Oregon
#> 8996 Pennsylvania
#> 8997 Rhode Island
#> 8998 South Carolina
#> 8999 South Dakota
#> 9000 Tennessee
#> 9001 Texas
#> 9002 Utah
#> 9003 Vermont
#> 9004 Virginia
#> 9005 Washington
#> 9006 Wisconsin
#> 9007 Wyoming
#> 9008 Idaho
#> 9009 Oregon
#> 9010 Washington
#> 9011 Illinois
#> 9012 Indiana
#> 9013 Missouri
#> 9014 New York
#> 9015 Ohio
#> 9016 Pennsylvania
#> 9017 Alabama
#> 9018 Alaska
#> 9019 Arizona
#> 9020 Arkansas
#> 9021 Colorado
#> 9022 Georgia
#> 9023 Hawaii
#> 9024 Idaho
#> 9025 Illinois
#> 9026 Indiana
#> 9027 Iowa
#> 9028 Kansas
#> 9029 Kentucky
#> 9030 Maine
#> 9031 Maryland
#> 9032 Massachusetts
#> 9033 Michigan
#> 9034 Minnesota
#> 9035 Mississippi
#> 9036 Missouri
#> 9037 Montana
#> 9038 Nebraska
#> 9039 Nevada
#> 9040 New Hampshire
#> 9041 New Jersey
#> 9042 New Mexico
#> 9043 North Carolina
#> 9044 Ohio
#> 9045 Oklahoma
#> 9046 Oregon
#> 9047 Pennsylvania
#> 9048 Rhode Island
#> 9049 South Carolina
#> 9050 Tennessee
#> 9051 Texas
#> 9052 Utah
#> 9053 Vermont
#> 9054 Virginia
#> 9055 Washington
#> 9056 West Virginia
#> 9057 Wisconsin
#> 9058 Wyoming
#> 9059 Illinois
#> 9060 Michigan
#> 9061 Nebraska
#> 9062 Alabama
#> 9063 Arkansas
#> 9064 Colorado
#> 9065 Connecticut
#> 9066 Florida
#> 9067 Georgia
#> 9068 Idaho
#> 9069 Illinois
#> 9070 Indiana
#> 9071 Iowa
#> 9072 Kansas
#> 9073 Kentucky
#> 9074 Maine
#> 9075 Maryland
#> 9076 Massachusetts
#> 9077 Minnesota
#> 9078 Mississippi
#> 9079 Montana
#> 9080 New Hampshire
#> 9081 New Mexico
#> 9082 New York
#> 9083 North Carolina
#> 9084 North Dakota
#> 9085 Ohio
#> 9086 Oregon
#> 9087 Rhode Island
#> 9088 South Dakota
#> 9089 Tennessee
#> 9090 Vermont
#> 9091 Virginia
#> 9092 Washington
#> 9093 West Virginia
#> 9094 Wyoming
#> 9095 Alabama
#> 9096 Arizona
#> 9097 Colorado
#> 9098 Idaho
#> 9099 Illinois
#> 9100 Iowa
#> 9101 Kansas
#> 9102 Minnesota
#> 9103 Mississippi
#> 9104 Montana
#> 9105 Nevada
#> 9106 New Hampshire
#> 9107 South Dakota
#> 9108 Utah
#> 9109 West Virginia
#> 9110 Wisconsin
#> 9111 Wyoming
#> 9112 Arkansas
#> 9113 Illinois
#> 9114 Indiana
#> 9115 Kentucky
#> 9116 Maryland
#> 9117 Missouri
#> 9118 North Carolina
#> 9119 Ohio
#> 9120 Idaho
#> 9121 Montana
#> 9122 Georgia
#> 9123 Illinois
#> 9124 Indiana
#> 9125 Michigan
#> 9126 New York
#> 9127 Ohio
#> 9128 Tennessee
#> 9129 Arizona
#> 9130 Colorado
#> 9131 Montana
#> 9132 South Dakota
#> 9133 Alabama
#> 9134 Arizona
#> 9135 California
#> 9136 Colorado
#> 9137 Connecticut
#> 9138 Florida
#> 9139 Georgia
#> 9140 Idaho
#> 9141 Illinois
#> 9142 Iowa
#> 9143 Kansas
#> 9144 Kentucky
#> 9145 Louisiana
#> 9146 Massachusetts
#> 9147 Michigan
#> 9148 Minnesota
#> 9149 Mississippi
#> 9150 Missouri
#> 9151 Montana
#> 9152 Nebraska
#> 9153 New Jersey
#> 9154 New Mexico
#> 9155 New York
#> 9156 North Carolina
#> 9157 North Dakota
#> 9158 Oklahoma
#> 9159 Oregon
#> 9160 South Carolina
#> 9161 Texas
#> 9162 Washington
#> 9163 Wyoming
#> 9164 Alabama
#> 9165 Arizona
#> 9166 Arkansas
#> 9167 California
#> 9168 Colorado
#> 9169 Connecticut
#> 9170 Delaware
#> 9171 Florida
#> 9172 Georgia
#> 9173 Idaho
#> 9174 Illinois
#> 9175 Indiana
#> 9176 Iowa
#> 9177 Kansas
#> 9178 Kentucky
#> 9179 Louisiana
#> 9180 Maine
#> 9181 Maryland
#> 9182 Massachusetts
#> 9183 Michigan
#> 9184 Minnesota
#> 9185 Mississippi
#> 9186 Missouri
#> 9187 Montana
#> 9188 Nebraska
#> 9189 Nevada
#> 9190 New Hampshire
#> 9191 New Jersey
#> 9192 New Mexico
#> 9193 New York
#> 9194 North Carolina
#> 9195 North Dakota
#> 9196 Ohio
#> 9197 Oklahoma
#> 9198 Oregon
#> 9199 Pennsylvania
#> 9200 Rhode Island
#> 9201 South Carolina
#> 9202 South Dakota
#> 9203 Tennessee
#> 9204 Texas
#> 9205 Utah
#> 9206 Vermont
#> 9207 Virginia
#> 9208 Washington
#> 9209 West Virginia
#> 9210 Wisconsin
#> 9211 Wyoming
#> 9212 Alabama
#> 9213 Arizona
#> 9214 Arkansas
#> 9215 California
#> 9216 Colorado
#> 9217 Connecticut
#> 9218 Delaware
#> 9219 Florida
#> 9220 Idaho
#> 9221 Illinois
#> 9222 Indiana
#> 9223 Iowa
#> 9224 Kansas
#> 9225 Kentucky
#> 9226 Louisiana
#> 9227 Maine
#> 9228 Maryland
#> 9229 Massachusetts
#> 9230 Michigan
#> 9231 Minnesota
#> 9232 Mississippi
#> 9233 Missouri
#> 9234 Nebraska
#> 9235 Nevada
#> 9236 New Hampshire
#> 9237 New Jersey
#> 9238 New York
#> 9239 North Carolina
#> 9240 Ohio
#> 9241 Oregon
#> 9242 Pennsylvania
#> 9243 Rhode Island
#> 9244 South Dakota
#> 9245 Tennessee
#> 9246 Texas
#> 9247 Utah
#> 9248 Virginia
#> 9249 Washington
#> 9250 West Virginia
#> 9251 Wisconsin
#> 9252 Wyoming
#> 9253 Arkansas
#> 9254 California
#> 9255 Connecticut
#> 9256 Georgia
#> 9257 Idaho
#> 9258 Indiana
#> 9259 Iowa
#> 9260 Kansas
#> 9261 Louisiana
#> 9262 Maine
#> 9263 Maryland
#> 9264 Massachusetts
#> 9265 Minnesota
#> 9266 Missouri
#> 9267 Montana
#> 9268 Nebraska
#> 9269 New Hampshire
#> 9270 New Mexico
#> 9271 New York
#> 9272 North Carolina
#> 9273 North Dakota
#> 9274 Oklahoma
#> 9275 Oregon
#> 9276 Rhode Island
#> 9277 South Carolina
#> 9278 South Dakota
#> 9279 Utah
#> 9280 Vermont
#> 9281 Virginia
#> 9282 Washington
#> 9283 Wyoming
#> 9284 Alabama
#> 9285 Arizona
#> 9286 California
#> 9287 Colorado
#> 9288 Connecticut
#> 9289 Florida
#> 9290 Illinois
#> 9291 Kansas
#> 9292 Kentucky
#> 9293 Louisiana
#> 9294 Maine
#> 9295 Minnesota
#> 9296 Missouri
#> 9297 Nevada
#> 9298 New Jersey
#> 9299 New York
#> 9300 Ohio
#> 9301 Oklahoma
#> 9302 Pennsylvania
#> 9303 South Carolina
#> 9304 South Dakota
#> 9305 Texas
#> 9306 Utah
#> 9307 Virginia
#> 9308 Washington
#> 9309 Wisconsin
#> 9310 Alabama
#> 9311 Alaska
#> 9312 Arizona
#> 9313 Arkansas
#> 9314 California
#> 9315 Colorado
#> 9316 Connecticut
#> 9317 Delaware
#> 9318 Florida
#> 9319 Georgia
#> 9320 Hawaii
#> 9321 Idaho
#> 9322 Illinois
#> 9323 Indiana
#> 9324 Iowa
#> 9325 Kansas
#> 9326 Kentucky
#> 9327 Louisiana
#> 9328 Maine
#> 9329 Maryland
#> 9330 Massachusetts
#> 9331 Michigan
#> 9332 Minnesota
#> 9333 Missouri
#> 9334 Montana
#> 9335 Nebraska
#> 9336 Nevada
#> 9337 New Hampshire
#> 9338 New Jersey
#> 9339 New Mexico
#> 9340 New York
#> 9341 North Carolina
#> 9342 North Dakota
#> 9343 Ohio
#> 9344 Oklahoma
#> 9345 Oregon
#> 9346 Pennsylvania
#> 9347 Rhode Island
#> 9348 South Carolina
#> 9349 Tennessee
#> 9350 Texas
#> 9351 Utah
#> 9352 Vermont
#> 9353 Virginia
#> 9354 Washington
#> 9355 West Virginia
#> 9356 Wisconsin
#> 9357 Wyoming
#> 9358 Alaska
#> 9359 California
#> 9360 Connecticut
#> 9361 Delaware
#> 9362 Florida
#> 9363 Hawaii
#> 9364 Illinois
#> 9365 Iowa
#> 9366 Maine
#> 9367 Massachusetts
#> 9368 Michigan
#> 9369 Minnesota
#> 9370 Montana
#> 9371 Nebraska
#> 9372 New Hampshire
#> 9373 New Jersey
#> 9374 New Mexico
#> 9375 New York
#> 9376 Ohio
#> 9377 Oregon
#> 9378 Pennsylvania
#> 9379 Rhode Island
#> 9380 South Dakota
#> 9381 Vermont
#> 9382 Washington
#> 9383 Wisconsin
#> 9384 Alaska
#> 9385 California
#> 9386 Connecticut
#> 9387 Delaware
#> 9388 Florida
#> 9389 Hawaii
#> 9390 Idaho
#> 9391 Illinois
#> 9392 Indiana
#> 9393 Iowa
#> 9394 Kansas
#> 9395 Maine
#> 9396 Maryland
#> 9397 Massachusetts
#> 9398 Michigan
#> 9399 Minnesota
#> 9400 Montana
#> 9401 Nebraska
#> 9402 Nevada
#> 9403 New Hampshire
#> 9404 New Jersey
#> 9405 New York
#> 9406 North Dakota
#> 9407 Ohio
#> 9408 Oklahoma
#> 9409 Oregon
#> 9410 Pennsylvania
#> 9411 Rhode Island
#> 9412 South Dakota
#> 9413 Tennessee
#> 9414 Vermont
#> 9415 Washington
#> 9416 Wisconsin
#> 9417 Alaska
#> 9418 Connecticut
#> 9419 Delaware
#> 9420 Hawaii
#> 9421 Idaho
#> 9422 Indiana
#> 9423 Kentucky
#> 9424 Maine
#> 9425 Maryland
#> 9426 Massachusetts
#> 9427 Michigan
#> 9428 Nebraska
#> 9429 Nevada
#> 9430 New Hampshire
#> 9431 New Jersey
#> 9432 New Mexico
#> 9433 New York
#> 9434 North Carolina
#> 9435 North Dakota
#> 9436 Oklahoma
#> 9437 Oregon
#> 9438 Pennsylvania
#> 9439 Rhode Island
#> 9440 South Dakota
#> 9441 Vermont
#> 9442 Washington
#> 9443 West Virginia
#> 9444 Wyoming
#> 9445 Alaska
#> 9446 Arizona
#> 9447 Arkansas
#> 9448 California
#> 9449 Colorado
#> 9450 Connecticut
#> 9451 Delaware
#> 9452 Florida
#> 9453 Hawaii
#> 9454 Illinois
#> 9455 Iowa
#> 9456 Maine
#> 9457 Massachusetts
#> 9458 Michigan
#> 9459 Minnesota
#> 9460 Missouri
#> 9461 Montana
#> 9462 Nevada
#> 9463 New Hampshire
#> 9464 New Jersey
#> 9465 New Mexico
#> 9466 New York
#> 9467 Ohio
#> 9468 Oregon
#> 9469 Pennsylvania
#> 9470 Rhode Island
#> 9471 Vermont
#> 9472 Washington
#> 9473 West Virginia
#> 9474 Wisconsin
#> 9475 Alabama
#> 9476 Alaska
#> 9477 Arizona
#> 9478 Arkansas
#> 9479 California
#> 9480 Colorado
#> 9481 Connecticut
#> 9482 Delaware
#> 9483 Florida
#> 9484 Hawaii
#> 9485 Idaho
#> 9486 Illinois
#> 9487 Indiana
#> 9488 Kansas
#> 9489 Kentucky
#> 9490 Louisiana
#> 9491 Maine
#> 9492 Maryland
#> 9493 Massachusetts
#> 9494 Michigan
#> 9495 Minnesota
#> 9496 Missouri
#> 9497 Montana
#> 9498 Nebraska
#> 9499 Nevada
#> 9500 New Hampshire
#> 9501 New Jersey
#> 9502 New Mexico
#> 9503 New York
#> 9504 Ohio
#> 9505 Oklahoma
#> 9506 Oregon
#> 9507 Pennsylvania
#> 9508 Rhode Island
#> 9509 Tennessee
#> 9510 Texas
#> 9511 Utah
#> 9512 Washington
#> 9513 West Virginia
#> 9514 Wisconsin
#> 9515 Wyoming
#> 9516 Colorado
#> 9517 Hawaii
#> 9518 Kansas
#> 9519 Michigan
#> 9520 North Dakota
#> 9521 Pennsylvania
#> 9522 Utah
#> 9523 Wisconsin
#> 9524 Connecticut
#> 9525 Massachusetts
#> 9526 New York
#> 9527 Pennsylvania
#> 9528 Rhode Island
#> 9529 Utah
#> 9530 Wisconsin
#> 9531 Alabama
#> 9532 Arizona
#> 9533 Arkansas
#> 9534 Delaware
#> 9535 Florida
#> 9536 Georgia
#> 9537 Idaho
#> 9538 Indiana
#> 9539 Iowa
#> 9540 Kansas
#> 9541 Louisiana
#> 9542 Michigan
#> 9543 Mississippi
#> 9544 Nebraska
#> 9545 Nevada
#> 9546 New Hampshire
#> 9547 North Carolina
#> 9548 North Dakota
#> 9549 Oklahoma
#> 9550 South Carolina
#> 9551 South Dakota
#> 9552 Tennessee
#> 9553 Texas
#> 9554 Utah
#> 9555 Virginia
#> 9556 Wyoming
#> 9557 Arizona
#> 9558 Colorado
#> 9559 Delaware
#> 9560 Idaho
#> 9561 Iowa
#> 9562 Louisiana
#> 9563 Massachusetts
#> 9564 Minnesota
#> 9565 New Mexico
#> 9566 North Carolina
#> 9567 Oregon
#> 9568 Pennsylvania
#> 9569 Rhode Island
#> 9570 Vermont
#> 9571 Virginia
#> 9572 Washington
#> 9573 Wisconsin
#> 9574 Wyoming
#> 9575 Alaska
#> 9576 California
#> 9577 Connecticut
#> 9578 Florida
#> 9579 Georgia
#> 9580 Hawaii
#> 9581 Illinois
#> 9582 Indiana
#> 9583 Iowa
#> 9584 Kansas
#> 9585 Kentucky
#> 9586 Maine
#> 9587 Maryland
#> 9588 Massachusetts
#> 9589 Michigan
#> 9590 Minnesota
#> 9591 Missouri
#> 9592 Montana
#> 9593 Nebraska
#> 9594 Nevada
#> 9595 New Hampshire
#> 9596 New Jersey
#> 9597 New Mexico
#> 9598 New York
#> 9599 North Carolina
#> 9600 North Dakota
#> 9601 Ohio
#> 9602 Oklahoma
#> 9603 Oregon
#> 9604 Pennsylvania
#> 9605 Rhode Island
#> 9606 South Carolina
#> 9607 South Dakota
#> 9608 Tennessee
#> 9609 Texas
#> 9610 Utah
#> 9611 Vermont
#> 9612 Virginia
#> 9613 Washington
#> 9614 West Virginia
#> 9615 Wisconsin
#> 9616 California
#> 9617 Hawaii
#> 9618 New Jersey
#> 9619 New York
#> 9620 Rhode Island
#> 9621 Alabama
#> 9622 Arizona
#> 9623 Arkansas
#> 9624 California
#> 9625 Colorado
#> 9626 Connecticut
#> 9627 Delaware
#> 9628 Florida
#> 9629 Georgia
#> 9630 Idaho
#> 9631 Illinois
#> 9632 Indiana
#> 9633 Iowa
#> 9634 Kentucky
#> 9635 Louisiana
#> 9636 Maine
#> 9637 Maryland
#> 9638 Massachusetts
#> 9639 Michigan
#> 9640 Minnesota
#> 9641 Mississippi
#> 9642 Missouri
#> 9643 Montana
#> 9644 Nebraska
#> 9645 Nevada
#> 9646 New Hampshire
#> 9647 New Jersey
#> 9648 New Mexico
#> 9649 New York
#> 9650 North Carolina
#> 9651 North Dakota
#> 9652 Ohio
#> 9653 Oklahoma
#> 9654 Oregon
#> 9655 Pennsylvania
#> 9656 Rhode Island
#> 9657 South Carolina
#> 9658 South Dakota
#> 9659 Tennessee
#> 9660 Texas
#> 9661 Utah
#> 9662 Vermont
#> 9663 Virginia
#> 9664 Washington
#> 9665 Wisconsin
#> 9666 Wyoming
#> 9667 Alabama
#> 9668 Arizona
#> 9669 Arkansas
#> 9670 California
#> 9671 Colorado
#> 9672 Connecticut
#> 9673 Georgia
#> 9674 Illinois
#> 9675 Indiana
#> 9676 Iowa
#> 9677 Kansas
#> 9678 Kentucky
#> 9679 Louisiana
#> 9680 Maine
#> 9681 Maryland
#> 9682 Massachusetts
#> 9683 Michigan
#> 9684 Minnesota
#> 9685 Missouri
#> 9686 Montana
#> 9687 Nebraska
#> 9688 New Hampshire
#> 9689 New Jersey
#> 9690 New York
#> 9691 North Carolina
#> 9692 North Dakota
#> 9693 Ohio
#> 9694 Oklahoma
#> 9695 Oregon
#> 9696 Pennsylvania
#> 9697 Rhode Island
#> 9698 South Carolina
#> 9699 Tennessee
#> 9700 Texas
#> 9701 Utah
#> 9702 Virginia
#> 9703 Washington
#> 9704 West Virginia
#> 9705 Wisconsin
#> 9706 Wyoming
#> 9707 Alaska
#> 9708 Connecticut
#> 9709 Florida
#> 9710 Hawaii
#> 9711 Idaho
#> 9712 Kansas
#> 9713 Minnesota
#> 9714 South Carolina
#> 9715 Utah
#> 9716 Idaho
#> 9717 Iowa
#> 9718 Montana
#> 9719 North Dakota
#> 9720 Oregon
#> 9721 Pennsylvania
#> 9722 Alabama
#> 9723 California
#> 9724 Colorado
#> 9725 Connecticut
#> 9726 Delaware
#> 9727 Florida
#> 9728 Indiana
#> 9729 Kansas
#> 9730 Kentucky
#> 9731 Louisiana
#> 9732 Maryland
#> 9733 Massachusetts
#> 9734 Michigan
#> 9735 Montana
#> 9736 Nebraska
#> 9737 Nevada
#> 9738 New Hampshire
#> 9739 New Mexico
#> 9740 New York
#> 9741 North Dakota
#> 9742 Ohio
#> 9743 Oklahoma
#> 9744 Oregon
#> 9745 Pennsylvania
#> 9746 Texas
#> 9747 Utah
#> 9748 Virginia
#> 9749 Washington
#> 9750 Wisconsin
#> 9751 Wyoming
#> 9752 Alabama
#> 9753 Arizona
#> 9754 Arkansas
#> 9755 California
#> 9756 Colorado
#> 9757 Connecticut
#> 9758 Delaware
#> 9759 Florida
#> 9760 Georgia
#> 9761 Idaho
#> 9762 Illinois
#> 9763 Indiana
#> 9764 Iowa
#> 9765 Kansas
#> 9766 Kentucky
#> 9767 Louisiana
#> 9768 Maine
#> 9769 Maryland
#> 9770 Massachusetts
#> 9771 Michigan
#> 9772 Minnesota
#> 9773 Mississippi
#> 9774 Missouri
#> 9775 Montana
#> 9776 Nebraska
#> 9777 Nevada
#> 9778 New Hampshire
#> 9779 New Jersey
#> 9780 New Mexico
#> 9781 New York
#> 9782 North Carolina
#> 9783 North Dakota
#> 9784 Ohio
#> 9785 Oklahoma
#> 9786 Oregon
#> 9787 Pennsylvania
#> 9788 Rhode Island
#> 9789 South Carolina
#> 9790 South Dakota
#> 9791 Tennessee
#> 9792 Texas
#> 9793 Utah
#> 9794 Vermont
#> 9795 Virginia
#> 9796 Washington
#> 9797 West Virginia
#> 9798 Wisconsin
#> 9799 Wyoming
#> 9800 Alaska
#> 9801 Arizona
#> 9802 California
#> 9803 Colorado
#> 9804 Connecticut
#> 9805 Delaware
#> 9806 Florida
#> 9807 Hawaii
#> 9808 Illinois
#> 9809 Iowa
#> 9810 Maine
#> 9811 Maryland
#> 9812 Massachusetts
#> 9813 Minnesota
#> 9814 Missouri
#> 9815 Montana
#> 9816 Nebraska
#> 9817 New Hampshire
#> 9818 New York
#> 9819 Oregon
#> 9820 Pennsylvania
#> 9821 Rhode Island
#> 9822 Tennessee
#> 9823 Texas
#> 9824 Virginia
#> 9825 Washington
#> 9826 West Virginia
#> 9827 Wisconsin
#> 9828 Wyoming
#> 9829 Alabama
#> 9830 Arizona
#> 9831 Arkansas
#> 9832 California
#> 9833 Colorado
#> 9834 Connecticut
#> 9835 Delaware
#> 9836 Florida
#> 9837 Georgia
#> 9838 Idaho
#> 9839 Illinois
#> 9840 Indiana
#> 9841 Iowa
#> 9842 Kansas
#> 9843 Kentucky
#> 9844 Louisiana
#> 9845 Maine
#> 9846 Maryland
#> 9847 Massachusetts
#> 9848 Michigan
#> 9849 Minnesota
#> 9850 Mississippi
#> 9851 Missouri
#> 9852 Montana
#> 9853 Nebraska
#> 9854 Nevada
#> 9855 New Hampshire
#> 9856 New Jersey
#> 9857 New Mexico
#> 9858 New York
#> 9859 North Carolina
#> 9860 North Dakota
#> 9861 Ohio
#> 9862 Oklahoma
#> 9863 Oregon
#> 9864 Pennsylvania
#> 9865 Rhode Island
#> 9866 South Carolina
#> 9867 South Dakota
#> 9868 Tennessee
#> 9869 Texas
#> 9870 Utah
#> 9871 Vermont
#> 9872 Virginia
#> 9873 Washington
#> 9874 West Virginia
#> 9875 Wisconsin
#> 9876 Wyoming
#> 9877 Hawaii
#> 9878 Montana
#> 9879 Pennsylvania
#> 9880 Virginia
#> 9881 Alabama
#> 9882 Alaska
#> 9883 Arizona
#> 9884 Arkansas
#> 9885 Connecticut
#> 9886 Delaware
#> 9887 Florida
#> 9888 Georgia
#> 9889 Hawaii
#> 9890 Indiana
#> 9891 Iowa
#> 9892 Kentucky
#> 9893 Louisiana
#> 9894 Maine
#> 9895 Maryland
#> 9896 Massachusetts
#> 9897 Mississippi
#> 9898 Missouri
#> 9899 Montana
#> 9900 Nebraska
#> 9901 New Jersey
#> 9902 North Carolina
#> 9903 North Dakota
#> 9904 Ohio
#> 9905 Oklahoma
#> 9906 Pennsylvania
#> 9907 South Carolina
#> 9908 South Dakota
#> 9909 Tennessee
#> 9910 Texas
#> 9911 Utah
#> 9912 Virginia
#> 9913 Washington
#> 9914 Alabama
#> 9915 Arizona
#> 9916 Arkansas
#> 9917 California
#> 9918 Colorado
#> 9919 Connecticut
#> 9920 Delaware
#> 9921 Florida
#> 9922 Georgia
#> 9923 Idaho
#> 9924 Illinois
#> 9925 Indiana
#> 9926 Iowa
#> 9927 Kansas
#> 9928 Kentucky
#> 9929 Louisiana
#> 9930 Maine
#> 9931 Maryland
#> 9932 Massachusetts
#> 9933 Michigan
#> 9934 Minnesota
#> 9935 Mississippi
#> 9936 Missouri
#> 9937 Montana
#> 9938 Nebraska
#> 9939 Nevada
#> 9940 New Hampshire
#> 9941 New Jersey
#> 9942 New Mexico
#> 9943 New York
#> 9944 North Carolina
#> 9945 North Dakota
#> 9946 Ohio
#> 9947 Oklahoma
#> 9948 Oregon
#> 9949 Pennsylvania
#> 9950 Rhode Island
#> 9951 South Carolina
#> 9952 South Dakota
#> 9953 Tennessee
#> 9954 Texas
#> 9955 Utah
#> 9956 Vermont
#> 9957 Virginia
#> 9958 Washington
#> 9959 West Virginia
#> 9960 Wisconsin
#> 9961 Wyoming
#> 9962 Colorado
#> 9963 Kentucky
#> 9964 Nebraska
#> 9965 Oklahoma
#> 9966 Utah
#> 9967 Vermont
#> 9968 Alabama
#> 9969 Hawaii
#> 9970 Illinois
#> 9971 Montana
#> 9972 South Dakota
#> 9973 Alabama
#> 9974 California
#> 9975 Connecticut
#> 9976 Florida
#> 9977 Idaho
#> 9978 Illinois
#> 9979 Iowa
#> 9980 Minnesota
#> 9981 Nebraska
#> 9982 New Jersey
#> 9983 North Dakota
#> 9984 Pennsylvania
#> 9985 South Dakota
#> 9986 Utah
#> 9987 Vermont
#> 9988 Washington
#> 9989 Wyoming
#> 9990 Alabama
#> 9991 Arizona
#> 9992 Arkansas
#> 9993 Colorado
#> 9994 Connecticut
#> 9995 Delaware
#> 9996 Florida
#> 9997 Georgia
#> 9998 Hawaii
#> 9999 Idaho
#> 10000 Illinois
#> 10001 Indiana
#> 10002 Iowa
#> 10003 Kansas
#> 10004 Kentucky
#> 10005 Maryland
#> 10006 Massachusetts
#> 10007 Michigan
#> 10008 Minnesota
#> 10009 Mississippi
#> 10010 Missouri
#> 10011 Montana
#> 10012 Nebraska
#> 10013 Nevada
#> 10014 New Hampshire
#> 10015 New Jersey
#> 10016 New Mexico
#> 10017 North Carolina
#> 10018 North Dakota
#> 10019 Ohio
#> 10020 Oklahoma
#> 10021 Oregon
#> 10022 Pennsylvania
#> 10023 Rhode Island
#> 10024 South Carolina
#> 10025 South Dakota
#> 10026 Tennessee
#> 10027 Texas
#> 10028 Utah
#> 10029 Vermont
#> 10030 Virginia
#> 10031 Washington
#> 10032 Wisconsin
#> 10033 Alabama
#> 10034 Delaware
#> 10035 Kansas
#> 10036 Oregon
#> 10037 Alabama
#> 10038 Arkansas
#> 10039 California
#> 10040 Florida
#> 10041 Hawaii
#> 10042 Idaho
#> 10043 Illinois
#> 10044 Iowa
#> 10045 Kentucky
#> 10046 Maine
#> 10047 Minnesota
#> 10048 Mississippi
#> 10049 Montana
#> 10050 Nevada
#> 10051 New Mexico
#> 10052 North Dakota
#> 10053 Oklahoma
#> 10054 Pennsylvania
#> 10055 Utah
#> 10056 Washington
#> 10057 Arizona
#> 10058 California
#> 10059 Colorado
#> 10060 Connecticut
#> 10061 Delaware
#> 10062 Florida
#> 10063 Georgia
#> 10064 Idaho
#> 10065 Illinois
#> 10066 Indiana
#> 10067 Iowa
#> 10068 Kansas
#> 10069 Kentucky
#> 10070 Louisiana
#> 10071 Maine
#> 10072 Maryland
#> 10073 Massachusetts
#> 10074 Michigan
#> 10075 Minnesota
#> 10076 Missouri
#> 10077 Montana
#> 10078 Nebraska
#> 10079 New Hampshire
#> 10080 New Jersey
#> 10081 New York
#> 10082 Ohio
#> 10083 Oregon
#> 10084 Pennsylvania
#> 10085 Rhode Island
#> 10086 South Dakota
#> 10087 Texas
#> 10088 Vermont
#> 10089 Virginia
#> 10090 Washington
#> 10091 West Virginia
#> 10092 Wisconsin
#> 10093 Alabama
#> 10094 Alaska
#> 10095 Arizona
#> 10096 Arkansas
#> 10097 California
#> 10098 Colorado
#> 10099 Connecticut
#> 10100 Delaware
#> 10101 Florida
#> 10102 Georgia
#> 10103 Hawaii
#> 10104 Idaho
#> 10105 Illinois
#> 10106 Indiana
#> 10107 Iowa
#> 10108 Kansas
#> 10109 Kentucky
#> 10110 Louisiana
#> 10111 Maine
#> 10112 Maryland
#> 10113 Massachusetts
#> 10114 Michigan
#> 10115 Minnesota
#> 10116 Mississippi
#> 10117 Missouri
#> 10118 Montana
#> 10119 Nebraska
#> 10120 Nevada
#> 10121 New Hampshire
#> 10122 New Jersey
#> 10123 New Mexico
#> 10124 New York
#> 10125 North Carolina
#> 10126 Ohio
#> 10127 Oklahoma
#> 10128 Oregon
#> 10129 Pennsylvania
#> 10130 Rhode Island
#> 10131 South Carolina
#> 10132 South Dakota
#> 10133 Tennessee
#> 10134 Texas
#> 10135 Utah
#> 10136 Vermont
#> 10137 Virginia
#> 10138 Washington
#> 10139 West Virginia
#> 10140 Wisconsin
#> 10141 Wyoming
#> 10142 Colorado
#> 10143 Connecticut
#> 10144 Idaho
#> 10145 Iowa
#> 10146 Massachusetts
#> 10147 Michigan
#> 10148 North Dakota
#> 10149 Ohio
#> 10150 South Carolina
#> 10151 Texas
#> 10152 Utah
#> 10153 Vermont
#> 10154 Virginia
#> 10155 Arkansas
#> 10156 California
#> 10157 Colorado
#> 10158 Connecticut
#> 10159 Delaware
#> 10160 Florida
#> 10161 Georgia
#> 10162 Hawaii
#> 10163 Illinois
#> 10164 Indiana
#> 10165 Iowa
#> 10166 Kansas
#> 10167 Maine
#> 10168 Maryland
#> 10169 Massachusetts
#> 10170 Minnesota
#> 10171 Mississippi
#> 10172 Missouri
#> 10173 Nebraska
#> 10174 Nevada
#> 10175 New Hampshire
#> 10176 New Jersey
#> 10177 New Mexico
#> 10178 North Carolina
#> 10179 North Dakota
#> 10180 Ohio
#> 10181 Oklahoma
#> 10182 Oregon
#> 10183 South Carolina
#> 10184 Utah
#> 10185 Vermont
#> 10186 Virginia
#> 10187 Washington
#> 10188 Wyoming
#> 10189 Maryland
#> 10190 Wyoming
#> 10191 Arizona
#> 10192 California
#> 10193 Connecticut
#> 10194 Delaware
#> 10195 Georgia
#> 10196 Illinois
#> 10197 Louisiana
#> 10198 Maine
#> 10199 Maryland
#> 10200 Massachusetts
#> 10201 Missouri
#> 10202 Nevada
#> 10203 New Hampshire
#> 10204 New Mexico
#> 10205 North Carolina
#> 10206 Ohio
#> 10207 Rhode Island
#> 10208 Tennessee
#> 10209 Vermont
#> 10210 Virginia
#> 10211 West Virginia
#> 10212 Wisconsin
#> 10213 Wyoming
#> 10214 Alabama
#> 10215 Arizona
#> 10216 Colorado
#> 10217 Kansas
#> 10218 Minnesota
#> 10219 Missouri
#> 10220 North Dakota
#> 10221 Utah
#> 10222 Colorado
#> 10223 Idaho
#> 10224 Kentucky
#> 10225 Massachusetts
#> 10226 Michigan
#> 10227 Nebraska
#> 10228 North Dakota
#> 10229 Ohio
#> 10230 South Carolina
#> 10231 Texas
#> 10232 Vermont
#> 10233 Virginia
#> 10234 Wisconsin
#> 10235 Arizona
#> 10236 Colorado
#> 10237 Georgia
#> 10238 Minnesota
#> 10239 Montana
#> 10240 Washington
#> 10241 Idaho
#> 10242 Kentucky
#> 10243 Nebraska
#> 10244 South Carolina
#> 10245 Texas
#> 10246 Hawaii
#> 10247 Idaho
#> 10248 Illinois
#> 10249 Iowa
#> 10250 Nebraska
#> 10251 New Jersey
#> 10252 Ohio
#> 10253 South Dakota
#> 10254 Utah
#> 10255 Vermont
#> 10256 Washington
#> 10257 Alabama
#> 10258 Alaska
#> 10259 Arkansas
#> 10260 California
#> 10261 Colorado
#> 10262 Connecticut
#> 10263 Delaware
#> 10264 Florida
#> 10265 Georgia
#> 10266 Hawaii
#> 10267 Idaho
#> 10268 Illinois
#> 10269 Indiana
#> 10270 Iowa
#> 10271 Kansas
#> 10272 Kentucky
#> 10273 Louisiana
#> 10274 Maine
#> 10275 Maryland
#> 10276 Massachusetts
#> 10277 Michigan
#> 10278 Minnesota
#> 10279 Mississippi
#> 10280 Missouri
#> 10281 Montana
#> 10282 Nebraska
#> 10283 Nevada
#> 10284 New Hampshire
#> 10285 New Jersey
#> 10286 New Mexico
#> 10287 New York
#> 10288 North Carolina
#> 10289 North Dakota
#> 10290 Ohio
#> 10291 Oklahoma
#> 10292 Oregon
#> 10293 Pennsylvania
#> 10294 Rhode Island
#> 10295 South Carolina
#> 10296 South Dakota
#> 10297 Tennessee
#> 10298 Texas
#> 10299 Utah
#> 10300 Vermont
#> 10301 Virginia
#> 10302 Washington
#> 10303 West Virginia
#> 10304 Wisconsin
#> 10305 Wyoming
#> 10306 Alabama
#> 10307 Arizona
#> 10308 Indiana
#> 10309 Iowa
#> 10310 Kansas
#> 10311 Louisiana
#> 10312 Michigan
#> 10313 Mississippi
#> 10314 Missouri
#> 10315 Nebraska
#> 10316 North Carolina
#> 10317 North Dakota
#> 10318 Ohio
#> 10319 Oklahoma
#> 10320 South Dakota
#> 10321 Tennessee
#> 10322 Texas
#> 10323 Wisconsin
#> 10324 Alaska
#> 10325 Arizona
#> 10326 Arkansas
#> 10327 California
#> 10328 Colorado
#> 10329 Connecticut
#> 10330 Georgia
#> 10331 Hawaii
#> 10332 Illinois
#> 10333 Iowa
#> 10334 Louisiana
#> 10335 Maine
#> 10336 Maryland
#> 10337 Massachusetts
#> 10338 Michigan
#> 10339 Minnesota
#> 10340 Montana
#> 10341 Nevada
#> 10342 New Hampshire
#> 10343 New Jersey
#> 10344 New Mexico
#> 10345 New York
#> 10346 Oregon
#> 10347 Rhode Island
#> 10348 South Carolina
#> 10349 Tennessee
#> 10350 Texas
#> 10351 Vermont
#> 10352 Virginia
#> 10353 Washington
#> 10354 Wisconsin
#> 10355 Alabama
#> 10356 Alaska
#> 10357 Arizona
#> 10358 Arkansas
#> 10359 California
#> 10360 Colorado
#> 10361 Connecticut
#> 10362 Delaware
#> 10363 Florida
#> 10364 Georgia
#> 10365 Hawaii
#> 10366 Idaho
#> 10367 Illinois
#> 10368 Indiana
#> 10369 Iowa
#> 10370 Kansas
#> 10371 Kentucky
#> 10372 Louisiana
#> 10373 Maine
#> 10374 Maryland
#> 10375 Massachusetts
#> 10376 Michigan
#> 10377 Minnesota
#> 10378 Mississippi
#> 10379 Missouri
#> 10380 Montana
#> 10381 Nebraska
#> 10382 Nevada
#> 10383 New Hampshire
#> 10384 New Jersey
#> 10385 New Mexico
#> 10386 New York
#> 10387 North Carolina
#> 10388 North Dakota
#> 10389 Ohio
#> 10390 Oklahoma
#> 10391 Oregon
#> 10392 Pennsylvania
#> 10393 Rhode Island
#> 10394 South Carolina
#> 10395 South Dakota
#> 10396 Tennessee
#> 10397 Texas
#> 10398 Utah
#> 10399 Vermont
#> 10400 Virginia
#> 10401 Washington
#> 10402 West Virginia
#> 10403 Wisconsin
#> 10404 Wyoming
#> 10405 Arizona
#> 10406 Arkansas
#> 10407 Colorado
#> 10408 Connecticut
#> 10409 Florida
#> 10410 Georgia
#> 10411 Indiana
#> 10412 Kentucky
#> 10413 Maryland
#> 10414 Missouri
#> 10415 Nebraska
#> 10416 New Mexico
#> 10417 North Carolina
#> 10418 South Dakota
#> 10419 Tennessee
#> 10420 Washington
#> 10421 Alabama
#> 10422 Arizona
#> 10423 Arkansas
#> 10424 California
#> 10425 Colorado
#> 10426 Connecticut
#> 10427 Delaware
#> 10428 Florida
#> 10429 Georgia
#> 10430 Idaho
#> 10431 Illinois
#> 10432 Indiana
#> 10433 Iowa
#> 10434 Kansas
#> 10435 Kentucky
#> 10436 Louisiana
#> 10437 Maine
#> 10438 Maryland
#> 10439 Massachusetts
#> 10440 Michigan
#> 10441 Minnesota
#> 10442 Mississippi
#> 10443 Missouri
#> 10444 Montana
#> 10445 Nebraska
#> 10446 Nevada
#> 10447 New Hampshire
#> 10448 New Jersey
#> 10449 New Mexico
#> 10450 New York
#> 10451 North Carolina
#> 10452 North Dakota
#> 10453 Ohio
#> 10454 Oklahoma
#> 10455 Oregon
#> 10456 Pennsylvania
#> 10457 Rhode Island
#> 10458 South Carolina
#> 10459 South Dakota
#> 10460 Tennessee
#> 10461 Texas
#> 10462 Utah
#> 10463 Vermont
#> 10464 Virginia
#> 10465 Washington
#> 10466 West Virginia
#> 10467 Wisconsin
#> 10468 Wyoming
#> 10469 Florida
#> 10470 Georgia
#> 10471 Kentucky
#> 10472 Louisiana
#> 10473 Massachusetts
#> 10474 Mississippi
#> 10475 Missouri
#> 10476 New Mexico
#> 10477 Ohio
#> 10478 South Carolina
#> 10479 Tennessee
#> 10480 West Virginia
#> 10481 Florida
#> 10482 Georgia
#> 10483 Kentucky
#> 10484 Louisiana
#> 10485 Michigan
#> 10486 Mississippi
#> 10487 Missouri
#> 10488 Nevada
#> 10489 New Mexico
#> 10490 South Carolina
#> 10491 West Virginia
#> 10492 Alabama
#> 10493 Arizona
#> 10494 Arkansas
#> 10495 California
#> 10496 Colorado
#> 10497 Florida
#> 10498 Georgia
#> 10499 Hawaii
#> 10500 Illinois
#> 10501 Indiana
#> 10502 Iowa
#> 10503 Kansas
#> 10504 Kentucky
#> 10505 Mississippi
#> 10506 Missouri
#> 10507 Montana
#> 10508 Nebraska
#> 10509 North Carolina
#> 10510 North Dakota
#> 10511 Oklahoma
#> 10512 Oregon
#> 10513 South Dakota
#> 10514 Washington
#> 10515 Wisconsin
#> 10516 Wyoming
#> 10517 Arizona
#> 10518 Arkansas
#> 10519 Colorado
#> 10520 Delaware
#> 10521 Florida
#> 10522 Idaho
#> 10523 Illinois
#> 10524 Indiana
#> 10525 Maryland
#> 10526 Massachusetts
#> 10527 Michigan
#> 10528 Minnesota
#> 10529 Nebraska
#> 10530 New Jersey
#> 10531 New York
#> 10532 North Carolina
#> 10533 North Dakota
#> 10534 Ohio
#> 10535 Oregon
#> 10536 Pennsylvania
#> 10537 Rhode Island
#> 10538 South Carolina
#> 10539 Tennessee
#> 10540 Texas
#> 10541 Virginia
#> 10542 Washington
#> 10543 West Virginia
#> 10544 Wisconsin
#> 10545 California
#> 10546 Colorado
#> 10547 Hawaii
#> 10548 Kentucky
#> 10549 Missouri
#> 10550 Montana
#> 10551 Nevada
#> 10552 New Mexico
#> 10553 North Carolina
#> 10554 North Dakota
#> 10555 Oklahoma
#> 10556 Pennsylvania
#> 10557 South Carolina
#> 10558 Utah
#> 10559 Virginia
#> 10560 Alabama
#> 10561 Arizona
#> 10562 Arkansas
#> 10563 California
#> 10564 Connecticut
#> 10565 Florida
#> 10566 Georgia
#> 10567 Kansas
#> 10568 Kentucky
#> 10569 Louisiana
#> 10570 Maine
#> 10571 Mississippi
#> 10572 Montana
#> 10573 Nebraska
#> 10574 Nevada
#> 10575 New Hampshire
#> 10576 New Jersey
#> 10577 North Dakota
#> 10578 Ohio
#> 10579 Oklahoma
#> 10580 Oregon
#> 10581 Pennsylvania
#> 10582 Rhode Island
#> 10583 Texas
#> 10584 Utah
#> 10585 Washington
#> 10586 West Virginia
#> 10587 Wisconsin
#> 10588 Arizona
#> 10589 Mississippi
#> 10590 New Mexico
#> 10591 North Dakota
#> 10592 Oklahoma
#> 10593 Washington
#> 10594 Arizona
#> 10595 Arkansas
#> 10596 California
#> 10597 Colorado
#> 10598 Connecticut
#> 10599 Delaware
#> 10600 Idaho
#> 10601 Illinois
#> 10602 Indiana
#> 10603 Kansas
#> 10604 Kentucky
#> 10605 Louisiana
#> 10606 Maine
#> 10607 Maryland
#> 10608 Massachusetts
#> 10609 Michigan
#> 10610 Minnesota
#> 10611 Nevada
#> 10612 New Hampshire
#> 10613 New Jersey
#> 10614 New Mexico
#> 10615 New York
#> 10616 North Carolina
#> 10617 North Dakota
#> 10618 Ohio
#> 10619 Oregon
#> 10620 Pennsylvania
#> 10621 Rhode Island
#> 10622 South Dakota
#> 10623 Utah
#> 10624 Vermont
#> 10625 Washington
#> 10626 Wisconsin
#> 10627 Wyoming
#> 10628 Alaska
#> 10629 Arizona
#> 10630 Colorado
#> 10631 Florida
#> 10632 Idaho
#> 10633 Indiana
#> 10634 Iowa
#> 10635 Kansas
#> 10636 Kentucky
#> 10637 Maryland
#> 10638 Missouri
#> 10639 Montana
#> 10640 Nebraska
#> 10641 Nevada
#> 10642 North Dakota
#> 10643 Oklahoma
#> 10644 Tennessee
#> 10645 Utah
#> 10646 Vermont
#> 10647 Wyoming
#> 10648 Alabama
#> 10649 Alaska
#> 10650 Arizona
#> 10651 Arkansas
#> 10652 California
#> 10653 Colorado
#> 10654 Connecticut
#> 10655 Delaware
#> 10656 Florida
#> 10657 Georgia
#> 10658 Hawaii
#> 10659 Idaho
#> 10660 Illinois
#> 10661 Indiana
#> 10662 Iowa
#> 10663 Kansas
#> 10664 Kentucky
#> 10665 Louisiana
#> 10666 Maine
#> 10667 Maryland
#> 10668 Massachusetts
#> 10669 Michigan
#> 10670 Minnesota
#> 10671 Mississippi
#> 10672 Missouri
#> 10673 Montana
#> 10674 Nebraska
#> 10675 Nevada
#> 10676 New Hampshire
#> 10677 New Jersey
#> 10678 New Mexico
#> 10679 New York
#> 10680 North Carolina
#> 10681 North Dakota
#> 10682 Ohio
#> 10683 Oklahoma
#> 10684 Oregon
#> 10685 Pennsylvania
#> 10686 Rhode Island
#> 10687 South Carolina
#> 10688 South Dakota
#> 10689 Tennessee
#> 10690 Texas
#> 10691 Utah
#> 10692 Vermont
#> 10693 Virginia
#> 10694 Washington
#> 10695 West Virginia
#> 10696 Wisconsin
#> 10697 Wyoming
#> 10698 Arkansas
#> 10699 Colorado
#> 10700 Connecticut
#> 10701 Delaware
#> 10702 Idaho
#> 10703 Illinois
#> 10704 Indiana
#> 10705 Iowa
#> 10706 Kentucky
#> 10707 Louisiana
#> 10708 Maine
#> 10709 Maryland
#> 10710 Massachusetts
#> 10711 Michigan
#> 10712 Minnesota
#> 10713 New Hampshire
#> 10714 New Jersey
#> 10715 New York
#> 10716 North Carolina
#> 10717 North Dakota
#> 10718 Ohio
#> 10719 Oklahoma
#> 10720 Oregon
#> 10721 Pennsylvania
#> 10722 Rhode Island
#> 10723 South Carolina
#> 10724 South Dakota
#> 10725 Vermont
#> 10726 Washington
#> 10727 West Virginia
#> 10728 Minnesota
#> 10729 Rhode Island
#> 10730 Louisiana
#> 10731 Maryland
#> 10732 Massachusetts
#> 10733 Rhode Island
#> 10734 Wisconsin
#> 10735 Alabama
#> 10736 Arizona
#> 10737 Arkansas
#> 10738 Connecticut
#> 10739 Delaware
#> 10740 Iowa
#> 10741 Kansas
#> 10742 Montana
#> 10743 Tennessee
#> 10744 Wyoming
#> 10745 Alaska
#> 10746 Arkansas
#> 10747 Iowa
#> 10748 New Mexico
#> 10749 Texas
#> 10750 Vermont
#> 10751 Washington
#> 10752 Arizona
#> 10753 Arkansas
#> 10754 California
#> 10755 Colorado
#> 10756 Connecticut
#> 10757 Delaware
#> 10758 Florida
#> 10759 Idaho
#> 10760 Illinois
#> 10761 Indiana
#> 10762 Iowa
#> 10763 Kansas
#> 10764 Kentucky
#> 10765 Louisiana
#> 10766 Maine
#> 10767 Maryland
#> 10768 Massachusetts
#> 10769 Michigan
#> 10770 Minnesota
#> 10771 Mississippi
#> 10772 Missouri
#> 10773 Montana
#> 10774 Nebraska
#> 10775 Nevada
#> 10776 New Hampshire
#> 10777 New Jersey
#> 10778 New Mexico
#> 10779 New York
#> 10780 North Carolina
#> 10781 North Dakota
#> 10782 Ohio
#> 10783 Oklahoma
#> 10784 Oregon
#> 10785 Pennsylvania
#> 10786 Rhode Island
#> 10787 South Dakota
#> 10788 Tennessee
#> 10789 Texas
#> 10790 Utah
#> 10791 Vermont
#> 10792 Virginia
#> 10793 Washington
#> 10794 West Virginia
#> 10795 Wisconsin
#> 10796 Wyoming
#> 10797 Alabama
#> 10798 Arizona
#> 10799 Arkansas
#> 10800 California
#> 10801 Colorado
#> 10802 Connecticut
#> 10803 Delaware
#> 10804 Florida
#> 10805 Idaho
#> 10806 Illinois
#> 10807 Indiana
#> 10808 Iowa
#> 10809 Kansas
#> 10810 Kentucky
#> 10811 Louisiana
#> 10812 Maine
#> 10813 Maryland
#> 10814 Massachusetts
#> 10815 Michigan
#> 10816 Minnesota
#> 10817 Mississippi
#> 10818 Missouri
#> 10819 Montana
#> 10820 Nebraska
#> 10821 Nevada
#> 10822 New Hampshire
#> 10823 New Jersey
#> 10824 New Mexico
#> 10825 New York
#> 10826 North Carolina
#> 10827 North Dakota
#> 10828 Ohio
#> 10829 Oklahoma
#> 10830 Oregon
#> 10831 Pennsylvania
#> 10832 Rhode Island
#> 10833 South Dakota
#> 10834 Tennessee
#> 10835 Texas
#> 10836 Utah
#> 10837 Vermont
#> 10838 Virginia
#> 10839 Washington
#> 10840 West Virginia
#> 10841 Wisconsin
#> 10842 Wyoming
#> 10843 Alabama
#> 10844 Alaska
#> 10845 Arizona
#> 10846 Arkansas
#> 10847 California
#> 10848 Colorado
#> 10849 Connecticut
#> 10850 Delaware
#> 10851 Florida
#> 10852 Georgia
#> 10853 Hawaii
#> 10854 Idaho
#> 10855 Illinois
#> 10856 Indiana
#> 10857 Iowa
#> 10858 Kansas
#> 10859 Kentucky
#> 10860 Louisiana
#> 10861 Maine
#> 10862 Maryland
#> 10863 Massachusetts
#> 10864 Michigan
#> 10865 Minnesota
#> 10866 Mississippi
#> 10867 Missouri
#> 10868 Montana
#> 10869 Nebraska
#> 10870 Nevada
#> 10871 New Hampshire
#> 10872 New Jersey
#> 10873 New Mexico
#> 10874 New York
#> 10875 North Carolina
#> 10876 Ohio
#> 10877 Oklahoma
#> 10878 Oregon
#> 10879 Pennsylvania
#> 10880 Rhode Island
#> 10881 South Carolina
#> 10882 South Dakota
#> 10883 Tennessee
#> 10884 Texas
#> 10885 Utah
#> 10886 Vermont
#> 10887 Virginia
#> 10888 Washington
#> 10889 West Virginia
#> 10890 Wisconsin
#> 10891 Wyoming
#> 10892 Alaska
#> 10893 Arizona
#> 10894 Arkansas
#> 10895 California
#> 10896 Colorado
#> 10897 Connecticut
#> 10898 Delaware
#> 10899 Georgia
#> 10900 Hawaii
#> 10901 Illinois
#> 10902 Iowa
#> 10903 Kansas
#> 10904 Kentucky
#> 10905 Louisiana
#> 10906 Maine
#> 10907 Maryland
#> 10908 Massachusetts
#> 10909 Montana
#> 10910 Nevada
#> 10911 New Jersey
#> 10912 North Carolina
#> 10913 Ohio
#> 10914 Oregon
#> 10915 Pennsylvania
#> 10916 Rhode Island
#> 10917 South Carolina
#> 10918 Tennessee
#> 10919 Texas
#> 10920 Utah
#> 10921 Virginia
#> 10922 Washington
#> 10923 West Virginia
#> 10924 Wisconsin
#> 10925 Wyoming
#> 10926 Arizona
#> 10927 Arkansas
#> 10928 California
#> 10929 Colorado
#> 10930 Florida
#> 10931 Idaho
#> 10932 Illinois
#> 10933 Indiana
#> 10934 Louisiana
#> 10935 Maryland
#> 10936 Michigan
#> 10937 Mississippi
#> 10938 Missouri
#> 10939 Montana
#> 10940 Nebraska
#> 10941 Nevada
#> 10942 New Jersey
#> 10943 New Mexico
#> 10944 Ohio
#> 10945 Oklahoma
#> 10946 Oregon
#> 10947 Pennsylvania
#> 10948 Utah
#> 10949 Virginia
#> 10950 Washington
#> 10951 West Virginia
#> 10952 Wisconsin
#> 10953 Wyoming
#> 10954 Alabama
#> 10955 Arizona
#> 10956 Florida
#> 10957 Massachusetts
#> 10958 Montana
#> 10959 Nebraska
#> 10960 Arizona
#> 10961 Colorado
#> 10962 Idaho
#> 10963 Montana
#> 10964 Nevada
#> 10965 New Mexico
#> 10966 Oregon
#> 10967 Utah
#> 10968 Washington
#> 10969 Wyoming
#> 10970 Arizona
#> 10971 Arkansas
#> 10972 Colorado
#> 10973 Connecticut
#> 10974 Delaware
#> 10975 Florida
#> 10976 Idaho
#> 10977 Indiana
#> 10978 Iowa
#> 10979 Kansas
#> 10980 Kentucky
#> 10981 Maine
#> 10982 Minnesota
#> 10983 Missouri
#> 10984 Montana
#> 10985 Nebraska
#> 10986 New Hampshire
#> 10987 New Mexico
#> 10988 North Carolina
#> 10989 North Dakota
#> 10990 Oklahoma
#> 10991 Oregon
#> 10992 Pennsylvania
#> 10993 Rhode Island
#> 10994 South Carolina
#> 10995 South Dakota
#> 10996 Tennessee
#> 10997 Vermont
#> 10998 West Virginia
#> 10999 Wisconsin
#> 11000 Michigan
#> 11001 Alabama
#> 11002 Alaska
#> 11003 Arkansas
#> 11004 Hawaii
#> 11005 Kansas
#> 11006 Missouri
#> 11007 Montana
#> 11008 New Mexico
#> 11009 North Dakota
#> 11010 Oregon
#> 11011 Texas
#> 11012 Utah
#> 11013 Washington
#> 11014 Alaska
#> 11015 Arizona
#> 11016 California
#> 11017 Colorado
#> 11018 Connecticut
#> 11019 Idaho
#> 11020 Indiana
#> 11021 Kentucky
#> 11022 Maine
#> 11023 Minnesota
#> 11024 Mississippi
#> 11025 Montana
#> 11026 Nevada
#> 11027 New Mexico
#> 11028 New York
#> 11029 North Carolina
#> 11030 North Dakota
#> 11031 Ohio
#> 11032 Oklahoma
#> 11033 Oregon
#> 11034 South Dakota
#> 11035 Tennessee
#> 11036 Washington
#> 11037 Wisconsin
#> 11038 Wyoming
#> 11039 Alaska
#> 11040 Arizona
#> 11041 Arkansas
#> 11042 Colorado
#> 11043 Connecticut
#> 11044 Florida
#> 11045 Georgia
#> 11046 Hawaii
#> 11047 Idaho
#> 11048 Iowa
#> 11049 Kansas
#> 11050 Maine
#> 11051 Maryland
#> 11052 Michigan
#> 11053 Minnesota
#> 11054 Missouri
#> 11055 Montana
#> 11056 Nevada
#> 11057 New Hampshire
#> 11058 New Jersey
#> 11059 New York
#> 11060 North Carolina
#> 11061 Ohio
#> 11062 Oklahoma
#> 11063 Oregon
#> 11064 South Carolina
#> 11065 Tennessee
#> 11066 Vermont
#> 11067 West Virginia
#> 11068 Wyoming
#> 11069 Alaska
#> 11070 Florida
#> 11071 Kansas
#> 11072 North Carolina
#> 11073 South Dakota
#> 11074 Virginia
#> 11075 Alabama
#> 11076 Florida
#> 11077 Minnesota
#> 11078 Mississippi
#> 11079 North Dakota
#> 11080 South Carolina
#> 11081 South Dakota
#> 11082 Virginia
#> 11083 Washington
#> 11084 Wyoming
#> 11085 California
#> 11086 Hawaii
#> 11087 Illinois
#> 11088 Maryland
#> 11089 Massachusetts
#> 11090 New Jersey
#> 11091 New York
#> 11092 Rhode Island
#> 11093 Vermont
#> 11094 Washington
#> 11095 Arizona
#> 11096 Delaware
#> 11097 Florida
#> 11098 Indiana
#> 11099 Kansas
#> 11100 Louisiana
#> 11101 Minnesota
#> 11102 Missouri
#> 11103 Nebraska
#> 11104 New Hampshire
#> 11105 New Jersey
#> 11106 North Dakota
#> 11107 South Dakota
#> 11108 Vermont
#> 11109 West Virginia
#> 11110 Wisconsin
#> 11111 Louisiana
#> 11112 Utah
#> 11113 Colorado
#> 11114 Connecticut
#> 11115 Iowa
#> 11116 Kentucky
#> 11117 Massachusetts
#> 11118 Nebraska
#> 11119 North Dakota
#> 11120 Ohio
#> 11121 South Carolina
#> 11122 Texas
#> 11123 Vermont
#> 11124 Arkansas
#> 11125 California
#> 11126 Colorado
#> 11127 Connecticut
#> 11128 Georgia
#> 11129 Hawaii
#> 11130 Indiana
#> 11131 Iowa
#> 11132 Kentucky
#> 11133 Louisiana
#> 11134 Maine
#> 11135 Maryland
#> 11136 Massachusetts
#> 11137 Michigan
#> 11138 Minnesota
#> 11139 Montana
#> 11140 Nevada
#> 11141 New Hampshire
#> 11142 New Jersey
#> 11143 New Mexico
#> 11144 New York
#> 11145 North Carolina
#> 11146 North Dakota
#> 11147 Ohio
#> 11148 Oklahoma
#> 11149 Oregon
#> 11150 Pennsylvania
#> 11151 Rhode Island
#> 11152 Texas
#> 11153 Utah
#> 11154 Vermont
#> 11155 Virginia
#> 11156 Washington
#> 11157 West Virginia
#> 11158 Wisconsin
#> 11159 Wyoming
#> 11160 Arizona
#> 11161 Arkansas
#> 11162 California
#> 11163 Colorado
#> 11164 Connecticut
#> 11165 Delaware
#> 11166 Florida
#> 11167 Georgia
#> 11168 Hawaii
#> 11169 Illinois
#> 11170 Indiana
#> 11171 Iowa
#> 11172 Kentucky
#> 11173 Louisiana
#> 11174 Maine
#> 11175 Maryland
#> 11176 Massachusetts
#> 11177 Michigan
#> 11178 Minnesota
#> 11179 Missouri
#> 11180 Montana
#> 11181 Nevada
#> 11182 New Hampshire
#> 11183 New Jersey
#> 11184 New Mexico
#> 11185 New York
#> 11186 North Carolina
#> 11187 North Dakota
#> 11188 Ohio
#> 11189 Oklahoma
#> 11190 Oregon
#> 11191 Pennsylvania
#> 11192 Rhode Island
#> 11193 Utah
#> 11194 Vermont
#> 11195 Virginia
#> 11196 Washington
#> 11197 West Virginia
#> 11198 Wisconsin
#> 11199 Wyoming
#> 11200 Alaska
#> 11201 Arkansas
#> 11202 California
#> 11203 Connecticut
#> 11204 Florida
#> 11205 Illinois
#> 11206 Indiana
#> 11207 Iowa
#> 11208 Kentucky
#> 11209 Louisiana
#> 11210 Maine
#> 11211 Maryland
#> 11212 Minnesota
#> 11213 Missouri
#> 11214 Nebraska
#> 11215 Nevada
#> 11216 New Hampshire
#> 11217 New Jersey
#> 11218 New York
#> 11219 North Carolina
#> 11220 North Dakota
#> 11221 Ohio
#> 11222 Oklahoma
#> 11223 Oregon
#> 11224 South Carolina
#> 11225 South Dakota
#> 11226 Tennessee
#> 11227 Texas
#> 11228 Utah
#> 11229 West Virginia
#> 11230 Arizona
#> 11231 Colorado
#> 11232 Massachusetts
#> 11233 Montana
#> 11234 Nebraska
#> 11235 New Mexico
#> 11236 North Dakota
#> 11237 South Dakota
#> 11238 Arizona
#> 11239 Arkansas
#> 11240 Colorado
#> 11241 Florida
#> 11242 Hawaii
#> 11243 Idaho
#> 11244 Illinois
#> 11245 Iowa
#> 11246 Kansas
#> 11247 Kentucky
#> 11248 Maine
#> 11249 Maryland
#> 11250 Mississippi
#> 11251 Missouri
#> 11252 Nebraska
#> 11253 New Jersey
#> 11254 New Mexico
#> 11255 New York
#> 11256 Ohio
#> 11257 Oklahoma
#> 11258 Texas
#> 11259 Utah
#> 11260 Vermont
#> 11261 Virginia
#> 11262 Washington
#> 11263 West Virginia
#> 11264 Alaska
#> 11265 Arizona
#> 11266 Colorado
#> 11267 Hawaii
#> 11268 Idaho
#> 11269 Illinois
#> 11270 Louisiana
#> 11271 Maine
#> 11272 Michigan
#> 11273 Minnesota
#> 11274 Montana
#> 11275 Nebraska
#> 11276 New Hampshire
#> 11277 Oklahoma
#> 11278 South Carolina
#> 11279 Tennessee
#> 11280 Virginia
#> 11281 Washington
#> 11282 Delaware
#> 11283 Kansas
#> 11284 Minnesota
#> 11285 Montana
#> 11286 Nevada
#> 11287 New Hampshire
#> 11288 New Mexico
#> 11289 Oklahoma
#> 11290 Oregon
#> 11291 Wisconsin
#> 11292 Wyoming
#> 11293 Alabama
#> 11294 Arizona
#> 11295 Arkansas
#> 11296 California
#> 11297 Colorado
#> 11298 Connecticut
#> 11299 Delaware
#> 11300 Florida
#> 11301 Georgia
#> 11302 Idaho
#> 11303 Illinois
#> 11304 Indiana
#> 11305 Iowa
#> 11306 Kansas
#> 11307 Kentucky
#> 11308 Louisiana
#> 11309 Maine
#> 11310 Maryland
#> 11311 Massachusetts
#> 11312 Michigan
#> 11313 Minnesota
#> 11314 Mississippi
#> 11315 Missouri
#> 11316 Montana
#> 11317 Nebraska
#> 11318 Nevada
#> 11319 New Hampshire
#> 11320 New Jersey
#> 11321 New Mexico
#> 11322 New York
#> 11323 North Carolina
#> 11324 North Dakota
#> 11325 Ohio
#> 11326 Oklahoma
#> 11327 Oregon
#> 11328 Pennsylvania
#> 11329 Rhode Island
#> 11330 South Carolina
#> 11331 South Dakota
#> 11332 Tennessee
#> 11333 Texas
#> 11334 Utah
#> 11335 Vermont
#> 11336 Virginia
#> 11337 Washington
#> 11338 West Virginia
#> 11339 Wisconsin
#> 11340 Wyoming
#> 11341 Alabama
#> 11342 Arizona
#> 11343 Arkansas
#> 11344 California
#> 11345 Colorado
#> 11346 Connecticut
#> 11347 Delaware
#> 11348 Florida
#> 11349 Georgia
#> 11350 Idaho
#> 11351 Illinois
#> 11352 Indiana
#> 11353 Iowa
#> 11354 Kansas
#> 11355 Kentucky
#> 11356 Louisiana
#> 11357 Maine
#> 11358 Maryland
#> 11359 Massachusetts
#> 11360 Michigan
#> 11361 Minnesota
#> 11362 Mississippi
#> 11363 Missouri
#> 11364 Montana
#> 11365 Nebraska
#> 11366 Nevada
#> 11367 New Hampshire
#> 11368 New Jersey
#> 11369 New Mexico
#> 11370 New York
#> 11371 North Carolina
#> 11372 North Dakota
#> 11373 Ohio
#> 11374 Oklahoma
#> 11375 Oregon
#> 11376 Pennsylvania
#> 11377 Rhode Island
#> 11378 South Carolina
#> 11379 South Dakota
#> 11380 Tennessee
#> 11381 Texas
#> 11382 Utah
#> 11383 Vermont
#> 11384 Virginia
#> 11385 Washington
#> 11386 West Virginia
#> 11387 Wisconsin
#> 11388 Wyoming
#> 11389 Arizona
#> 11390 Arkansas
#> 11391 Iowa
#> 11392 Maine
#> 11393 Maryland
#> 11394 Mississippi
#> 11395 Nebraska
#> 11396 North Carolina
#> 11397 North Dakota
#> 11398 South Dakota
#> 11399 Texas
#> 11400 Utah
#> 11401 Alabama
#> 11402 California
#> 11403 Delaware
#> 11404 Florida
#> 11405 Georgia
#> 11406 Indiana
#> 11407 Kentucky
#> 11408 Louisiana
#> 11409 Maine
#> 11410 Maryland
#> 11411 Mississippi
#> 11412 Nebraska
#> 11413 New Jersey
#> 11414 New Mexico
#> 11415 North Carolina
#> 11416 Ohio
#> 11417 Rhode Island
#> 11418 Tennessee
#> 11419 Virginia
#> 11420 Alabama
#> 11421 Arizona
#> 11422 Arkansas
#> 11423 California
#> 11424 Colorado
#> 11425 Connecticut
#> 11426 Delaware
#> 11427 Florida
#> 11428 Georgia
#> 11429 Idaho
#> 11430 Illinois
#> 11431 Indiana
#> 11432 Iowa
#> 11433 Kansas
#> 11434 Kentucky
#> 11435 Louisiana
#> 11436 Maine
#> 11437 Maryland
#> 11438 Massachusetts
#> 11439 Michigan
#> 11440 Minnesota
#> 11441 Mississippi
#> 11442 Missouri
#> 11443 Montana
#> 11444 Nebraska
#> 11445 Nevada
#> 11446 New Hampshire
#> 11447 New Jersey
#> 11448 New Mexico
#> 11449 New York
#> 11450 North Carolina
#> 11451 North Dakota
#> 11452 Ohio
#> 11453 Oklahoma
#> 11454 Oregon
#> 11455 Pennsylvania
#> 11456 Rhode Island
#> 11457 South Carolina
#> 11458 South Dakota
#> 11459 Tennessee
#> 11460 Texas
#> 11461 Utah
#> 11462 Vermont
#> 11463 Virginia
#> 11464 Washington
#> 11465 West Virginia
#> 11466 Wisconsin
#> 11467 Wyoming
#> 11468 Alabama
#> 11469 Alaska
#> 11470 Arizona
#> 11471 California
#> 11472 Colorado
#> 11473 Florida
#> 11474 Georgia
#> 11475 Hawaii
#> 11476 Idaho
#> 11477 Illinois
#> 11478 Indiana
#> 11479 Iowa
#> 11480 Kansas
#> 11481 Kentucky
#> 11482 Louisiana
#> 11483 Maine
#> 11484 Maryland
#> 11485 Massachusetts
#> 11486 Michigan
#> 11487 Minnesota
#> 11488 Montana
#> 11489 Nebraska
#> 11490 Nevada
#> 11491 New Hampshire
#> 11492 New Jersey
#> 11493 New Mexico
#> 11494 New York
#> 11495 North Carolina
#> 11496 North Dakota
#> 11497 Ohio
#> 11498 Oklahoma
#> 11499 Oregon
#> 11500 Pennsylvania
#> 11501 Rhode Island
#> 11502 South Carolina
#> 11503 South Dakota
#> 11504 Tennessee
#> 11505 Texas
#> 11506 Utah
#> 11507 Vermont
#> 11508 Washington
#> 11509 Wisconsin
#> 11510 Wyoming
#> 11511 Kentucky
#> 11512 Michigan
#> 11513 Ohio
#> 11514 Vermont
#> 11515 Virginia
#> 11516 Alabama
#> 11517 Arizona
#> 11518 Arkansas
#> 11519 California
#> 11520 Colorado
#> 11521 Florida
#> 11522 Georgia
#> 11523 Idaho
#> 11524 Iowa
#> 11525 Kansas
#> 11526 Kentucky
#> 11527 Louisiana
#> 11528 Maine
#> 11529 Maryland
#> 11530 Massachusetts
#> 11531 Minnesota
#> 11532 Mississippi
#> 11533 Missouri
#> 11534 Montana
#> 11535 Nebraska
#> 11536 Nevada
#> 11537 New Jersey
#> 11538 New Mexico
#> 11539 New York
#> 11540 North Carolina
#> 11541 Ohio
#> 11542 Oklahoma
#> 11543 Oregon
#> 11544 Pennsylvania
#> 11545 South Carolina
#> 11546 South Dakota
#> 11547 Tennessee
#> 11548 Texas
#> 11549 Utah
#> 11550 Vermont
#> 11551 Virginia
#> 11552 Washington
#> 11553 West Virginia
#> 11554 Wyoming
#> 11555 Alaska
#> 11556 Arizona
#> 11557 California
#> 11558 Colorado
#> 11559 Florida
#> 11560 Hawaii
#> 11561 Idaho
#> 11562 Illinois
#> 11563 Kansas
#> 11564 Kentucky
#> 11565 Michigan
#> 11566 Minnesota
#> 11567 Missouri
#> 11568 Montana
#> 11569 Nevada
#> 11570 New Mexico
#> 11571 North Dakota
#> 11572 Ohio
#> 11573 Oregon
#> 11574 South Carolina
#> 11575 South Dakota
#> 11576 Texas
#> 11577 Utah
#> 11578 Washington
#> 11579 West Virginia
#> 11580 Wisconsin
#> 11581 Wyoming
#> 11582 Alabama
#> 11583 Arizona
#> 11584 Arkansas
#> 11585 Florida
#> 11586 Idaho
#> 11587 Indiana
#> 11588 Kansas
#> 11589 Kentucky
#> 11590 Louisiana
#> 11591 Maine
#> 11592 Massachusetts
#> 11593 Michigan
#> 11594 Mississippi
#> 11595 Missouri
#> 11596 Montana
#> 11597 Nebraska
#> 11598 North Carolina
#> 11599 North Dakota
#> 11600 Ohio
#> 11601 Oklahoma
#> 11602 Pennsylvania
#> 11603 Rhode Island
#> 11604 South Carolina
#> 11605 Tennessee
#> 11606 Texas
#> 11607 Utah
#> 11608 Wisconsin
#> 11609 Wyoming
#> 11610 Louisiana
#> 11611 Alabama
#> 11612 Delaware
#> 11613 Illinois
#> 11614 Maine
#> 11615 New Mexico
#> 11616 North Dakota
#> 11617 Oklahoma
#> 11618 Texas
#> 11619 Utah
#> 11620 Washington
#> 11621 Wyoming
#> 11622 Alabama
#> 11623 California
#> 11624 Colorado
#> 11625 Hawaii
#> 11626 Illinois
#> 11627 Kansas
#> 11628 Minnesota
#> 11629 Montana
#> 11630 New Jersey
#> 11631 North Dakota
#> 11632 Ohio
#> 11633 Rhode Island
#> 11634 Texas
#> 11635 Washington
#> 11636 Alabama
#> 11637 Arkansas
#> 11638 California
#> 11639 Colorado
#> 11640 Connecticut
#> 11641 Delaware
#> 11642 Florida
#> 11643 Georgia
#> 11644 Idaho
#> 11645 Illinois
#> 11646 Indiana
#> 11647 Iowa
#> 11648 Kansas
#> 11649 Kentucky
#> 11650 Louisiana
#> 11651 Maine
#> 11652 Maryland
#> 11653 Massachusetts
#> 11654 Michigan
#> 11655 Minnesota
#> 11656 Mississippi
#> 11657 Missouri
#> 11658 Montana
#> 11659 Nebraska
#> 11660 Nevada
#> 11661 New Hampshire
#> 11662 New Jersey
#> 11663 New Mexico
#> 11664 New York
#> 11665 North Carolina
#> 11666 North Dakota
#> 11667 Ohio
#> 11668 Oklahoma
#> 11669 Oregon
#> 11670 Pennsylvania
#> 11671 Rhode Island
#> 11672 South Carolina
#> 11673 South Dakota
#> 11674 Tennessee
#> 11675 Texas
#> 11676 Utah
#> 11677 Vermont
#> 11678 Virginia
#> 11679 Washington
#> 11680 West Virginia
#> 11681 Wisconsin
#> 11682 Alaska
#> 11683 Colorado
#> 11684 Delaware
#> 11685 Florida
#> 11686 Georgia
#> 11687 Idaho
#> 11688 Illinois
#> 11689 Iowa
#> 11690 Kansas
#> 11691 Maryland
#> 11692 Minnesota
#> 11693 Nebraska
#> 11694 Nevada
#> 11695 New Hampshire
#> 11696 New Jersey
#> 11697 North Dakota
#> 11698 Oklahoma
#> 11699 South Dakota
#> 11700 Tennessee
#> 11701 Texas
#> 11702 Utah
#> 11703 Virginia
#> 11704 West Virginia
#> 11705 Wyoming
#> 11706 Alabama
#> 11707 Arizona
#> 11708 Arkansas
#> 11709 California
#> 11710 Colorado
#> 11711 Connecticut
#> 11712 Delaware
#> 11713 Florida
#> 11714 Georgia
#> 11715 Idaho
#> 11716 Illinois
#> 11717 Indiana
#> 11718 Iowa
#> 11719 Kansas
#> 11720 Kentucky
#> 11721 Louisiana
#> 11722 Maine
#> 11723 Maryland
#> 11724 Massachusetts
#> 11725 Michigan
#> 11726 Minnesota
#> 11727 Mississippi
#> 11728 Missouri
#> 11729 Montana
#> 11730 Nebraska
#> 11731 Nevada
#> 11732 New Hampshire
#> 11733 New Jersey
#> 11734 New Mexico
#> 11735 New York
#> 11736 North Carolina
#> 11737 North Dakota
#> 11738 Ohio
#> 11739 Oklahoma
#> 11740 Oregon
#> 11741 Pennsylvania
#> 11742 Rhode Island
#> 11743 South Carolina
#> 11744 South Dakota
#> 11745 Tennessee
#> 11746 Texas
#> 11747 Utah
#> 11748 Vermont
#> 11749 Virginia
#> 11750 Washington
#> 11751 West Virginia
#> 11752 Wisconsin
#> 11753 Wyoming
#> 11754 Alabama
#> 11755 Arkansas
#> 11756 Connecticut
#> 11757 Georgia
#> 11758 Hawaii
#> 11759 Montana
#> 11760 Nevada
#> 11761 New Mexico
#> 11762 South Carolina
#> 11763 Alabama
#> 11764 Hawaii
#> 11765 Iowa
#> 11766 Kansas
#> 11767 Mississippi
#> 11768 Montana
#> 11769 New Hampshire
#> 11770 New Mexico
#> 11771 Alabama
#> 11772 Alaska
#> 11773 Arizona
#> 11774 Arkansas
#> 11775 California
#> 11776 Colorado
#> 11777 Connecticut
#> 11778 Delaware
#> 11779 Florida
#> 11780 Hawaii
#> 11781 Idaho
#> 11782 Illinois
#> 11783 Iowa
#> 11784 Kansas
#> 11785 Kentucky
#> 11786 Maine
#> 11787 Maryland
#> 11788 Minnesota
#> 11789 Mississippi
#> 11790 Montana
#> 11791 Nebraska
#> 11792 Nevada
#> 11793 New Jersey
#> 11794 New Mexico
#> 11795 North Dakota
#> 11796 Ohio
#> 11797 Oklahoma
#> 11798 Oregon
#> 11799 Pennsylvania
#> 11800 South Dakota
#> 11801 Tennessee
#> 11802 Texas
#> 11803 Utah
#> 11804 Vermont
#> 11805 Virginia
#> 11806 Washington
#> 11807 Wisconsin
#> 11808 Wyoming
#> 11809 Arkansas
#> 11810 Colorado
#> 11811 Florida
#> 11812 Georgia
#> 11813 Idaho
#> 11814 Illinois
#> 11815 Indiana
#> 11816 Kansas
#> 11817 Kentucky
#> 11818 Louisiana
#> 11819 Minnesota
#> 11820 Missouri
#> 11821 New Jersey
#> 11822 New Mexico
#> 11823 New York
#> 11824 North Carolina
#> 11825 Ohio
#> 11826 Oklahoma
#> 11827 Oregon
#> 11828 Pennsylvania
#> 11829 South Carolina
#> 11830 Tennessee
#> 11831 Texas
#> 11832 Virginia
#> 11833 Washington
#> 11834 California
#> 11835 Hawaii
#> 11836 Idaho
#> 11837 Illinois
#> 11838 Indiana
#> 11839 Kentucky
#> 11840 Massachusetts
#> 11841 Michigan
#> 11842 Nevada
#> 11843 New York
#> 11844 Oklahoma
#> 11845 Rhode Island
#> 11846 Texas
#> 11847 Utah
#> 11848 Washington
#> 11849 Arkansas
#> 11850 California
#> 11851 Colorado
#> 11852 Connecticut
#> 11853 Florida
#> 11854 Idaho
#> 11855 Illinois
#> 11856 Indiana
#> 11857 Kansas
#> 11858 Kentucky
#> 11859 Louisiana
#> 11860 Minnesota
#> 11861 Missouri
#> 11862 New Jersey
#> 11863 New York
#> 11864 Ohio
#> 11865 Oklahoma
#> 11866 Oregon
#> 11867 Pennsylvania
#> 11868 South Carolina
#> 11869 South Dakota
#> 11870 Tennessee
#> 11871 Texas
#> 11872 Virginia
#> 11873 Washington
#> 11874 South Dakota
#> 11875 Alabama
#> 11876 Arizona
#> 11877 Georgia
#> 11878 Hawaii
#> 11879 Idaho
#> 11880 Iowa
#> 11881 Louisiana
#> 11882 Maryland
#> 11883 Massachusetts
#> 11884 Montana
#> 11885 New Mexico
#> 11886 New York
#> 11887 North Carolina
#> 11888 North Dakota
#> 11889 Oregon
#> 11890 Rhode Island
#> 11891 South Carolina
#> 11892 Utah
#> 11893 Vermont
#> 11894 Arizona
#> 11895 Idaho
#> 11896 Kentucky
#> 11897 Maryland
#> 11898 Massachusetts
#> 11899 Michigan
#> 11900 Missouri
#> 11901 Montana
#> 11902 New Mexico
#> 11903 New York
#> 11904 Oklahoma
#> 11905 Oregon
#> 11906 Arizona
#> 11907 Arkansas
#> 11908 California
#> 11909 Colorado
#> 11910 Delaware
#> 11911 Florida
#> 11912 Georgia
#> 11913 Illinois
#> 11914 Indiana
#> 11915 Kansas
#> 11916 Louisiana
#> 11917 Maine
#> 11918 Michigan
#> 11919 Minnesota
#> 11920 Mississippi
#> 11921 Nebraska
#> 11922 New Hampshire
#> 11923 New Jersey
#> 11924 New Mexico
#> 11925 New York
#> 11926 North Carolina
#> 11927 North Dakota
#> 11928 Ohio
#> 11929 Oklahoma
#> 11930 Oregon
#> 11931 Pennsylvania
#> 11932 Rhode Island
#> 11933 South Carolina
#> 11934 Tennessee
#> 11935 Texas
#> 11936 Utah
#> 11937 Vermont
#> 11938 Virginia
#> 11939 Washington
#> 11940 West Virginia
#> 11941 Wyoming
#> 11942 Alabama
#> 11943 Arizona
#> 11944 Arkansas
#> 11945 California
#> 11946 Colorado
#> 11947 Connecticut
#> 11948 Delaware
#> 11949 Florida
#> 11950 Georgia
#> 11951 Idaho
#> 11952 Illinois
#> 11953 Indiana
#> 11954 Iowa
#> 11955 Kansas
#> 11956 Kentucky
#> 11957 Louisiana
#> 11958 Maine
#> 11959 Maryland
#> 11960 Massachusetts
#> 11961 Michigan
#> 11962 Minnesota
#> 11963 Mississippi
#> 11964 Missouri
#> 11965 Montana
#> 11966 Nebraska
#> 11967 Nevada
#> 11968 New Hampshire
#> 11969 New Jersey
#> 11970 New Mexico
#> 11971 New York
#> 11972 North Carolina
#> 11973 North Dakota
#> 11974 Ohio
#> 11975 Oklahoma
#> 11976 Oregon
#> 11977 Pennsylvania
#> 11978 Rhode Island
#> 11979 South Carolina
#> 11980 South Dakota
#> 11981 Tennessee
#> 11982 Texas
#> 11983 Utah
#> 11984 Vermont
#> 11985 Virginia
#> 11986 Washington
#> 11987 West Virginia
#> 11988 Wisconsin
#> 11989 Wyoming
#> 11990 Arizona
#> 11991 Missouri
#> 11992 Oregon
#> 11993 Tennessee
#> 11994 Alabama
#> 11995 Alaska
#> 11996 Arizona
#> 11997 Arkansas
#> 11998 California
#> 11999 Colorado
#> 12000 Connecticut
#> 12001 Delaware
#> 12002 Florida
#> 12003 Georgia
#> 12004 Hawaii
#> 12005 Idaho
#> 12006 Illinois
#> 12007 Indiana
#> 12008 Iowa
#> 12009 Kentucky
#> 12010 Louisiana
#> 12011 Maine
#> 12012 Maryland
#> 12013 Massachusetts
#> 12014 Michigan
#> 12015 Minnesota
#> 12016 Mississippi
#> 12017 Missouri
#> 12018 Montana
#> 12019 Nebraska
#> 12020 Nevada
#> 12021 New Jersey
#> 12022 New Mexico
#> 12023 New York
#> 12024 North Carolina
#> 12025 North Dakota
#> 12026 Ohio
#> 12027 Oklahoma
#> 12028 Pennsylvania
#> 12029 Rhode Island
#> 12030 South Carolina
#> 12031 South Dakota
#> 12032 Tennessee
#> 12033 Texas
#> 12034 Utah
#> 12035 Virginia
#> 12036 Washington
#> 12037 Wisconsin
#> 12038 Wyoming
#> 12039 Pennsylvania
#> 12040 Alabama
#> 12041 Arkansas
#> 12042 California
#> 12043 Colorado
#> 12044 Connecticut
#> 12045 Florida
#> 12046 Georgia
#> 12047 Idaho
#> 12048 Illinois
#> 12049 Indiana
#> 12050 Iowa
#> 12051 Kansas
#> 12052 Kentucky
#> 12053 Louisiana
#> 12054 Maine
#> 12055 Maryland
#> 12056 Massachusetts
#> 12057 Michigan
#> 12058 Minnesota
#> 12059 Mississippi
#> 12060 Missouri
#> 12061 Montana
#> 12062 Nebraska
#> 12063 Nevada
#> 12064 New Hampshire
#> 12065 New Jersey
#> 12066 New Mexico
#> 12067 New York
#> 12068 North Carolina
#> 12069 Oklahoma
#> 12070 Oregon
#> 12071 Pennsylvania
#> 12072 Rhode Island
#> 12073 South Carolina
#> 12074 Tennessee
#> 12075 Texas
#> 12076 Utah
#> 12077 Vermont
#> 12078 Virginia
#> 12079 Washington
#> 12080 West Virginia
#> 12081 Wisconsin
#> 12082 Wyoming
#> 12083 North Dakota
#> 12084 Arizona
#> 12085 California
#> 12086 Colorado
#> 12087 Connecticut
#> 12088 Delaware
#> 12089 Florida
#> 12090 Georgia
#> 12091 Hawaii
#> 12092 Idaho
#> 12093 Illinois
#> 12094 Indiana
#> 12095 Iowa
#> 12096 Kentucky
#> 12097 Louisiana
#> 12098 Maine
#> 12099 Maryland
#> 12100 Michigan
#> 12101 Missouri
#> 12102 Nebraska
#> 12103 Nevada
#> 12104 New Hampshire
#> 12105 New Mexico
#> 12106 North Carolina
#> 12107 North Dakota
#> 12108 Ohio
#> 12109 Oklahoma
#> 12110 Oregon
#> 12111 Pennsylvania
#> 12112 Rhode Island
#> 12113 Tennessee
#> 12114 Texas
#> 12115 Utah
#> 12116 Virginia
#> 12117 Washington
#> 12118 West Virginia
#> 12119 Arizona
#> 12120 Arkansas
#> 12121 California
#> 12122 Connecticut
#> 12123 Florida
#> 12124 Georgia
#> 12125 Hawaii
#> 12126 Idaho
#> 12127 Illinois
#> 12128 Indiana
#> 12129 Iowa
#> 12130 Kansas
#> 12131 Kentucky
#> 12132 Louisiana
#> 12133 Maine
#> 12134 Maryland
#> 12135 Michigan
#> 12136 Montana
#> 12137 Nebraska
#> 12138 Nevada
#> 12139 New York
#> 12140 North Dakota
#> 12141 Oklahoma
#> 12142 Pennsylvania
#> 12143 Rhode Island
#> 12144 Tennessee
#> 12145 Texas
#> 12146 Utah
#> 12147 Virginia
#> 12148 Washington
#> 12149 Wisconsin
#> 12150 Wyoming
#> 12151 Alabama
#> 12152 Arkansas
#> 12153 Colorado
#> 12154 Connecticut
#> 12155 Hawaii
#> 12156 Idaho
#> 12157 Iowa
#> 12158 Maine
#> 12159 Maryland
#> 12160 Montana
#> 12161 Nebraska
#> 12162 Nevada
#> 12163 New Mexico
#> 12164 Ohio
#> 12165 Pennsylvania
#> 12166 South Carolina
#> 12167 Utah
#> 12168 Washington
#> 12169 Wisconsin
#> 12170 Wyoming
#> 12171 Colorado
#> 12172 Missouri
#> 12173 Montana
#> 12174 New Mexico
#> 12175 North Carolina
#> 12176 Utah
#> 12177 Virginia
#> 12178 Alabama
#> 12179 Alaska
#> 12180 Florida
#> 12181 Georgia
#> 12182 Idaho
#> 12183 Illinois
#> 12184 Iowa
#> 12185 Kentucky
#> 12186 Mississippi
#> 12187 Nebraska
#> 12188 North Dakota
#> 12189 Oklahoma
#> 12190 Rhode Island
#> 12191 South Carolina
#> 12192 South Dakota
#> 12193 Tennessee
#> 12194 West Virginia
#> 12195 Wisconsin
#> 12196 Alabama
#> 12197 Alaska
#> 12198 Arizona
#> 12199 Arkansas
#> 12200 California
#> 12201 Colorado
#> 12202 Connecticut
#> 12203 Delaware
#> 12204 Florida
#> 12205 Georgia
#> 12206 Hawaii
#> 12207 Idaho
#> 12208 Illinois
#> 12209 Indiana
#> 12210 Iowa
#> 12211 Kansas
#> 12212 Kentucky
#> 12213 Louisiana
#> 12214 Maine
#> 12215 Maryland
#> 12216 Massachusetts
#> 12217 Minnesota
#> 12218 Mississippi
#> 12219 Missouri
#> 12220 Nebraska
#> 12221 Nevada
#> 12222 New Hampshire
#> 12223 New Mexico
#> 12224 North Carolina
#> 12225 North Dakota
#> 12226 Ohio
#> 12227 Oklahoma
#> 12228 Oregon
#> 12229 South Carolina
#> 12230 Texas
#> 12231 Utah
#> 12232 Vermont
#> 12233 Virginia
#> 12234 Washington
#> 12235 West Virginia
#> 12236 Wisconsin
#> 12237 Wyoming
#> 12238 Arizona
#> 12239 Arkansas
#> 12240 California
#> 12241 Connecticut
#> 12242 Delaware
#> 12243 Florida
#> 12244 Hawaii
#> 12245 Idaho
#> 12246 Illinois
#> 12247 Indiana
#> 12248 Iowa
#> 12249 Kansas
#> 12250 Maine
#> 12251 Montana
#> 12252 Nebraska
#> 12253 Nevada
#> 12254 New Jersey
#> 12255 New Mexico
#> 12256 North Carolina
#> 12257 North Dakota
#> 12258 Oregon
#> 12259 Rhode Island
#> 12260 South Dakota
#> 12261 Texas
#> 12262 Utah
#> 12263 Virginia
#> 12264 Colorado
#> 12265 North Dakota
#> 12266 Alabama
#> 12267 Colorado
#> 12268 Florida
#> 12269 Illinois
#> 12270 Indiana
#> 12271 Kentucky
#> 12272 Louisiana
#> 12273 Maine
#> 12274 Maryland
#> 12275 Massachusetts
#> 12276 Michigan
#> 12277 Mississippi
#> 12278 Missouri
#> 12279 Nevada
#> 12280 New Mexico
#> 12281 Ohio
#> 12282 Oklahoma
#> 12283 Pennsylvania
#> 12284 South Carolina
#> 12285 Texas
#> 12286 Virginia
#> 12287 Washington
#> 12288 West Virginia
#> 12289 Wisconsin
#> 12290 Wyoming
#> 12291 Alabama
#> 12292 Colorado
#> 12293 Florida
#> 12294 Illinois
#> 12295 Maryland
#> 12296 Massachusetts
#> 12297 Michigan
#> 12298 Mississippi
#> 12299 Nevada
#> 12300 New Mexico
#> 12301 Ohio
#> 12302 Pennsylvania
#> 12303 South Carolina
#> 12304 Tennessee
#> 12305 Texas
#> 12306 Virginia
#> 12307 Washington
#> 12308 West Virginia
#> 12309 Wisconsin
#> 12310 Wyoming
#> 12311 Alabama
#> 12312 Idaho
#> 12313 Illinois
#> 12314 Indiana
#> 12315 Kentucky
#> 12316 Maine
#> 12317 Massachusetts
#> 12318 Michigan
#> 12319 Mississippi
#> 12320 Nevada
#> 12321 New Mexico
#> 12322 New York
#> 12323 Ohio
#> 12324 Oklahoma
#> 12325 Pennsylvania
#> 12326 Rhode Island
#> 12327 Texas
#> 12328 Utah
#> 12329 Virginia
#> 12330 Washington
#> 12331 West Virginia
#> 12332 Wyoming
#> 12333 Delaware
#> 12334 Louisiana
#> 12335 Montana
#> 12336 New Hampshire
#> 12337 North Dakota
#> 12338 Pennsylvania
#> 12339 South Carolina
#> 12340 Alabama
#> 12341 Alaska
#> 12342 California
#> 12343 Connecticut
#> 12344 Delaware
#> 12345 Florida
#> 12346 Georgia
#> 12347 Hawaii
#> 12348 Illinois
#> 12349 Indiana
#> 12350 Iowa
#> 12351 Kentucky
#> 12352 Louisiana
#> 12353 Maine
#> 12354 Maryland
#> 12355 Michigan
#> 12356 Minnesota
#> 12357 Mississippi
#> 12358 New Jersey
#> 12359 New Mexico
#> 12360 New York
#> 12361 North Carolina
#> 12362 Oklahoma
#> 12363 Oregon
#> 12364 South Carolina
#> 12365 Tennessee
#> 12366 Texas
#> 12367 Washington
#> 12368 Wisconsin
#> 12369 Missouri
#> 12370 North Carolina
#> 12371 Rhode Island
#> 12372 South Carolina
#> 12373 Utah
#> 12374 Alabama
#> 12375 California
#> 12376 Connecticut
#> 12377 Delaware
#> 12378 Georgia
#> 12379 Hawaii
#> 12380 Illinois
#> 12381 Indiana
#> 12382 Iowa
#> 12383 Louisiana
#> 12384 Maryland
#> 12385 Michigan
#> 12386 New Jersey
#> 12387 New Mexico
#> 12388 New York
#> 12389 North Carolina
#> 12390 Oklahoma
#> 12391 Oregon
#> 12392 Tennessee
#> 12393 Texas
#> 12394 Washington
#> 12395 Alaska
#> 12396 Arizona
#> 12397 Arkansas
#> 12398 California
#> 12399 Connecticut
#> 12400 Hawaii
#> 12401 Indiana
#> 12402 Kentucky
#> 12403 Minnesota
#> 12404 New Hampshire
#> 12405 New Jersey
#> 12406 New Mexico
#> 12407 North Carolina
#> 12408 North Dakota
#> 12409 Oregon
#> 12410 South Dakota
#> 12411 Washington
#> 12412 Alabama
#> 12413 Alaska
#> 12414 Arizona
#> 12415 Arkansas
#> 12416 California
#> 12417 Colorado
#> 12418 Connecticut
#> 12419 Delaware
#> 12420 Florida
#> 12421 Hawaii
#> 12422 Idaho
#> 12423 Indiana
#> 12424 Iowa
#> 12425 Kansas
#> 12426 Kentucky
#> 12427 Maine
#> 12428 Maryland
#> 12429 Massachusetts
#> 12430 Michigan
#> 12431 Minnesota
#> 12432 Mississippi
#> 12433 Missouri
#> 12434 Montana
#> 12435 Nebraska
#> 12436 Nevada
#> 12437 New Hampshire
#> 12438 New Jersey
#> 12439 New Mexico
#> 12440 New York
#> 12441 North Carolina
#> 12442 North Dakota
#> 12443 Ohio
#> 12444 Oklahoma
#> 12445 Oregon
#> 12446 Pennsylvania
#> 12447 South Carolina
#> 12448 South Dakota
#> 12449 Tennessee
#> 12450 Texas
#> 12451 Utah
#> 12452 Vermont
#> 12453 Virginia
#> 12454 Washington
#> 12455 Wisconsin
#> 12456 Wyoming
#> 12457 Alabama
#> 12458 Arizona
#> 12459 Arkansas
#> 12460 California
#> 12461 Colorado
#> 12462 Connecticut
#> 12463 Delaware
#> 12464 Idaho
#> 12465 Indiana
#> 12466 Iowa
#> 12467 Kansas
#> 12468 Kentucky
#> 12469 Maine
#> 12470 Maryland
#> 12471 Michigan
#> 12472 Mississippi
#> 12473 Missouri
#> 12474 Montana
#> 12475 Nebraska
#> 12476 Nevada
#> 12477 New Mexico
#> 12478 North Carolina
#> 12479 North Dakota
#> 12480 Ohio
#> 12481 Oklahoma
#> 12482 Oregon
#> 12483 South Carolina
#> 12484 South Dakota
#> 12485 Tennessee
#> 12486 Texas
#> 12487 Utah
#> 12488 Vermont
#> 12489 Virginia
#> 12490 Washington
#> 12491 Wisconsin
#> 12492 Arizona
#> 12493 Arkansas
#> 12494 Georgia
#> 12495 Montana
#> 12496 New Jersey
#> 12497 Washington
#> 12498 West Virginia
#> 12499 California
#> 12500 Connecticut
#> 12501 Florida
#> 12502 Illinois
#> 12503 Indiana
#> 12504 Iowa
#> 12505 Kansas
#> 12506 Kentucky
#> 12507 Louisiana
#> 12508 Maine
#> 12509 Maryland
#> 12510 Massachusetts
#> 12511 Michigan
#> 12512 Minnesota
#> 12513 New Hampshire
#> 12514 New Jersey
#> 12515 New York
#> 12516 North Carolina
#> 12517 Pennsylvania
#> 12518 West Virginia
#> 12519 Wisconsin
#> 12520 Alabama
#> 12521 Arkansas
#> 12522 California
#> 12523 Colorado
#> 12524 Connecticut
#> 12525 Delaware
#> 12526 Florida
#> 12527 Georgia
#> 12528 Idaho
#> 12529 Illinois
#> 12530 Indiana
#> 12531 Iowa
#> 12532 Kansas
#> 12533 Kentucky
#> 12534 Louisiana
#> 12535 Maine
#> 12536 Maryland
#> 12537 Massachusetts
#> 12538 Michigan
#> 12539 Minnesota
#> 12540 Mississippi
#> 12541 Missouri
#> 12542 Montana
#> 12543 Nebraska
#> 12544 Nevada
#> 12545 New Hampshire
#> 12546 New Jersey
#> 12547 New Mexico
#> 12548 New York
#> 12549 North Carolina
#> 12550 North Dakota
#> 12551 Ohio
#> 12552 Oregon
#> 12553 Rhode Island
#> 12554 South Carolina
#> 12555 South Dakota
#> 12556 Tennessee
#> 12557 Texas
#> 12558 Utah
#> 12559 Vermont
#> 12560 Virginia
#> 12561 Washington
#> 12562 West Virginia
#> 12563 Wisconsin
#> 12564 Wyoming
#> 12565 Alaska
#> 12566 Arizona
#> 12567 Colorado
#> 12568 Hawaii
#> 12569 Idaho
#> 12570 Maine
#> 12571 Massachusetts
#> 12572 Michigan
#> 12573 Minnesota
#> 12574 Montana
#> 12575 Nebraska
#> 12576 New Jersey
#> 12577 New Mexico
#> 12578 North Dakota
#> 12579 South Carolina
#> 12580 South Dakota
#> 12581 Utah
#> 12582 Colorado
#> 12583 New Mexico
#> 12584 North Dakota
#> 12585 Utah
#> 12586 Maryland
#> 12587 Alabama
#> 12588 Alaska
#> 12589 Arizona
#> 12590 Arkansas
#> 12591 California
#> 12592 Colorado
#> 12593 Connecticut
#> 12594 Hawaii
#> 12595 Idaho
#> 12596 Illinois
#> 12597 Indiana
#> 12598 Iowa
#> 12599 Kansas
#> 12600 Maine
#> 12601 Maryland
#> 12602 Massachusetts
#> 12603 Michigan
#> 12604 Minnesota
#> 12605 Mississippi
#> 12606 Missouri
#> 12607 Montana
#> 12608 Nebraska
#> 12609 Nevada
#> 12610 New Hampshire
#> 12611 New Jersey
#> 12612 New Mexico
#> 12613 North Carolina
#> 12614 North Dakota
#> 12615 Ohio
#> 12616 Oklahoma
#> 12617 Oregon
#> 12618 Rhode Island
#> 12619 South Carolina
#> 12620 South Dakota
#> 12621 Tennessee
#> 12622 Texas
#> 12623 Utah
#> 12624 Vermont
#> 12625 Virginia
#> 12626 Washington
#> 12627 Wisconsin
#> 12628 Wyoming
#> 12629 Alabama
#> 12630 Alaska
#> 12631 Arizona
#> 12632 Arkansas
#> 12633 California
#> 12634 Colorado
#> 12635 Connecticut
#> 12636 Delaware
#> 12637 Florida
#> 12638 Georgia
#> 12639 Hawaii
#> 12640 Idaho
#> 12641 Illinois
#> 12642 Indiana
#> 12643 Iowa
#> 12644 Kansas
#> 12645 Kentucky
#> 12646 Louisiana
#> 12647 Maine
#> 12648 Maryland
#> 12649 Massachusetts
#> 12650 Michigan
#> 12651 Minnesota
#> 12652 Mississippi
#> 12653 Missouri
#> 12654 Montana
#> 12655 Nebraska
#> 12656 Nevada
#> 12657 New Hampshire
#> 12658 New Jersey
#> 12659 New Mexico
#> 12660 New York
#> 12661 North Carolina
#> 12662 North Dakota
#> 12663 Ohio
#> 12664 Oklahoma
#> 12665 Oregon
#> 12666 Rhode Island
#> 12667 South Carolina
#> 12668 South Dakota
#> 12669 Tennessee
#> 12670 Texas
#> 12671 Utah
#> 12672 Vermont
#> 12673 Virginia
#> 12674 Washington
#> 12675 Wisconsin
#> 12676 Wyoming
#> 12677 Colorado
#> 12678 Connecticut
#> 12679 Idaho
#> 12680 Iowa
#> 12681 Massachusetts
#> 12682 Michigan
#> 12683 North Dakota
#> 12684 Ohio
#> 12685 South Carolina
#> 12686 Texas
#> 12687 Utah
#> 12688 Vermont
#> 12689 Virginia
#> 12690 California
#> 12691 Connecticut
#> 12692 Delaware
#> 12693 Illinois
#> 12694 Maine
#> 12695 Massachusetts
#> 12696 Michigan
#> 12697 Montana
#> 12698 New Hampshire
#> 12699 New Jersey
#> 12700 New Mexico
#> 12701 New York
#> 12702 Ohio
#> 12703 Oregon
#> 12704 Pennsylvania
#> 12705 Rhode Island
#> 12706 Vermont
#> 12707 Wisconsin
#> 12708 Alabama
#> 12709 Alaska
#> 12710 Arizona
#> 12711 Arkansas
#> 12712 California
#> 12713 Colorado
#> 12714 Connecticut
#> 12715 Delaware
#> 12716 Florida
#> 12717 Georgia
#> 12718 Hawaii
#> 12719 Illinois
#> 12720 Indiana
#> 12721 Iowa
#> 12722 Kansas
#> 12723 Kentucky
#> 12724 Louisiana
#> 12725 Maine
#> 12726 Maryland
#> 12727 Massachusetts
#> 12728 Michigan
#> 12729 Minnesota
#> 12730 Mississippi
#> 12731 Missouri
#> 12732 Montana
#> 12733 Nevada
#> 12734 New Hampshire
#> 12735 New Jersey
#> 12736 New Mexico
#> 12737 New York
#> 12738 North Carolina
#> 12739 Ohio
#> 12740 Oklahoma
#> 12741 Oregon
#> 12742 Pennsylvania
#> 12743 Rhode Island
#> 12744 South Carolina
#> 12745 South Dakota
#> 12746 Tennessee
#> 12747 Texas
#> 12748 Utah
#> 12749 Vermont
#> 12750 Virginia
#> 12751 Washington
#> 12752 Wisconsin
#> 12753 Wyoming
#> 12754 Alabama
#> 12755 California
#> 12756 Florida
#> 12757 Hawaii
#> 12758 Idaho
#> 12759 Indiana
#> 12760 Iowa
#> 12761 Kentucky
#> 12762 Maine
#> 12763 Maryland
#> 12764 Massachusetts
#> 12765 Michigan
#> 12766 Minnesota
#> 12767 Montana
#> 12768 New Jersey
#> 12769 North Carolina
#> 12770 Ohio
#> 12771 Oklahoma
#> 12772 Oregon
#> 12773 Rhode Island
#> 12774 Utah
#> 12775 Virginia
#> 12776 Wisconsin
#> 12777 Missouri
#> 12778 Texas
#> 12779 Arizona
#> 12780 Iowa
#> 12781 Kansas
#> 12782 Kentucky
#> 12783 Louisiana
#> 12784 Mississippi
#> 12785 Missouri
#> 12786 North Dakota
#> 12787 Pennsylvania
#> 12788 Texas
#> 12789 Alabama
#> 12790 Arizona
#> 12791 Arkansas
#> 12792 California
#> 12793 Colorado
#> 12794 Connecticut
#> 12795 Delaware
#> 12796 Florida
#> 12797 Georgia
#> 12798 Idaho
#> 12799 Illinois
#> 12800 Indiana
#> 12801 Kentucky
#> 12802 Louisiana
#> 12803 Maine
#> 12804 Maryland
#> 12805 Massachusetts
#> 12806 Michigan
#> 12807 Minnesota
#> 12808 Mississippi
#> 12809 Missouri
#> 12810 Montana
#> 12811 Nebraska
#> 12812 Nevada
#> 12813 New Hampshire
#> 12814 New Jersey
#> 12815 New Mexico
#> 12816 New York
#> 12817 North Carolina
#> 12818 North Dakota
#> 12819 Ohio
#> 12820 Oregon
#> 12821 Pennsylvania
#> 12822 Rhode Island
#> 12823 South Carolina
#> 12824 South Dakota
#> 12825 Tennessee
#> 12826 Texas
#> 12827 Vermont
#> 12828 Virginia
#> 12829 Washington
#> 12830 West Virginia
#> 12831 Wisconsin
#> 12832 Arizona
#> 12833 Arkansas
#> 12834 California
#> 12835 Connecticut
#> 12836 Delaware
#> 12837 Georgia
#> 12838 Idaho
#> 12839 Illinois
#> 12840 Indiana
#> 12841 Iowa
#> 12842 Kansas
#> 12843 Louisiana
#> 12844 Maine
#> 12845 Maryland
#> 12846 Massachusetts
#> 12847 Michigan
#> 12848 Minnesota
#> 12849 Missouri
#> 12850 Montana
#> 12851 New Hampshire
#> 12852 New Jersey
#> 12853 New Mexico
#> 12854 New York
#> 12855 North Carolina
#> 12856 North Dakota
#> 12857 Ohio
#> 12858 Oregon
#> 12859 Pennsylvania
#> 12860 Rhode Island
#> 12861 South Carolina
#> 12862 Texas
#> 12863 Utah
#> 12864 Vermont
#> 12865 West Virginia
#> 12866 Wisconsin
#> 12867 Alaska
#> 12868 California
#> 12869 Colorado
#> 12870 Connecticut
#> 12871 Illinois
#> 12872 Indiana
#> 12873 Massachusetts
#> 12874 Michigan
#> 12875 Minnesota
#> 12876 New Hampshire
#> 12877 New Jersey
#> 12878 New York
#> 12879 Oregon
#> 12880 Pennsylvania
#> 12881 Rhode Island
#> 12882 Wisconsin
#> 12883 Alaska
#> 12884 California
#> 12885 Colorado
#> 12886 Connecticut
#> 12887 Illinois
#> 12888 Indiana
#> 12889 Massachusetts
#> 12890 Michigan
#> 12891 Minnesota
#> 12892 Montana
#> 12893 New Hampshire
#> 12894 New Jersey
#> 12895 New York
#> 12896 Oregon
#> 12897 Pennsylvania
#> 12898 Wisconsin
#> 12899 Alaska
#> 12900 Colorado
#> 12901 Connecticut
#> 12902 Indiana
#> 12903 Kansas
#> 12904 Massachusetts
#> 12905 Michigan
#> 12906 New Jersey
#> 12907 New York
#> 12908 Ohio
#> 12909 Oregon
#> 12910 Pennsylvania
#> 12911 Rhode Island
#> 12912 Washington
#> 12913 Alaska
#> 12914 Arizona
#> 12915 California
#> 12916 Colorado
#> 12917 Connecticut
#> 12918 Delaware
#> 12919 Florida
#> 12920 Hawaii
#> 12921 Idaho
#> 12922 Illinois
#> 12923 Indiana
#> 12924 Iowa
#> 12925 Kansas
#> 12926 Kentucky
#> 12927 Louisiana
#> 12928 Maine
#> 12929 Maryland
#> 12930 Massachusetts
#> 12931 Michigan
#> 12932 Minnesota
#> 12933 Missouri
#> 12934 Montana
#> 12935 Nebraska
#> 12936 Nevada
#> 12937 New Hampshire
#> 12938 New Jersey
#> 12939 New Mexico
#> 12940 New York
#> 12941 Ohio
#> 12942 Oklahoma
#> 12943 Oregon
#> 12944 Pennsylvania
#> 12945 Rhode Island
#> 12946 South Dakota
#> 12947 Tennessee
#> 12948 Texas
#> 12949 Utah
#> 12950 Vermont
#> 12951 Virginia
#> 12952 Washington
#> 12953 West Virginia
#> 12954 Wisconsin
#> 12955 Wyoming
#> 12956 Colorado
#> 12957 Connecticut
#> 12958 Hawaii
#> 12959 Indiana
#> 12960 Iowa
#> 12961 Maine
#> 12962 Maryland
#> 12963 Massachusetts
#> 12964 Minnesota
#> 12965 New Hampshire
#> 12966 New Jersey
#> 12967 New York
#> 12968 Ohio
#> 12969 Pennsylvania
#> 12970 Washington
#> 12971 Wisconsin
#> 12972 Alaska
#> 12973 California
#> 12974 Colorado
#> 12975 Connecticut
#> 12976 Kentucky
#> 12977 Massachusetts
#> 12978 Michigan
#> 12979 Minnesota
#> 12980 New Hampshire
#> 12981 New Jersey
#> 12982 New York
#> 12983 Oregon
#> 12984 Rhode Island
#> 12985 Vermont
#> 12986 Alaska
#> 12987 Arkansas
#> 12988 California
#> 12989 Colorado
#> 12990 Connecticut
#> 12991 Florida
#> 12992 Illinois
#> 12993 Kansas
#> 12994 Kentucky
#> 12995 Maryland
#> 12996 Massachusetts
#> 12997 Minnesota
#> 12998 Missouri
#> 12999 Montana
#> 13000 Nebraska
#> 13001 Nevada
#> 13002 New Jersey
#> 13003 Oklahoma
#> 13004 Rhode Island
#> 13005 Tennessee
#> 13006 Texas
#> 13007 Utah
#> 13008 Virginia
#> 13009 Washington
#> 13010 West Virginia
#> 13011 Arizona
#> 13012 California
#> 13013 Colorado
#> 13014 Connecticut
#> 13015 Delaware
#> 13016 Florida
#> 13017 Georgia
#> 13018 Idaho
#> 13019 Illinois
#> 13020 Indiana
#> 13021 Louisiana
#> 13022 Michigan
#> 13023 Minnesota
#> 13024 Mississippi
#> 13025 Nevada
#> 13026 New Jersey
#> 13027 New Mexico
#> 13028 New York
#> 13029 North Carolina
#> 13030 North Dakota
#> 13031 Ohio
#> 13032 Oklahoma
#> 13033 Oregon
#> 13034 Rhode Island
#> 13035 Tennessee
#> 13036 Utah
#> 13037 Washington
#> 13038 Wisconsin
#> 13039 Alabama
#> 13040 Alaska
#> 13041 Arizona
#> 13042 Arkansas
#> 13043 California
#> 13044 Colorado
#> 13045 Connecticut
#> 13046 Florida
#> 13047 Georgia
#> 13048 Hawaii
#> 13049 Idaho
#> 13050 Illinois
#> 13051 Indiana
#> 13052 Iowa
#> 13053 Kansas
#> 13054 Kentucky
#> 13055 Louisiana
#> 13056 Maryland
#> 13057 Massachusetts
#> 13058 Michigan
#> 13059 Minnesota
#> 13060 Mississippi
#> 13061 Missouri
#> 13062 Montana
#> 13063 Nebraska
#> 13064 Nevada
#> 13065 New Hampshire
#> 13066 New Jersey
#> 13067 New Mexico
#> 13068 New York
#> 13069 North Carolina
#> 13070 North Dakota
#> 13071 Ohio
#> 13072 Oklahoma
#> 13073 Oregon
#> 13074 Pennsylvania
#> 13075 Rhode Island
#> 13076 South Carolina
#> 13077 South Dakota
#> 13078 Tennessee
#> 13079 Texas
#> 13080 Utah
#> 13081 Vermont
#> 13082 Virginia
#> 13083 Washington
#> 13084 West Virginia
#> 13085 Wisconsin
#> 13086 Wyoming
#> 13087 Virginia
#> 13088 Alabama
#> 13089 Arizona
#> 13090 Arkansas
#> 13091 Connecticut
#> 13092 Delaware
#> 13093 Florida
#> 13094 Georgia
#> 13095 Hawaii
#> 13096 Idaho
#> 13097 Illinois
#> 13098 Kansas
#> 13099 Michigan
#> 13100 Minnesota
#> 13101 Mississippi
#> 13102 Nevada
#> 13103 New Mexico
#> 13104 New York
#> 13105 North Carolina
#> 13106 Oklahoma
#> 13107 Pennsylvania
#> 13108 South Carolina
#> 13109 South Dakota
#> 13110 Tennessee
#> 13111 Texas
#> 13112 Utah
#> 13113 Virginia
#> 13114 Washington
#> 13115 Wisconsin
#> 13116 Wyoming
#> 13117 Alaska
#> 13118 Hawaii
#> 13119 Illinois
#> 13120 Nebraska
#> 13121 Nevada
#> 13122 New Mexico
#> 13123 North Dakota
#> 13124 Oregon
#> 13125 South Dakota
#> 13126 Texas
#> 13127 Virginia
#> 13128 Washington
#> 13129 Alabama
#> 13130 Arizona
#> 13131 Arkansas
#> 13132 California
#> 13133 Colorado
#> 13134 Delaware
#> 13135 Florida
#> 13136 Georgia
#> 13137 Idaho
#> 13138 Illinois
#> 13139 Indiana
#> 13140 Iowa
#> 13141 Kansas
#> 13142 Kentucky
#> 13143 Louisiana
#> 13144 Maine
#> 13145 Maryland
#> 13146 Michigan
#> 13147 Missouri
#> 13148 Montana
#> 13149 Nebraska
#> 13150 Nevada
#> 13151 New Hampshire
#> 13152 New Jersey
#> 13153 New Mexico
#> 13154 New York
#> 13155 North Carolina
#> 13156 Ohio
#> 13157 Oklahoma
#> 13158 Oregon
#> 13159 Pennsylvania
#> 13160 Tennessee
#> 13161 Texas
#> 13162 Utah
#> 13163 Vermont
#> 13164 Virginia
#> 13165 Washington
#> 13166 West Virginia
#> 13167 Wisconsin
#> 13168 Wyoming
#> 13169 Colorado
#> 13170 Georgia
#> 13171 Idaho
#> 13172 Illinois
#> 13173 Louisiana
#> 13174 Minnesota
#> 13175 Montana
#> 13176 Nebraska
#> 13177 Nevada
#> 13178 New Hampshire
#> 13179 New Mexico
#> 13180 North Dakota
#> 13181 Ohio
#> 13182 Oklahoma
#> 13183 Pennsylvania
#> 13184 South Dakota
#> 13185 Texas
#> 13186 Washington
#> 13187 Wisconsin
#> 13188 Wyoming
#> 13189 Alabama
#> 13190 Arizona
#> 13191 Arkansas
#> 13192 California
#> 13193 Colorado
#> 13194 Connecticut
#> 13195 Florida
#> 13196 Georgia
#> 13197 Idaho
#> 13198 Illinois
#> 13199 Indiana
#> 13200 Iowa
#> 13201 Kansas
#> 13202 Kentucky
#> 13203 Louisiana
#> 13204 Maine
#> 13205 Maryland
#> 13206 Massachusetts
#> 13207 Michigan
#> 13208 Minnesota
#> 13209 Mississippi
#> 13210 Montana
#> 13211 Nebraska
#> 13212 Nevada
#> 13213 New Hampshire
#> 13214 New Mexico
#> 13215 New York
#> 13216 North Dakota
#> 13217 Oklahoma
#> 13218 Oregon
#> 13219 Pennsylvania
#> 13220 Rhode Island
#> 13221 South Carolina
#> 13222 South Dakota
#> 13223 Tennessee
#> 13224 Utah
#> 13225 Vermont
#> 13226 Washington
#> 13227 West Virginia
#> 13228 Wyoming
#> 13229 Delaware
#> 13230 North Dakota
#> 13231 Alaska
#> 13232 Idaho
#> 13233 Alaska
#> 13234 Arizona
#> 13235 Arkansas
#> 13236 California
#> 13237 Colorado
#> 13238 Connecticut
#> 13239 Delaware
#> 13240 Florida
#> 13241 Georgia
#> 13242 Hawaii
#> 13243 Idaho
#> 13244 Illinois
#> 13245 Indiana
#> 13246 Iowa
#> 13247 Kansas
#> 13248 Kentucky
#> 13249 Louisiana
#> 13250 Maine
#> 13251 Maryland
#> 13252 Massachusetts
#> 13253 Michigan
#> 13254 Minnesota
#> 13255 Mississippi
#> 13256 Missouri
#> 13257 Montana
#> 13258 Nebraska
#> 13259 Nevada
#> 13260 New Jersey
#> 13261 New Mexico
#> 13262 New York
#> 13263 North Carolina
#> 13264 North Dakota
#> 13265 Ohio
#> 13266 Oklahoma
#> 13267 Oregon
#> 13268 Pennsylvania
#> 13269 Rhode Island
#> 13270 South Carolina
#> 13271 South Dakota
#> 13272 Tennessee
#> 13273 Texas
#> 13274 Utah
#> 13275 Virginia
#> 13276 Washington
#> 13277 West Virginia
#> 13278 Wisconsin
#> 13279 Wyoming
#> 13280 Arkansas
#> 13281 Idaho
#> 13282 Maine
#> 13283 Mississippi
#> 13284 Montana
#> 13285 Nevada
#> 13286 North Dakota
#> 13287 South Dakota
#> 13288 Utah
#> 13289 Wyoming
#> 13290 Colorado
#> 13291 Connecticut
#> 13292 Idaho
#> 13293 Iowa
#> 13294 Kentucky
#> 13295 Massachusetts
#> 13296 Michigan
#> 13297 Nebraska
#> 13298 North Dakota
#> 13299 Ohio
#> 13300 South Carolina
#> 13301 Texas
#> 13302 Utah
#> 13303 Vermont
#> 13304 Virginia
#> 13305 Alabama
#> 13306 California
#> 13307 Connecticut
#> 13308 Delaware
#> 13309 Florida
#> 13310 Georgia
#> 13311 Hawaii
#> 13312 Louisiana
#> 13313 Maine
#> 13314 Maryland
#> 13315 Massachusetts
#> 13316 New Hampshire
#> 13317 New Jersey
#> 13318 New Mexico
#> 13319 New York
#> 13320 North Carolina
#> 13321 Oregon
#> 13322 Pennsylvania
#> 13323 Rhode Island
#> 13324 Tennessee
#> 13325 West Virginia
#> 13326 Arizona
#> 13327 Connecticut
#> 13328 Florida
#> 13329 Georgia
#> 13330 Hawaii
#> 13331 Maine
#> 13332 Maryland
#> 13333 Minnesota
#> 13334 New Hampshire
#> 13335 New Jersey
#> 13336 Oregon
#> 13337 Pennsylvania
#> 13338 Rhode Island
#> 13339 Tennessee
#> 13340 Vermont
#> 13341 Washington
#> 13342 Wisconsin
#> 13343 Alabama
#> 13344 Alaska
#> 13345 Arizona
#> 13346 Arkansas
#> 13347 California
#> 13348 Colorado
#> 13349 Connecticut
#> 13350 Delaware
#> 13351 Florida
#> 13352 Georgia
#> 13353 Hawaii
#> 13354 Idaho
#> 13355 Illinois
#> 13356 Indiana
#> 13357 Iowa
#> 13358 Kansas
#> 13359 Kentucky
#> 13360 Louisiana
#> 13361 Maine
#> 13362 Maryland
#> 13363 Massachusetts
#> 13364 Michigan
#> 13365 Minnesota
#> 13366 Mississippi
#> 13367 Missouri
#> 13368 Montana
#> 13369 Nebraska
#> 13370 Nevada
#> 13371 New Hampshire
#> 13372 New Jersey
#> 13373 New Mexico
#> 13374 New York
#> 13375 North Carolina
#> 13376 North Dakota
#> 13377 Ohio
#> 13378 Oklahoma
#> 13379 Oregon
#> 13380 Pennsylvania
#> 13381 Rhode Island
#> 13382 South Carolina
#> 13383 South Dakota
#> 13384 Tennessee
#> 13385 Utah
#> 13386 Vermont
#> 13387 Virginia
#> 13388 Washington
#> 13389 West Virginia
#> 13390 Wisconsin
#> 13391 Wyoming
#> 13392 Alabama
#> 13393 Alaska
#> 13394 Arizona
#> 13395 Arkansas
#> 13396 California
#> 13397 Colorado
#> 13398 Connecticut
#> 13399 Delaware
#> 13400 Florida
#> 13401 Georgia
#> 13402 Hawaii
#> 13403 Idaho
#> 13404 Illinois
#> 13405 Indiana
#> 13406 Iowa
#> 13407 Kansas
#> 13408 Kentucky
#> 13409 Louisiana
#> 13410 Maine
#> 13411 Maryland
#> 13412 Massachusetts
#> 13413 Michigan
#> 13414 Minnesota
#> 13415 Mississippi
#> 13416 Missouri
#> 13417 Montana
#> 13418 Nevada
#> 13419 New Hampshire
#> 13420 New Jersey
#> 13421 New Mexico
#> 13422 New York
#> 13423 North Carolina
#> 13424 North Dakota
#> 13425 Ohio
#> 13426 Oklahoma
#> 13427 Oregon
#> 13428 Pennsylvania
#> 13429 Rhode Island
#> 13430 South Carolina
#> 13431 South Dakota
#> 13432 Tennessee
#> 13433 Texas
#> 13434 Utah
#> 13435 Vermont
#> 13436 Virginia
#> 13437 Washington
#> 13438 West Virginia
#> 13439 Wisconsin
#> 13440 Wyoming
#> 13441 Alabama
#> 13442 Alaska
#> 13443 Arizona
#> 13444 Arkansas
#> 13445 California
#> 13446 Colorado
#> 13447 Connecticut
#> 13448 Delaware
#> 13449 Florida
#> 13450 Georgia
#> 13451 Hawaii
#> 13452 Illinois
#> 13453 Indiana
#> 13454 Kansas
#> 13455 Kentucky
#> 13456 Louisiana
#> 13457 Maine
#> 13458 Maryland
#> 13459 Michigan
#> 13460 Minnesota
#> 13461 Montana
#> 13462 Nebraska
#> 13463 Nevada
#> 13464 New Hampshire
#> 13465 New Jersey
#> 13466 New Mexico
#> 13467 New York
#> 13468 North Carolina
#> 13469 North Dakota
#> 13470 Ohio
#> 13471 Oklahoma
#> 13472 Oregon
#> 13473 Pennsylvania
#> 13474 Rhode Island
#> 13475 South Carolina
#> 13476 Tennessee
#> 13477 Texas
#> 13478 Utah
#> 13479 Vermont
#> 13480 Washington
#> 13481 West Virginia
#> 13482 Wisconsin
#> 13483 Arizona
#> 13484 California
#> 13485 Connecticut
#> 13486 Delaware
#> 13487 Georgia
#> 13488 Idaho
#> 13489 Indiana
#> 13490 Iowa
#> 13491 Kansas
#> 13492 Maine
#> 13493 Michigan
#> 13494 Minnesota
#> 13495 Mississippi
#> 13496 Montana
#> 13497 Nebraska
#> 13498 New Hampshire
#> 13499 North Carolina
#> 13500 North Dakota
#> 13501 Oklahoma
#> 13502 Oregon
#> 13503 South Carolina
#> 13504 South Dakota
#> 13505 Utah
#> 13506 Vermont
#> 13507 Virginia
#> 13508 West Virginia
#> 13509 Wisconsin
#> 13510 Alabama
#> 13511 Alaska
#> 13512 Arizona
#> 13513 California
#> 13514 Colorado
#> 13515 Connecticut
#> 13516 Delaware
#> 13517 Florida
#> 13518 Hawaii
#> 13519 Idaho
#> 13520 Illinois
#> 13521 Indiana
#> 13522 Iowa
#> 13523 Kansas
#> 13524 Kentucky
#> 13525 Louisiana
#> 13526 Maine
#> 13527 Maryland
#> 13528 Massachusetts
#> 13529 Michigan
#> 13530 Minnesota
#> 13531 Mississippi
#> 13532 Missouri
#> 13533 Montana
#> 13534 Nebraska
#> 13535 Nevada
#> 13536 New Hampshire
#> 13537 New Jersey
#> 13538 New Mexico
#> 13539 New York
#> 13540 North Carolina
#> 13541 Ohio
#> 13542 Oklahoma
#> 13543 Oregon
#> 13544 Pennsylvania
#> 13545 Rhode Island
#> 13546 South Dakota
#> 13547 Tennessee
#> 13548 Texas
#> 13549 Utah
#> 13550 Vermont
#> 13551 Virginia
#> 13552 Washington
#> 13553 West Virginia
#> 13554 Wisconsin
#> 13555 Alaska
#> 13556 Arizona
#> 13557 California
#> 13558 Colorado
#> 13559 Connecticut
#> 13560 Florida
#> 13561 Georgia
#> 13562 Hawaii
#> 13563 Kansas
#> 13564 Louisiana
#> 13565 Maryland
#> 13566 Michigan
#> 13567 Minnesota
#> 13568 Missouri
#> 13569 Nebraska
#> 13570 Nevada
#> 13571 New Mexico
#> 13572 New York
#> 13573 North Carolina
#> 13574 Ohio
#> 13575 Oklahoma
#> 13576 Oregon
#> 13577 Pennsylvania
#> 13578 Rhode Island
#> 13579 South Carolina
#> 13580 Tennessee
#> 13581 Texas
#> 13582 Utah
#> 13583 Washington
#> 13584 West Virginia
#> 13585 Wisconsin
#> 13586 California
#> 13587 Connecticut
#> 13588 Illinois
#> 13589 Massachusetts
#> 13590 New Hampshire
#> 13591 New Jersey
#> 13592 New York
#> 13593 Ohio
#> 13594 Pennsylvania
#> 13595 Wisconsin
#> 13596 Arizona
#> 13597 California
#> 13598 Colorado
#> 13599 Connecticut
#> 13600 Delaware
#> 13601 Florida
#> 13602 Georgia
#> 13603 Hawaii
#> 13604 Idaho
#> 13605 Indiana
#> 13606 Kansas
#> 13607 Kentucky
#> 13608 Louisiana
#> 13609 Maryland
#> 13610 Massachusetts
#> 13611 Michigan
#> 13612 Minnesota
#> 13613 Montana
#> 13614 Nevada
#> 13615 New Jersey
#> 13616 New Mexico
#> 13617 New York
#> 13618 North Carolina
#> 13619 North Dakota
#> 13620 Ohio
#> 13621 Oklahoma
#> 13622 Oregon
#> 13623 Pennsylvania
#> 13624 South Carolina
#> 13625 Texas
#> 13626 Utah
#> 13627 Washington
#> 13628 Wyoming
#> 13629 Alabama
#> 13630 Alaska
#> 13631 Arizona
#> 13632 Arkansas
#> 13633 California
#> 13634 Colorado
#> 13635 Connecticut
#> 13636 Delaware
#> 13637 Florida
#> 13638 Georgia
#> 13639 Hawaii
#> 13640 Idaho
#> 13641 Illinois
#> 13642 Indiana
#> 13643 Iowa
#> 13644 Kansas
#> 13645 Kentucky
#> 13646 Louisiana
#> 13647 Maine
#> 13648 Maryland
#> 13649 Massachusetts
#> 13650 Michigan
#> 13651 Minnesota
#> 13652 Mississippi
#> 13653 Missouri
#> 13654 Montana
#> 13655 Nebraska
#> 13656 Nevada
#> 13657 New Jersey
#> 13658 New Mexico
#> 13659 New York
#> 13660 North Carolina
#> 13661 North Dakota
#> 13662 Ohio
#> 13663 Oklahoma
#> 13664 Oregon
#> 13665 Pennsylvania
#> 13666 Rhode Island
#> 13667 South Carolina
#> 13668 South Dakota
#> 13669 Tennessee
#> 13670 Texas
#> 13671 Utah
#> 13672 Vermont
#> 13673 Virginia
#> 13674 Washington
#> 13675 West Virginia
#> 13676 Wisconsin
#> 13677 Wyoming
#> 13678 Alabama
#> 13679 Alaska
#> 13680 Arizona
#> 13681 Arkansas
#> 13682 California
#> 13683 Colorado
#> 13684 Connecticut
#> 13685 Delaware
#> 13686 Florida
#> 13687 Georgia
#> 13688 Hawaii
#> 13689 Idaho
#> 13690 Illinois
#> 13691 Indiana
#> 13692 Kansas
#> 13693 Kentucky
#> 13694 Louisiana
#> 13695 Maine
#> 13696 Maryland
#> 13697 Massachusetts
#> 13698 Michigan
#> 13699 Minnesota
#> 13700 Mississippi
#> 13701 Missouri
#> 13702 Montana
#> 13703 Nebraska
#> 13704 Nevada
#> 13705 New Hampshire
#> 13706 New Jersey
#> 13707 New Mexico
#> 13708 New York
#> 13709 North Carolina
#> 13710 North Dakota
#> 13711 Ohio
#> 13712 Oklahoma
#> 13713 Oregon
#> 13714 Pennsylvania
#> 13715 Rhode Island
#> 13716 South Carolina
#> 13717 South Dakota
#> 13718 Tennessee
#> 13719 Texas
#> 13720 Utah
#> 13721 Vermont
#> 13722 Virginia
#> 13723 Washington
#> 13724 West Virginia
#> 13725 Wisconsin
#> 13726 Wyoming
#> 13727 Alabama
#> 13728 Alaska
#> 13729 California
#> 13730 Colorado
#> 13731 Florida
#> 13732 Georgia
#> 13733 Hawaii
#> 13734 Idaho
#> 13735 Illinois
#> 13736 Indiana
#> 13737 Kansas
#> 13738 Louisiana
#> 13739 Maine
#> 13740 Maryland
#> 13741 Massachusetts
#> 13742 Michigan
#> 13743 Mississippi
#> 13744 Missouri
#> 13745 Montana
#> 13746 Nevada
#> 13747 New Mexico
#> 13748 North Dakota
#> 13749 Ohio
#> 13750 Oklahoma
#> 13751 Oregon
#> 13752 South Carolina
#> 13753 South Dakota
#> 13754 Texas
#> 13755 Utah
#> 13756 Virginia
#> 13757 West Virginia
#> 13758 Wisconsin
#> 13759 Montana
#> 13760 Oregon
#> 13761 Vermont
#> 13762 Washington
#> 13763 Alabama
#> 13764 Arizona
#> 13765 Arkansas
#> 13766 Colorado
#> 13767 Connecticut
#> 13768 Florida
#> 13769 Georgia
#> 13770 Idaho
#> 13771 Illinois
#> 13772 Indiana
#> 13773 Iowa
#> 13774 Kansas
#> 13775 Kentucky
#> 13776 Louisiana
#> 13777 Massachusetts
#> 13778 Michigan
#> 13779 Minnesota
#> 13780 Mississippi
#> 13781 Missouri
#> 13782 New Hampshire
#> 13783 New Mexico
#> 13784 North Carolina
#> 13785 North Dakota
#> 13786 Oklahoma
#> 13787 Oregon
#> 13788 South Carolina
#> 13789 South Dakota
#> 13790 Tennessee
#> 13791 Texas
#> 13792 Utah
#> 13793 Virginia
#> 13794 Washington
#> 13795 Wisconsin
#> 13796 Alabama
#> 13797 Arizona
#> 13798 Connecticut
#> 13799 Florida
#> 13800 Idaho
#> 13801 Illinois
#> 13802 Kansas
#> 13803 Kentucky
#> 13804 Louisiana
#> 13805 Missouri
#> 13806 New Mexico
#> 13807 Oklahoma
#> 13808 Pennsylvania
#> 13809 Rhode Island
#> 13810 South Carolina
#> 13811 Tennessee
#> 13812 Texas
#> 13813 Utah
#> 13814 Virginia
#> 13815 Alabama
#> 13816 Alaska
#> 13817 Arkansas
#> 13818 Colorado
#> 13819 Connecticut
#> 13820 Delaware
#> 13821 Florida
#> 13822 Georgia
#> 13823 Hawaii
#> 13824 Illinois
#> 13825 Indiana
#> 13826 Iowa
#> 13827 Kansas
#> 13828 Kentucky
#> 13829 Louisiana
#> 13830 Maryland
#> 13831 Michigan
#> 13832 Minnesota
#> 13833 Mississippi
#> 13834 Montana
#> 13835 Nevada
#> 13836 New Jersey
#> 13837 North Carolina
#> 13838 Ohio
#> 13839 Pennsylvania
#> 13840 Rhode Island
#> 13841 Texas
#> 13842 Virginia
#> 13843 Washington
#> 13844 Alabama
#> 13845 Arizona
#> 13846 Arkansas
#> 13847 California
#> 13848 Colorado
#> 13849 Connecticut
#> 13850 Delaware
#> 13851 Florida
#> 13852 Georgia
#> 13853 Idaho
#> 13854 Illinois
#> 13855 Indiana
#> 13856 Kansas
#> 13857 Kentucky
#> 13858 Louisiana
#> 13859 Maine
#> 13860 Maryland
#> 13861 Massachusetts
#> 13862 Michigan
#> 13863 Mississippi
#> 13864 Missouri
#> 13865 Montana
#> 13866 Nevada
#> 13867 New Hampshire
#> 13868 New Jersey
#> 13869 New Mexico
#> 13870 New York
#> 13871 North Carolina
#> 13872 North Dakota
#> 13873 Ohio
#> 13874 Oklahoma
#> 13875 Oregon
#> 13876 Pennsylvania
#> 13877 Rhode Island
#> 13878 South Carolina
#> 13879 Tennessee
#> 13880 Utah
#> 13881 Vermont
#> 13882 Virginia
#> 13883 Washington
#> 13884 West Virginia
#> 13885 Wisconsin
#> 13886 Wyoming
#> 13887 Alabama
#> 13888 Alaska
#> 13889 Arizona
#> 13890 Arkansas
#> 13891 California
#> 13892 Colorado
#> 13893 Connecticut
#> 13894 Delaware
#> 13895 Florida
#> 13896 Georgia
#> 13897 Hawaii
#> 13898 Idaho
#> 13899 Illinois
#> 13900 Indiana
#> 13901 Iowa
#> 13902 Kansas
#> 13903 Kentucky
#> 13904 Louisiana
#> 13905 Maine
#> 13906 Maryland
#> 13907 Massachusetts
#> 13908 Michigan
#> 13909 Minnesota
#> 13910 Mississippi
#> 13911 Missouri
#> 13912 Montana
#> 13913 Nebraska
#> 13914 Nevada
#> 13915 New Hampshire
#> 13916 New Jersey
#> 13917 New Mexico
#> 13918 New York
#> 13919 North Carolina
#> 13920 North Dakota
#> 13921 Ohio
#> 13922 Oklahoma
#> 13923 Oregon
#> 13924 Pennsylvania
#> 13925 Rhode Island
#> 13926 South Carolina
#> 13927 South Dakota
#> 13928 Tennessee
#> 13929 Texas
#> 13930 Utah
#> 13931 Vermont
#> 13932 Virginia
#> 13933 Washington
#> 13934 West Virginia
#> 13935 Wisconsin
#> 13936 Wyoming
#> 13937 Alabama
#> 13938 Alaska
#> 13939 Arizona
#> 13940 Arkansas
#> 13941 California
#> 13942 Colorado
#> 13943 Florida
#> 13944 Georgia
#> 13945 Hawaii
#> 13946 Idaho
#> 13947 Illinois
#> 13948 Indiana
#> 13949 Iowa
#> 13950 Kansas
#> 13951 Kentucky
#> 13952 Louisiana
#> 13953 Maine
#> 13954 Maryland
#> 13955 Michigan
#> 13956 Minnesota
#> 13957 Missouri
#> 13958 Montana
#> 13959 Nebraska
#> 13960 Nevada
#> 13961 New Jersey
#> 13962 New Mexico
#> 13963 New York
#> 13964 North Carolina
#> 13965 North Dakota
#> 13966 Ohio
#> 13967 Oklahoma
#> 13968 Oregon
#> 13969 Pennsylvania
#> 13970 Rhode Island
#> 13971 South Carolina
#> 13972 South Dakota
#> 13973 Texas
#> 13974 Utah
#> 13975 Virginia
#> 13976 Washington
#> 13977 West Virginia
#> 13978 Wisconsin
#> 13979 Wyoming
#> 13980 Arizona
#> 13981 California
#> 13982 Colorado
#> 13983 Connecticut
#> 13984 Delaware
#> 13985 Hawaii
#> 13986 Illinois
#> 13987 Indiana
#> 13988 Iowa
#> 13989 Kansas
#> 13990 Maine
#> 13991 Maryland
#> 13992 Massachusetts
#> 13993 Michigan
#> 13994 Minnesota
#> 13995 Missouri
#> 13996 Montana
#> 13997 Nevada
#> 13998 New Hampshire
#> 13999 New Jersey
#> 14000 New Mexico
#> 14001 New York
#> 14002 North Carolina
#> 14003 North Dakota
#> 14004 Ohio
#> 14005 Oklahoma
#> 14006 Oregon
#> 14007 Pennsylvania
#> 14008 Rhode Island
#> 14009 South Carolina
#> 14010 South Dakota
#> 14011 Texas
#> 14012 Utah
#> 14013 Vermont
#> 14014 Virginia
#> 14015 Washington
#> 14016 West Virginia
#> 14017 Wisconsin
#> 14018 Alabama
#> 14019 Alaska
#> 14020 Arizona
#> 14021 Arkansas
#> 14022 California
#> 14023 Colorado
#> 14024 Connecticut
#> 14025 Delaware
#> 14026 Florida
#> 14027 Georgia
#> 14028 Hawaii
#> 14029 Idaho
#> 14030 Illinois
#> 14031 Indiana
#> 14032 Iowa
#> 14033 Kansas
#> 14034 Kentucky
#> 14035 Louisiana
#> 14036 Maine
#> 14037 Maryland
#> 14038 Massachusetts
#> 14039 Michigan
#> 14040 Minnesota
#> 14041 Mississippi
#> 14042 Missouri
#> 14043 Montana
#> 14044 Nebraska
#> 14045 Nevada
#> 14046 New Hampshire
#> 14047 New Jersey
#> 14048 New Mexico
#> 14049 New York
#> 14050 North Carolina
#> 14051 North Dakota
#> 14052 Ohio
#> 14053 Oklahoma
#> 14054 Oregon
#> 14055 Pennsylvania
#> 14056 Rhode Island
#> 14057 South Carolina
#> 14058 South Dakota
#> 14059 Tennessee
#> 14060 Texas
#> 14061 Utah
#> 14062 Vermont
#> 14063 Virginia
#> 14064 Washington
#> 14065 West Virginia
#> 14066 Wisconsin
#> 14067 Wyoming
#> 14068 Alabama
#> 14069 Arkansas
#> 14070 Georgia
#> 14071 Indiana
#> 14072 Kansas
#> 14073 Missouri
#> 14074 North Carolina
#> 14075 North Dakota
#> 14076 Pennsylvania
#> 14077 South Carolina
#> 14078 Tennessee
#> 14079 Texas
#> 14080 Utah
#> 14081 Virginia
#> 14082 Wisconsin
#> 14083 Alabama
#> 14084 Alaska
#> 14085 Arizona
#> 14086 Connecticut
#> 14087 Florida
#> 14088 Hawaii
#> 14089 Iowa
#> 14090 Kansas
#> 14091 Kentucky
#> 14092 Michigan
#> 14093 Mississippi
#> 14094 Montana
#> 14095 Nebraska
#> 14096 New Mexico
#> 14097 Oklahoma
#> 14098 Oregon
#> 14099 Rhode Island
#> 14100 South Carolina
#> 14101 Tennessee
#> 14102 Virginia
#> 14103 Washington
#> 14104 Alabama
#> 14105 North Carolina
#> 14106 Virginia
#> 14107 Wisconsin
#> 14108 Arizona
#> 14109 California
#> 14110 Connecticut
#> 14111 Delaware
#> 14112 Florida
#> 14113 Hawaii
#> 14114 Idaho
#> 14115 Illinois
#> 14116 Iowa
#> 14117 Louisiana
#> 14118 Maine
#> 14119 Maryland
#> 14120 Massachusetts
#> 14121 Michigan
#> 14122 Minnesota
#> 14123 Montana
#> 14124 Nebraska
#> 14125 Nevada
#> 14126 New Hampshire
#> 14127 New Jersey
#> 14128 New Mexico
#> 14129 New York
#> 14130 North Carolina
#> 14131 Ohio
#> 14132 Oregon
#> 14133 Rhode Island
#> 14134 Utah
#> 14135 Vermont
#> 14136 Washington
#> 14137 Arizona
#> 14138 California
#> 14139 Connecticut
#> 14140 Delaware
#> 14141 Illinois
#> 14142 Maine
#> 14143 Maryland
#> 14144 Massachusetts
#> 14145 Michigan
#> 14146 New Hampshire
#> 14147 New Jersey
#> 14148 New York
#> 14149 Ohio
#> 14150 Oregon
#> 14151 Pennsylvania
#> 14152 Rhode Island
#> 14153 Texas
#> 14154 Virginia
#> 14155 Alabama
#> 14156 Arizona
#> 14157 Arkansas
#> 14158 California
#> 14159 Colorado
#> 14160 Connecticut
#> 14161 Florida
#> 14162 Georgia
#> 14163 Idaho
#> 14164 Illinois
#> 14165 Indiana
#> 14166 Iowa
#> 14167 Kansas
#> 14168 Kentucky
#> 14169 Louisiana
#> 14170 Maine
#> 14171 Massachusetts
#> 14172 Michigan
#> 14173 Minnesota
#> 14174 Mississippi
#> 14175 Missouri
#> 14176 Montana
#> 14177 Nevada
#> 14178 New Jersey
#> 14179 North Carolina
#> 14180 North Dakota
#> 14181 Ohio
#> 14182 Pennsylvania
#> 14183 South Carolina
#> 14184 South Dakota
#> 14185 Tennessee
#> 14186 Texas
#> 14187 Utah
#> 14188 Vermont
#> 14189 Virginia
#> 14190 Washington
#> 14191 West Virginia
#> 14192 Wisconsin
#> 14193 Wyoming
#> 14194 California
#> 14195 Connecticut
#> 14196 Iowa
#> 14197 Maryland
#> 14198 Massachusetts
#> 14199 Michigan
#> 14200 Montana
#> 14201 Nebraska
#> 14202 New Hampshire
#> 14203 New Jersey
#> 14204 New York
#> 14205 North Carolina
#> 14206 Pennsylvania
#> 14207 South Carolina
#> 14208 Alabama
#> 14209 Arizona
#> 14210 Arkansas
#> 14211 California
#> 14212 Colorado
#> 14213 Connecticut
#> 14214 Delaware
#> 14215 Florida
#> 14216 Georgia
#> 14217 Idaho
#> 14218 Illinois
#> 14219 Indiana
#> 14220 Iowa
#> 14221 Kansas
#> 14222 Kentucky
#> 14223 Louisiana
#> 14224 Maine
#> 14225 Maryland
#> 14226 Massachusetts
#> 14227 Michigan
#> 14228 Minnesota
#> 14229 Mississippi
#> 14230 Missouri
#> 14231 Montana
#> 14232 Nebraska
#> 14233 Nevada
#> 14234 New Hampshire
#> 14235 New Jersey
#> 14236 New Mexico
#> 14237 New York
#> 14238 North Carolina
#> 14239 North Dakota
#> 14240 Ohio
#> 14241 Oklahoma
#> 14242 Oregon
#> 14243 Pennsylvania
#> 14244 Rhode Island
#> 14245 South Carolina
#> 14246 South Dakota
#> 14247 Tennessee
#> 14248 Texas
#> 14249 Utah
#> 14250 Vermont
#> 14251 Virginia
#> 14252 Washington
#> 14253 West Virginia
#> 14254 Wisconsin
#> 14255 Wyoming
#> 14256 California
#> 14257 Colorado
#> 14258 Connecticut
#> 14259 Delaware
#> 14260 Florida
#> 14261 Georgia
#> 14262 Hawaii
#> 14263 Illinois
#> 14264 Kentucky
#> 14265 Louisiana
#> 14266 Massachusetts
#> 14267 Minnesota
#> 14268 Montana
#> 14269 New Jersey
#> 14270 New Mexico
#> 14271 North Carolina
#> 14272 South Dakota
#> 14273 West Virginia
#> 14274 Delaware
#> 14275 Utah
#> 14276 Arizona
#> 14277 California
#> 14278 Colorado
#> 14279 Connecticut
#> 14280 Delaware
#> 14281 Florida
#> 14282 Georgia
#> 14283 Hawaii
#> 14284 Idaho
#> 14285 Illinois
#> 14286 Indiana
#> 14287 Louisiana
#> 14288 Michigan
#> 14289 Minnesota
#> 14290 Mississippi
#> 14291 Nevada
#> 14292 New Jersey
#> 14293 New Mexico
#> 14294 New York
#> 14295 North Carolina
#> 14296 North Dakota
#> 14297 Ohio
#> 14298 Oklahoma
#> 14299 Oregon
#> 14300 Pennsylvania
#> 14301 Rhode Island
#> 14302 Tennessee
#> 14303 Utah
#> 14304 Washington
#> 14305 Wisconsin
#> 14306 Alabama
#> 14307 Arizona
#> 14308 Arkansas
#> 14309 Florida
#> 14310 Georgia
#> 14311 Idaho
#> 14312 Iowa
#> 14313 Kansas
#> 14314 Louisiana
#> 14315 Mississippi
#> 14316 Nebraska
#> 14317 Nevada
#> 14318 North Carolina
#> 14319 North Dakota
#> 14320 Oklahoma
#> 14321 South Carolina
#> 14322 South Dakota
#> 14323 Tennessee
#> 14324 Texas
#> 14325 Utah
#> 14326 Virginia
#> 14327 Wyoming
#> 14328 Arizona
#> 14329 California
#> 14330 Delaware
#> 14331 Florida
#> 14332 Georgia
#> 14333 Illinois
#> 14334 Maine
#> 14335 Massachusetts
#> 14336 Minnesota
#> 14337 Missouri
#> 14338 New Jersey
#> 14339 New Mexico
#> 14340 New York
#> 14341 Ohio
#> 14342 Washington
#> 14343 Alaska
#> 14344 Arkansas
#> 14345 California
#> 14346 Iowa
#> 14347 Maine
#> 14348 Minnesota
#> 14349 Montana
#> 14350 Nebraska
#> 14351 Nevada
#> 14352 North Dakota
#> 14353 Ohio
#> 14354 Rhode Island
#> 14355 Alabama
#> 14356 Arizona
#> 14357 Arkansas
#> 14358 California
#> 14359 Colorado
#> 14360 Connecticut
#> 14361 Delaware
#> 14362 Florida
#> 14363 Georgia
#> 14364 Idaho
#> 14365 Illinois
#> 14366 Indiana
#> 14367 Iowa
#> 14368 Kansas
#> 14369 Kentucky
#> 14370 Louisiana
#> 14371 Maine
#> 14372 Maryland
#> 14373 Massachusetts
#> 14374 Michigan
#> 14375 Minnesota
#> 14376 Mississippi
#> 14377 Missouri
#> 14378 Montana
#> 14379 Nebraska
#> 14380 Nevada
#> 14381 New Hampshire
#> 14382 New Jersey
#> 14383 New Mexico
#> 14384 New York
#> 14385 North Carolina
#> 14386 North Dakota
#> 14387 Ohio
#> 14388 Oklahoma
#> 14389 Oregon
#> 14390 Pennsylvania
#> 14391 Rhode Island
#> 14392 South Carolina
#> 14393 South Dakota
#> 14394 Tennessee
#> 14395 Texas
#> 14396 Utah
#> 14397 Vermont
#> 14398 Virginia
#> 14399 Washington
#> 14400 West Virginia
#> 14401 Wisconsin
#> 14402 Wyoming
#> 14403 Kentucky
#> 14404 Louisiana
#> 14405 South Dakota
#> 14406 Utah
#> 14407 Arizona
#> 14408 California
#> 14409 Colorado
#> 14410 Connecticut
#> 14411 Delaware
#> 14412 Hawaii
#> 14413 Illinois
#> 14414 Maine
#> 14415 Maryland
#> 14416 Massachusetts
#> 14417 Michigan
#> 14418 Minnesota
#> 14419 Missouri
#> 14420 Montana
#> 14421 Nevada
#> 14422 New Hampshire
#> 14423 New Jersey
#> 14424 New Mexico
#> 14425 New York
#> 14426 North Carolina
#> 14427 Oregon
#> 14428 Pennsylvania
#> 14429 Rhode Island
#> 14430 Texas
#> 14431 Vermont
#> 14432 Washington
#> 14433 Wisconsin
#> 14434 Arkansas
#> 14435 Delaware
#> 14436 Minnesota
#> 14437 Montana
#> 14438 Nebraska
#> 14439 North Dakota
#> 14440 Oklahoma
#> 14441 Washington
#> 14442 Arizona
#> 14443 Arkansas
#> 14444 California
#> 14445 Delaware
#> 14446 Florida
#> 14447 Idaho
#> 14448 Illinois
#> 14449 Indiana
#> 14450 Maryland
#> 14451 Massachusetts
#> 14452 Michigan
#> 14453 Minnesota
#> 14454 Nebraska
#> 14455 New Jersey
#> 14456 New York
#> 14457 North Carolina
#> 14458 Ohio
#> 14459 Oregon
#> 14460 Pennsylvania
#> 14461 South Carolina
#> 14462 Tennessee
#> 14463 Texas
#> 14464 Virginia
#> 14465 West Virginia
#> 14466 Wisconsin
#> 14467 California
#> 14468 Delaware
#> 14469 Florida
#> 14470 Illinois
#> 14471 Kansas
#> 14472 Louisiana
#> 14473 Maine
#> 14474 Mississippi
#> 14475 Missouri
#> 14476 North Dakota
#> 14477 Oklahoma
#> 14478 Tennessee
#> 14479 Virginia
#> 14480 Arizona
#> 14481 Arkansas
#> 14482 California
#> 14483 Colorado
#> 14484 Connecticut
#> 14485 Delaware
#> 14486 Indiana
#> 14487 Iowa
#> 14488 Kansas
#> 14489 Kentucky
#> 14490 Louisiana
#> 14491 Maryland
#> 14492 Michigan
#> 14493 Mississippi
#> 14494 Missouri
#> 14495 Nebraska
#> 14496 Nevada
#> 14497 New Jersey
#> 14498 New Mexico
#> 14499 North Carolina
#> 14500 North Dakota
#> 14501 Ohio
#> 14502 Oklahoma
#> 14503 Oregon
#> 14504 Rhode Island
#> 14505 South Carolina
#> 14506 Texas
#> 14507 Vermont
#> 14508 Virginia
#> 14509 Washington
#> 14510 West Virginia
#> 14511 Alabama
#> 14512 Arkansas
#> 14513 California
#> 14514 Colorado
#> 14515 Idaho
#> 14516 Illinois
#> 14517 Iowa
#> 14518 Massachusetts
#> 14519 Michigan
#> 14520 Minnesota
#> 14521 Nebraska
#> 14522 New Jersey
#> 14523 Ohio
#> 14524 Oregon
#> 14525 Utah
#> 14526 Washington
#> 14527 Colorado
#> 14528 Connecticut
#> 14529 Delaware
#> 14530 Florida
#> 14531 Idaho
#> 14532 Illinois
#> 14533 Indiana
#> 14534 Iowa
#> 14535 Kentucky
#> 14536 Maine
#> 14537 Maryland
#> 14538 Massachusetts
#> 14539 Minnesota
#> 14540 Missouri
#> 14541 Montana
#> 14542 New Hampshire
#> 14543 New Jersey
#> 14544 New Mexico
#> 14545 Rhode Island
#> 14546 South Dakota
#> 14547 Texas
#> 14548 Utah
#> 14549 Virginia
#> 14550 Washington
#> 14551 West Virginia
#> 14552 Georgia
#> 14553 Hawaii
#> 14554 Idaho
#> 14555 Indiana
#> 14556 Iowa
#> 14557 Kansas
#> 14558 Maine
#> 14559 Michigan
#> 14560 Minnesota
#> 14561 Mississippi
#> 14562 Missouri
#> 14563 New Hampshire
#> 14564 New Mexico
#> 14565 Oklahoma
#> 14566 South Carolina
#> 14567 South Dakota
#> 14568 Vermont
#> 14569 Wisconsin
#> 14570 Wyoming
#> 14571 Hawaii
#> 14572 Iowa
#> 14573 Maine
#> 14574 Massachusetts
#> 14575 Minnesota
#> 14576 Mississippi
#> 14577 Missouri
#> 14578 Nevada
#> 14579 North Carolina
#> 14580 Rhode Island
#> 14581 Wisconsin
#> 14582 Nevada
#> 14583 South Dakota
#> 14584 Utah
#> 14585 Vermont
#> 14586 Arkansas
#> 14587 Kentucky
#> 14588 Maryland
#> 14589 Missouri
#> 14590 North Carolina
#> 14591 Oklahoma
#> 14592 Tennessee
#> 14593 Texas
#> 14594 Virginia
#> 14595 West Virginia
#> 14596 Alaska
#> 14597 Colorado
#> 14598 Hawaii
#> 14599 Idaho
#> 14600 Kansas
#> 14601 Michigan
#> 14602 Mississippi
#> 14603 Missouri
#> 14604 North Carolina
#> 14605 North Dakota
#> 14606 South Carolina
#> 14607 South Dakota
#> 14608 Utah
#> 14609 Vermont
#> 14610 Virginia
#> 14611 Arizona
#> 14612 Illinois
#> 14613 Kansas
#> 14614 North Carolina
#> 14615 North Dakota
#> 14616 Oklahoma
#> 14617 Pennsylvania
#> 14618 Alabama
#> 14619 Alaska
#> 14620 Arizona
#> 14621 Arkansas
#> 14622 California
#> 14623 Connecticut
#> 14624 Delaware
#> 14625 Florida
#> 14626 Georgia
#> 14627 Hawaii
#> 14628 Illinois
#> 14629 Indiana
#> 14630 Kentucky
#> 14631 Louisiana
#> 14632 Maine
#> 14633 Michigan
#> 14634 Minnesota
#> 14635 Montana
#> 14636 Nebraska
#> 14637 Nevada
#> 14638 New Jersey
#> 14639 New Mexico
#> 14640 New York
#> 14641 North Carolina
#> 14642 North Dakota
#> 14643 Ohio
#> 14644 Oklahoma
#> 14645 Oregon
#> 14646 Pennsylvania
#> 14647 Rhode Island
#> 14648 South Carolina
#> 14649 Tennessee
#> 14650 Texas
#> 14651 Washington
#> 14652 Alabama
#> 14653 Alaska
#> 14654 Arizona
#> 14655 Arkansas
#> 14656 California
#> 14657 Colorado
#> 14658 Connecticut
#> 14659 Florida
#> 14660 Georgia
#> 14661 Hawaii
#> 14662 Idaho
#> 14663 Illinois
#> 14664 Indiana
#> 14665 Iowa
#> 14666 Kansas
#> 14667 Kentucky
#> 14668 Louisiana
#> 14669 Maine
#> 14670 Maryland
#> 14671 Massachusetts
#> 14672 Michigan
#> 14673 Minnesota
#> 14674 Mississippi
#> 14675 Missouri
#> 14676 Montana
#> 14677 Nebraska
#> 14678 Nevada
#> 14679 New Hampshire
#> 14680 New Jersey
#> 14681 New Mexico
#> 14682 New York
#> 14683 North Carolina
#> 14684 North Dakota
#> 14685 Ohio
#> 14686 Oklahoma
#> 14687 Oregon
#> 14688 Pennsylvania
#> 14689 South Carolina
#> 14690 South Dakota
#> 14691 Tennessee
#> 14692 Texas
#> 14693 Utah
#> 14694 Vermont
#> 14695 Virginia
#> 14696 Washington
#> 14697 West Virginia
#> 14698 Wisconsin
#> 14699 Wyoming
#> 14700 Arizona
#> 14701 Arkansas
#> 14702 Hawaii
#> 14703 Kansas
#> 14704 Kentucky
#> 14705 Massachusetts
#> 14706 New Mexico
#> 14707 North Carolina
#> 14708 North Dakota
#> 14709 Ohio
#> 14710 South Dakota
#> 14711 Virginia
#> 14712 Alaska
#> 14713 Alabama
#> 14714 Arizona
#> 14715 Arkansas
#> 14716 California
#> 14717 Colorado
#> 14718 Connecticut
#> 14719 Delaware
#> 14720 Florida
#> 14721 Georgia
#> 14722 Idaho
#> 14723 Indiana
#> 14724 Kansas
#> 14725 Louisiana
#> 14726 Maine
#> 14727 Massachusetts
#> 14728 Minnesota
#> 14729 Montana
#> 14730 Nebraska
#> 14731 Nevada
#> 14732 North Carolina
#> 14733 Oklahoma
#> 14734 Oregon
#> 14735 Pennsylvania
#> 14736 Texas
#> 14737 Vermont
#> 14738 West Virginia
#> 14739 Wyoming
#> 14740 Arizona
#> 14741 California
#> 14742 Colorado
#> 14743 Connecticut
#> 14744 Delaware
#> 14745 Hawaii
#> 14746 Illinois
#> 14747 Iowa
#> 14748 Maine
#> 14749 Maryland
#> 14750 Massachusetts
#> 14751 Minnesota
#> 14752 Montana
#> 14753 Nebraska
#> 14754 New Jersey
#> 14755 New Mexico
#> 14756 New York
#> 14757 Ohio
#> 14758 Oregon
#> 14759 Rhode Island
#> 14760 South Dakota
#> 14761 Utah
#> 14762 Vermont
#> 14763 Washington
#> 14764 Wisconsin
#> 14765 Alaska
#> 14766 Arizona
#> 14767 California
#> 14768 Colorado
#> 14769 Delaware
#> 14770 Illinois
#> 14771 Indiana
#> 14772 Iowa
#> 14773 Kansas
#> 14774 Kentucky
#> 14775 Louisiana
#> 14776 Maine
#> 14777 Maryland
#> 14778 Massachusetts
#> 14779 Michigan
#> 14780 Minnesota
#> 14781 Missouri
#> 14782 Montana
#> 14783 New Jersey
#> 14784 New Mexico
#> 14785 New York
#> 14786 Ohio
#> 14787 Oregon
#> 14788 Pennsylvania
#> 14789 Rhode Island
#> 14790 Virginia
#> 14791 Washington
#> 14792 Alabama
#> 14793 Arizona
#> 14794 Arkansas
#> 14795 California
#> 14796 Colorado
#> 14797 Connecticut
#> 14798 Delaware
#> 14799 Florida
#> 14800 Georgia
#> 14801 Idaho
#> 14802 Illinois
#> 14803 Indiana
#> 14804 Iowa
#> 14805 Kansas
#> 14806 Kentucky
#> 14807 Louisiana
#> 14808 Maine
#> 14809 Maryland
#> 14810 Massachusetts
#> 14811 Michigan
#> 14812 Minnesota
#> 14813 Mississippi
#> 14814 Missouri
#> 14815 Montana
#> 14816 Nebraska
#> 14817 Nevada
#> 14818 New Hampshire
#> 14819 New Jersey
#> 14820 New Mexico
#> 14821 New York
#> 14822 North Carolina
#> 14823 North Dakota
#> 14824 Ohio
#> 14825 Oklahoma
#> 14826 Oregon
#> 14827 Pennsylvania
#> 14828 Rhode Island
#> 14829 South Carolina
#> 14830 South Dakota
#> 14831 Tennessee
#> 14832 Texas
#> 14833 Utah
#> 14834 Vermont
#> 14835 Virginia
#> 14836 Washington
#> 14837 West Virginia
#> 14838 Wisconsin
#> 14839 Wyoming
#> 14840 California
#> 14841 Colorado
#> 14842 Connecticut
#> 14843 Delaware
#> 14844 Hawaii
#> 14845 Illinois
#> 14846 Iowa
#> 14847 Maine
#> 14848 Maryland
#> 14849 Massachusetts
#> 14850 Minnesota
#> 14851 Nevada
#> 14852 New Hampshire
#> 14853 New Jersey
#> 14854 New Mexico
#> 14855 New York
#> 14856 Oregon
#> 14857 Rhode Island
#> 14858 Vermont
#> 14859 Washington
#> 14860 Wisconsin
#> 14861 Alabama
#> 14862 Alaska
#> 14863 Arizona
#> 14864 Arkansas
#> 14865 California
#> 14866 Colorado
#> 14867 Connecticut
#> 14868 Delaware
#> 14869 Florida
#> 14870 Georgia
#> 14871 Hawaii
#> 14872 Idaho
#> 14873 Illinois
#> 14874 Indiana
#> 14875 Iowa
#> 14876 Kansas
#> 14877 Kentucky
#> 14878 Louisiana
#> 14879 Maine
#> 14880 Maryland
#> 14881 Massachusetts
#> 14882 Michigan
#> 14883 Minnesota
#> 14884 Mississippi
#> 14885 Missouri
#> 14886 Montana
#> 14887 Nebraska
#> 14888 Nevada
#> 14889 New Jersey
#> 14890 New Mexico
#> 14891 New York
#> 14892 North Dakota
#> 14893 Ohio
#> 14894 Oklahoma
#> 14895 Oregon
#> 14896 Pennsylvania
#> 14897 Rhode Island
#> 14898 South Carolina
#> 14899 South Dakota
#> 14900 Tennessee
#> 14901 Texas
#> 14902 Utah
#> 14903 Virginia
#> 14904 Washington
#> 14905 West Virginia
#> 14906 Wisconsin
#> 14907 Wyoming
#> 14908 Alabama
#> 14909 Arizona
#> 14910 Arkansas
#> 14911 California
#> 14912 Colorado
#> 14913 Connecticut
#> 14914 Delaware
#> 14915 Florida
#> 14916 Georgia
#> 14917 Idaho
#> 14918 Illinois
#> 14919 Indiana
#> 14920 Iowa
#> 14921 Kansas
#> 14922 Kentucky
#> 14923 Louisiana
#> 14924 Maine
#> 14925 Maryland
#> 14926 Massachusetts
#> 14927 Michigan
#> 14928 Minnesota
#> 14929 Mississippi
#> 14930 Missouri
#> 14931 Montana
#> 14932 Nevada
#> 14933 New Jersey
#> 14934 New Mexico
#> 14935 New York
#> 14936 North Dakota
#> 14937 Ohio
#> 14938 Oklahoma
#> 14939 Oregon
#> 14940 Pennsylvania
#> 14941 Rhode Island
#> 14942 South Carolina
#> 14943 South Dakota
#> 14944 Tennessee
#> 14945 Texas
#> 14946 Utah
#> 14947 Virginia
#> 14948 Washington
#> 14949 West Virginia
#> 14950 Wisconsin
#> 14951 Wyoming
#> 14952 Alabama
#> 14953 Arizona
#> 14954 Arkansas
#> 14955 California
#> 14956 Colorado
#> 14957 Connecticut
#> 14958 Florida
#> 14959 Georgia
#> 14960 Idaho
#> 14961 Illinois
#> 14962 Indiana
#> 14963 Iowa
#> 14964 Kansas
#> 14965 Kentucky
#> 14966 Louisiana
#> 14967 Maine
#> 14968 Maryland
#> 14969 Massachusetts
#> 14970 Michigan
#> 14971 Minnesota
#> 14972 Mississippi
#> 14973 Missouri
#> 14974 Montana
#> 14975 Nebraska
#> 14976 Nevada
#> 14977 New Hampshire
#> 14978 New Jersey
#> 14979 New Mexico
#> 14980 New York
#> 14981 North Carolina
#> 14982 North Dakota
#> 14983 Ohio
#> 14984 Oklahoma
#> 14985 Oregon
#> 14986 Pennsylvania
#> 14987 Rhode Island
#> 14988 South Carolina
#> 14989 South Dakota
#> 14990 Tennessee
#> 14991 Texas
#> 14992 Utah
#> 14993 Vermont
#> 14994 Virginia
#> 14995 Washington
#> 14996 West Virginia
#> 14997 Wisconsin
#> 14998 Wyoming
#> 14999 Alabama
#> 15000 Alaska
#> 15001 Arizona
#> 15002 Arkansas
#> 15003 California
#> 15004 Colorado
#> 15005 Connecticut
#> 15006 Florida
#> 15007 Georgia
#> 15008 Hawaii
#> 15009 Idaho
#> 15010 Illinois
#> 15011 Indiana
#> 15012 Iowa
#> 15013 Kansas
#> 15014 Kentucky
#> 15015 Louisiana
#> 15016 Maryland
#> 15017 Massachusetts
#> 15018 Minnesota
#> 15019 Mississippi
#> 15020 Missouri
#> 15021 Montana
#> 15022 Nevada
#> 15023 New Jersey
#> 15024 New Mexico
#> 15025 North Carolina
#> 15026 North Dakota
#> 15027 Ohio
#> 15028 Oklahoma
#> 15029 Oregon
#> 15030 Pennsylvania
#> 15031 Rhode Island
#> 15032 South Carolina
#> 15033 South Dakota
#> 15034 Utah
#> 15035 Virginia
#> 15036 Washington
#> 15037 West Virginia
#> 15038 Wyoming
#> 15039 Arizona
#> 15040 Colorado
#> 15041 Florida
#> 15042 Georgia
#> 15043 Illinois
#> 15044 Indiana
#> 15045 Iowa
#> 15046 Kansas
#> 15047 Kentucky
#> 15048 Louisiana
#> 15049 Mississippi
#> 15050 Nebraska
#> 15051 Nevada
#> 15052 New Hampshire
#> 15053 New Jersey
#> 15054 New York
#> 15055 Ohio
#> 15056 Pennsylvania
#> 15057 South Carolina
#> 15058 Texas
#> 15059 Utah
#> 15060 Virginia
#> 15061 Washington
#> 15062 West Virginia
#> 15063 Alabama
#> 15064 Arizona
#> 15065 Arkansas
#> 15066 California
#> 15067 Colorado
#> 15068 Connecticut
#> 15069 Delaware
#> 15070 Florida
#> 15071 Georgia
#> 15072 Idaho
#> 15073 Illinois
#> 15074 Indiana
#> 15075 Iowa
#> 15076 Kansas
#> 15077 Kentucky
#> 15078 Louisiana
#> 15079 Maine
#> 15080 Maryland
#> 15081 Massachusetts
#> 15082 Michigan
#> 15083 Minnesota
#> 15084 Mississippi
#> 15085 Missouri
#> 15086 Montana
#> 15087 Nevada
#> 15088 New Hampshire
#> 15089 New Jersey
#> 15090 New Mexico
#> 15091 New York
#> 15092 North Carolina
#> 15093 North Dakota
#> 15094 Ohio
#> 15095 Oklahoma
#> 15096 Oregon
#> 15097 Pennsylvania
#> 15098 Rhode Island
#> 15099 South Carolina
#> 15100 South Dakota
#> 15101 Tennessee
#> 15102 Texas
#> 15103 Utah
#> 15104 Vermont
#> 15105 Virginia
#> 15106 Washington
#> 15107 West Virginia
#> 15108 Wisconsin
#> 15109 Wyoming
#> 15110 Alabama
#> 15111 Alaska
#> 15112 Arizona
#> 15113 Florida
#> 15114 Georgia
#> 15115 Indiana
#> 15116 Kansas
#> 15117 Kentucky
#> 15118 Louisiana
#> 15119 Michigan
#> 15120 Mississippi
#> 15121 Montana
#> 15122 Nevada
#> 15123 New Hampshire
#> 15124 North Carolina
#> 15125 Oklahoma
#> 15126 Pennsylvania
#> 15127 South Carolina
#> 15128 South Dakota
#> 15129 Tennessee
#> 15130 Texas
#> 15131 Utah
#> 15132 West Virginia
#> 15133 Alabama
#> 15134 Arizona
#> 15135 Arkansas
#> 15136 California
#> 15137 Colorado
#> 15138 Connecticut
#> 15139 Delaware
#> 15140 Florida
#> 15141 Georgia
#> 15142 Idaho
#> 15143 Illinois
#> 15144 Indiana
#> 15145 Iowa
#> 15146 Kansas
#> 15147 Kentucky
#> 15148 Louisiana
#> 15149 Maine
#> 15150 Maryland
#> 15151 Massachusetts
#> 15152 Michigan
#> 15153 Minnesota
#> 15154 Mississippi
#> 15155 Missouri
#> 15156 Montana
#> 15157 Nebraska
#> 15158 Nevada
#> 15159 New Hampshire
#> 15160 New Jersey
#> 15161 New Mexico
#> 15162 New York
#> 15163 North Carolina
#> 15164 North Dakota
#> 15165 Ohio
#> 15166 Oklahoma
#> 15167 Oregon
#> 15168 Pennsylvania
#> 15169 Rhode Island
#> 15170 South Carolina
#> 15171 South Dakota
#> 15172 Tennessee
#> 15173 Texas
#> 15174 Utah
#> 15175 Vermont
#> 15176 Virginia
#> 15177 Washington
#> 15178 West Virginia
#> 15179 Wisconsin
#> 15180 Wyoming
#> 15181 Alabama
#> 15182 Alaska
#> 15183 Arizona
#> 15184 Arkansas
#> 15185 California
#> 15186 Colorado
#> 15187 Connecticut
#> 15188 Delaware
#> 15189 Florida
#> 15190 Georgia
#> 15191 Idaho
#> 15192 Illinois
#> 15193 Indiana
#> 15194 Iowa
#> 15195 Kentucky
#> 15196 Louisiana
#> 15197 Maine
#> 15198 Maryland
#> 15199 Minnesota
#> 15200 Mississippi
#> 15201 Missouri
#> 15202 Montana
#> 15203 Nebraska
#> 15204 Nevada
#> 15205 New Jersey
#> 15206 New Mexico
#> 15207 North Carolina
#> 15208 North Dakota
#> 15209 Ohio
#> 15210 Oklahoma
#> 15211 Oregon
#> 15212 Pennsylvania
#> 15213 Rhode Island
#> 15214 South Dakota
#> 15215 Tennessee
#> 15216 Texas
#> 15217 Utah
#> 15218 Virginia
#> 15219 Washington
#> 15220 West Virginia
#> 15221 Wisconsin
#> 15222 Wyoming
#> 15223 North Dakota
#> 15224 Hawaii
#> 15225 New Hampshire
#> 15226 Arkansas
#> 15227 California
#> 15228 Colorado
#> 15229 Montana
#> 15230 New Mexico
#> 15231 Ohio
#> 15232 Oklahoma
#> 15233 Texas
#> 15234 Wisconsin
#> 15235 Alabama
#> 15236 Alaska
#> 15237 Arizona
#> 15238 Arkansas
#> 15239 California
#> 15240 Colorado
#> 15241 Connecticut
#> 15242 Florida
#> 15243 Georgia
#> 15244 Hawaii
#> 15245 Indiana
#> 15246 Kansas
#> 15247 Massachusetts
#> 15248 Minnesota
#> 15249 Montana
#> 15250 Nebraska
#> 15251 Nevada
#> 15252 New Mexico
#> 15253 North Carolina
#> 15254 North Dakota
#> 15255 Oregon
#> 15256 South Carolina
#> 15257 South Dakota
#> 15258 Tennessee
#> 15259 Utah
#> 15260 Virginia
#> 15261 Washington
#> 15262 Kentucky
#> 15263 New Mexico
#> 15264 Alabama
#> 15265 Arkansas
#> 15266 California
#> 15267 Colorado
#> 15268 Connecticut
#> 15269 Delaware
#> 15270 Florida
#> 15271 Georgia
#> 15272 Idaho
#> 15273 Illinois
#> 15274 Indiana
#> 15275 Iowa
#> 15276 Kansas
#> 15277 Kentucky
#> 15278 Louisiana
#> 15279 Maine
#> 15280 Maryland
#> 15281 Massachusetts
#> 15282 Michigan
#> 15283 Minnesota
#> 15284 Mississippi
#> 15285 Missouri
#> 15286 Montana
#> 15287 Nebraska
#> 15288 Nevada
#> 15289 New Hampshire
#> 15290 New Jersey
#> 15291 New Mexico
#> 15292 New York
#> 15293 North Carolina
#> 15294 North Dakota
#> 15295 Ohio
#> 15296 Oklahoma
#> 15297 Oregon
#> 15298 Pennsylvania
#> 15299 Rhode Island
#> 15300 South Carolina
#> 15301 South Dakota
#> 15302 Tennessee
#> 15303 Texas
#> 15304 Utah
#> 15305 Vermont
#> 15306 Virginia
#> 15307 Washington
#> 15308 Wyoming
#> 15309 Alabama
#> 15310 Arkansas
#> 15311 Colorado
#> 15312 Connecticut
#> 15313 Delaware
#> 15314 Georgia
#> 15315 Illinois
#> 15316 Indiana
#> 15317 Kansas
#> 15318 Kentucky
#> 15319 Massachusetts
#> 15320 Minnesota
#> 15321 Nebraska
#> 15322 Oklahoma
#> 15323 Pennsylvania
#> 15324 Rhode Island
#> 15325 South Carolina
#> 15326 Tennessee
#> 15327 Utah
#> 15328 Virginia
#> 15329 California
#> 15330 Hawaii
#> 15331 Maine
#> 15332 New Hampshire
#> 15333 Ohio
#> 15334 Alabama
#> 15335 Indiana
#> 15336 Kansas
#> 15337 Kentucky
#> 15338 New Mexico
#> 15339 North Dakota
#> 15340 Rhode Island
#> 15341 Tennessee
#> 15342 Vermont
#> 15343 California
#> 15344 Connecticut
#> 15345 Hawaii
#> 15346 Illinois
#> 15347 Maine
#> 15348 Minnesota
#> 15349 New Hampshire
#> 15350 New Mexico
#> 15351 New York
#> 15352 Oregon
#> 15353 Rhode Island
#> 15354 Vermont
#> 15355 Washington
#> 15356 Wisconsin
#> 15357 Alabama
#> 15358 Arizona
#> 15359 Arkansas
#> 15360 California
#> 15361 Colorado
#> 15362 Connecticut
#> 15363 Delaware
#> 15364 Florida
#> 15365 Georgia
#> 15366 Idaho
#> 15367 Illinois
#> 15368 Indiana
#> 15369 Iowa
#> 15370 Kansas
#> 15371 Kentucky
#> 15372 Louisiana
#> 15373 Maine
#> 15374 Maryland
#> 15375 Massachusetts
#> 15376 Michigan
#> 15377 Minnesota
#> 15378 Mississippi
#> 15379 Missouri
#> 15380 Montana
#> 15381 Nebraska
#> 15382 Nevada
#> 15383 New Hampshire
#> 15384 New Jersey
#> 15385 New Mexico
#> 15386 New York
#> 15387 North Carolina
#> 15388 North Dakota
#> 15389 Ohio
#> 15390 Oklahoma
#> 15391 Oregon
#> 15392 Pennsylvania
#> 15393 Rhode Island
#> 15394 South Carolina
#> 15395 South Dakota
#> 15396 Tennessee
#> 15397 Texas
#> 15398 Utah
#> 15399 Vermont
#> 15400 Virginia
#> 15401 Washington
#> 15402 West Virginia
#> 15403 Wisconsin
#> 15404 Wyoming
#> 15405 Alabama
#> 15406 Arizona
#> 15407 California
#> 15408 Connecticut
#> 15409 Delaware
#> 15410 Florida
#> 15411 Georgia
#> 15412 Idaho
#> 15413 Illinois
#> 15414 Kentucky
#> 15415 Louisiana
#> 15416 Maryland
#> 15417 Massachusetts
#> 15418 Michigan
#> 15419 Minnesota
#> 15420 Mississippi
#> 15421 Nevada
#> 15422 New Hampshire
#> 15423 New Jersey
#> 15424 New Mexico
#> 15425 New York
#> 15426 North Carolina
#> 15427 Ohio
#> 15428 Oklahoma
#> 15429 Oregon
#> 15430 Pennsylvania
#> 15431 Rhode Island
#> 15432 South Carolina
#> 15433 Tennessee
#> 15434 Texas
#> 15435 Utah
#> 15436 Vermont
#> 15437 Virginia
#> 15438 Washington
#> 15439 Alabama
#> 15440 Arizona
#> 15441 California
#> 15442 Colorado
#> 15443 Connecticut
#> 15444 Delaware
#> 15445 Florida
#> 15446 Georgia
#> 15447 Idaho
#> 15448 Illinois
#> 15449 Iowa
#> 15450 Kansas
#> 15451 Kentucky
#> 15452 Louisiana
#> 15453 Maine
#> 15454 Maryland
#> 15455 Massachusetts
#> 15456 Michigan
#> 15457 Mississippi
#> 15458 Missouri
#> 15459 Montana
#> 15460 Nebraska
#> 15461 New Jersey
#> 15462 New Mexico
#> 15463 New York
#> 15464 North Carolina
#> 15465 Ohio
#> 15466 Oklahoma
#> 15467 Oregon
#> 15468 Pennsylvania
#> 15469 Rhode Island
#> 15470 South Carolina
#> 15471 Tennessee
#> 15472 Texas
#> 15473 Utah
#> 15474 Vermont
#> 15475 Virginia
#> 15476 Washington
#> 15477 West Virginia
#> 15478 Wisconsin
#> 15479 Wyoming
#> 15480 Alabama
#> 15481 Arkansas
#> 15482 California
#> 15483 Connecticut
#> 15484 Delaware
#> 15485 Florida
#> 15486 Georgia
#> 15487 Illinois
#> 15488 Indiana
#> 15489 Iowa
#> 15490 Kansas
#> 15491 Kentucky
#> 15492 Louisiana
#> 15493 Maine
#> 15494 Maryland
#> 15495 Massachusetts
#> 15496 Michigan
#> 15497 Minnesota
#> 15498 Mississippi
#> 15499 Missouri
#> 15500 New Hampshire
#> 15501 New Jersey
#> 15502 New York
#> 15503 North Carolina
#> 15504 Ohio
#> 15505 Pennsylvania
#> 15506 Rhode Island
#> 15507 South Carolina
#> 15508 Tennessee
#> 15509 Texas
#> 15510 Vermont
#> 15511 Virginia
#> 15512 Wisconsin
#> 15513 Alaska
#> 15514 Arizona
#> 15515 California
#> 15516 Colorado
#> 15517 Connecticut
#> 15518 Delaware
#> 15519 Florida
#> 15520 Hawaii
#> 15521 Idaho
#> 15522 Iowa
#> 15523 Louisiana
#> 15524 Massachusetts
#> 15525 Michigan
#> 15526 Mississippi
#> 15527 Missouri
#> 15528 Montana
#> 15529 New Jersey
#> 15530 North Carolina
#> 15531 Oklahoma
#> 15532 Oregon
#> 15533 Rhode Island
#> 15534 South Carolina
#> 15535 Tennessee
#> 15536 Texas
#> 15537 Utah
#> 15538 Washington
#> 15539 Arizona
#> 15540 Arkansas
#> 15541 California
#> 15542 Colorado
#> 15543 Florida
#> 15544 Louisiana
#> 15545 Maine
#> 15546 Michigan
#> 15547 Missouri
#> 15548 Montana
#> 15549 Nebraska
#> 15550 Nevada
#> 15551 Ohio
#> 15552 Oklahoma
#> 15553 South Dakota
#> 15554 Alabama
#> 15555 Arizona
#> 15556 Arkansas
#> 15557 Colorado
#> 15558 Florida
#> 15559 Idaho
#> 15560 Illinois
#> 15561 Indiana
#> 15562 Iowa
#> 15563 Louisiana
#> 15564 Michigan
#> 15565 Missouri
#> 15566 Nevada
#> 15567 New Jersey
#> 15568 New York
#> 15569 Ohio
#> 15570 Pennsylvania
#> 15571 South Carolina
#> 15572 Tennessee
#> 15573 Virginia
#> 15574 Arizona
#> 15575 Arkansas
#> 15576 Connecticut
#> 15577 Delaware
#> 15578 Hawaii
#> 15579 Kentucky
#> 15580 Massachusetts
#> 15581 Minnesota
#> 15582 Nebraska
#> 15583 Nevada
#> 15584 New Mexico
#> 15585 North Dakota
#> 15586 Ohio
#> 15587 Rhode Island
#> 15588 South Dakota
#> 15589 Virginia
#> 15590 Alaska
#> 15591 Arkansas
#> 15592 California
#> 15593 Colorado
#> 15594 Connecticut
#> 15595 Florida
#> 15596 Georgia
#> 15597 Indiana
#> 15598 Kansas
#> 15599 Louisiana
#> 15600 Maryland
#> 15601 Montana
#> 15602 Nevada
#> 15603 New Jersey
#> 15604 New Mexico
#> 15605 North Carolina
#> 15606 North Dakota
#> 15607 Pennsylvania
#> 15608 South Carolina
#> 15609 Tennessee
#> 15610 Utah
#> 15611 Vermont
#> 15612 Virginia
#> 15613 Washington
#> 15614 Wisconsin
#> 15615 Arizona
#> 15616 Connecticut
#> 15617 Delaware
#> 15618 Florida
#> 15619 Hawaii
#> 15620 Illinois
#> 15621 Indiana
#> 15622 Iowa
#> 15623 Louisiana
#> 15624 Nebraska
#> 15625 North Carolina
#> 15626 Ohio
#> 15627 Oregon
#> 15628 South Carolina
#> 15629 Tennessee
#> 15630 Texas
#> 15631 Virginia
#> 15632 Wisconsin
#> 15633 Alabama
#> 15634 Alaska
#> 15635 Arizona
#> 15636 Arkansas
#> 15637 California
#> 15638 Colorado
#> 15639 Connecticut
#> 15640 Delaware
#> 15641 Florida
#> 15642 Georgia
#> 15643 Hawaii
#> 15644 Idaho
#> 15645 Illinois
#> 15646 Indiana
#> 15647 Iowa
#> 15648 Kansas
#> 15649 Kentucky
#> 15650 Maine
#> 15651 Maryland
#> 15652 Massachusetts
#> 15653 Michigan
#> 15654 Minnesota
#> 15655 Mississippi
#> 15656 Missouri
#> 15657 Montana
#> 15658 Nebraska
#> 15659 Nevada
#> 15660 New Hampshire
#> 15661 New Jersey
#> 15662 New Mexico
#> 15663 New York
#> 15664 North Carolina
#> 15665 North Dakota
#> 15666 Ohio
#> 15667 Oklahoma
#> 15668 Oregon
#> 15669 Pennsylvania
#> 15670 Rhode Island
#> 15671 South Carolina
#> 15672 South Dakota
#> 15673 Tennessee
#> 15674 Utah
#> 15675 Vermont
#> 15676 Virginia
#> 15677 Washington
#> 15678 Wisconsin
#> 15679 Wyoming
#> 15680 Alabama
#> 15681 Alaska
#> 15682 Arizona
#> 15683 Arkansas
#> 15684 California
#> 15685 Colorado
#> 15686 Connecticut
#> 15687 Delaware
#> 15688 Florida
#> 15689 Georgia
#> 15690 Hawaii
#> 15691 Idaho
#> 15692 Illinois
#> 15693 Indiana
#> 15694 Iowa
#> 15695 Kansas
#> 15696 Kentucky
#> 15697 Louisiana
#> 15698 Maine
#> 15699 Maryland
#> 15700 Michigan
#> 15701 Minnesota
#> 15702 Mississippi
#> 15703 Missouri
#> 15704 Montana
#> 15705 Nebraska
#> 15706 Nevada
#> 15707 New Hampshire
#> 15708 New Jersey
#> 15709 New Mexico
#> 15710 North Dakota
#> 15711 Ohio
#> 15712 Oklahoma
#> 15713 Oregon
#> 15714 Pennsylvania
#> 15715 Rhode Island
#> 15716 South Carolina
#> 15717 South Dakota
#> 15718 Tennessee
#> 15719 Texas
#> 15720 Utah
#> 15721 Vermont
#> 15722 Virginia
#> 15723 Washington
#> 15724 Wisconsin
#> 15725 Wyoming
#> 15726 Colorado
#> 15727 Connecticut
#> 15728 Montana
#> 15729 New Jersey
#> 15730 Oregon
#> 15731 Wisconsin
#> 15732 Alabama
#> 15733 Alaska
#> 15734 Arizona
#> 15735 Arkansas
#> 15736 California
#> 15737 Colorado
#> 15738 Connecticut
#> 15739 Delaware
#> 15740 Florida
#> 15741 Georgia
#> 15742 Hawaii
#> 15743 Idaho
#> 15744 Illinois
#> 15745 Indiana
#> 15746 Iowa
#> 15747 Kansas
#> 15748 Kentucky
#> 15749 Louisiana
#> 15750 Maine
#> 15751 Maryland
#> 15752 Massachusetts
#> 15753 Michigan
#> 15754 Minnesota
#> 15755 Mississippi
#> 15756 Missouri
#> 15757 Montana
#> 15758 Nebraska
#> 15759 Nevada
#> 15760 New Hampshire
#> 15761 New Jersey
#> 15762 New Mexico
#> 15763 New York
#> 15764 North Carolina
#> 15765 North Dakota
#> 15766 Ohio
#> 15767 Oklahoma
#> 15768 Oregon
#> 15769 Pennsylvania
#> 15770 Rhode Island
#> 15771 South Dakota
#> 15772 Tennessee
#> 15773 Texas
#> 15774 Utah
#> 15775 Vermont
#> 15776 Virginia
#> 15777 Washington
#> 15778 Wisconsin
#> 15779 Wyoming
#> 15780 Arizona
#> 15781 Colorado
#> 15782 Florida
#> 15783 Hawaii
#> 15784 Iowa
#> 15785 Kansas
#> 15786 Maryland
#> 15787 Massachusetts
#> 15788 Minnesota
#> 15789 Missouri
#> 15790 New Jersey
#> 15791 New York
#> 15792 North Carolina
#> 15793 Ohio
#> 15794 Oregon
#> 15795 Pennsylvania
#> 15796 South Dakota
#> 15797 Vermont
#> 15798 Washington
#> 15799 Wisconsin
#> 15800 Alabama
#> 15801 Arizona
#> 15802 Arkansas
#> 15803 Connecticut
#> 15804 Florida
#> 15805 Illinois
#> 15806 Indiana
#> 15807 Kentucky
#> 15808 Louisiana
#> 15809 Michigan
#> 15810 Mississippi
#> 15811 Missouri
#> 15812 North Carolina
#> 15813 Oklahoma
#> 15814 Pennsylvania
#> 15815 South Carolina
#> 15816 Tennessee
#> 15817 Texas
#> 15818 Utah
#> 15819 Alaska
#> 15820 Arkansas
#> 15821 Connecticut
#> 15822 Georgia
#> 15823 Idaho
#> 15824 Illinois
#> 15825 Indiana
#> 15826 Kansas
#> 15827 Kentucky
#> 15828 Louisiana
#> 15829 Massachusetts
#> 15830 Michigan
#> 15831 Minnesota
#> 15832 Mississippi
#> 15833 Missouri
#> 15834 Nebraska
#> 15835 Nevada
#> 15836 New Jersey
#> 15837 New York
#> 15838 North Carolina
#> 15839 North Dakota
#> 15840 Ohio
#> 15841 Oklahoma
#> 15842 Pennsylvania
#> 15843 Rhode Island
#> 15844 South Carolina
#> 15845 South Dakota
#> 15846 Tennessee
#> 15847 Texas
#> 15848 Utah
#> 15849 Vermont
#> 15850 Virginia
#> 15851 Wisconsin
#> 15852 Alabama
#> 15853 Arizona
#> 15854 Arkansas
#> 15855 California
#> 15856 Connecticut
#> 15857 Florida
#> 15858 Illinois
#> 15859 Kansas
#> 15860 Kentucky
#> 15861 Louisiana
#> 15862 Michigan
#> 15863 Minnesota
#> 15864 Mississippi
#> 15865 Missouri
#> 15866 New Jersey
#> 15867 North Carolina
#> 15868 North Dakota
#> 15869 Pennsylvania
#> 15870 Rhode Island
#> 15871 South Carolina
#> 15872 South Dakota
#> 15873 Tennessee
#> 15874 Texas
#> 15875 Utah
#> 15876 Vermont
#> 15877 Virginia
#> 15878 Wisconsin
#> 15879 Alabama
#> 15880 Arizona
#> 15881 Arkansas
#> 15882 Florida
#> 15883 Kansas
#> 15884 Kentucky
#> 15885 Maine
#> 15886 Maryland
#> 15887 Massachusetts
#> 15888 Michigan
#> 15889 Minnesota
#> 15890 Mississippi
#> 15891 Missouri
#> 15892 Montana
#> 15893 Nebraska
#> 15894 New Hampshire
#> 15895 New Jersey
#> 15896 New Mexico
#> 15897 North Carolina
#> 15898 North Dakota
#> 15899 Ohio
#> 15900 Oregon
#> 15901 Pennsylvania
#> 15902 South Carolina
#> 15903 Tennessee
#> 15904 Utah
#> 15905 Vermont
#> 15906 Virginia
#> 15907 Wisconsin
#> 15908 Wyoming
#> 15909 Colorado
#> 15910 New Mexico
#> 15911 Virginia
#> 15912 Arizona
#> 15913 Hawaii
#> 15914 Kentucky
#> 15915 Minnesota
#> 15916 Oregon
#> 15917 Arizona
#> 15918 California
#> 15919 Connecticut
#> 15920 Delaware
#> 15921 Florida
#> 15922 Georgia
#> 15923 Illinois
#> 15924 Iowa
#> 15925 Kansas
#> 15926 Maine
#> 15927 Michigan
#> 15928 Minnesota
#> 15929 Mississippi
#> 15930 Missouri
#> 15931 New York
#> 15932 North Carolina
#> 15933 North Dakota
#> 15934 Ohio
#> 15935 Oregon
#> 15936 Pennsylvania
#> 15937 South Dakota
#> 15938 Tennessee
#> 15939 Utah
#> 15940 Virginia
#> 15941 Washington
#> 15942 Colorado
#> 15943 Connecticut
#> 15944 Florida
#> 15945 Kansas
#> 15946 Kentucky
#> 15947 Maryland
#> 15948 New Jersey
#> 15949 New Mexico
#> 15950 North Carolina
#> 15951 North Dakota
#> 15952 Ohio
#> 15953 Oklahoma
#> 15954 South Carolina
#> 15955 Texas
#> 15956 Utah
#> 15957 Virginia
#> 15958 Washington
#> 15959 West Virginia
#> 15960 Wisconsin
#> 15961 Wyoming
#> 15962 Alabama
#> 15963 Alaska
#> 15964 Arizona
#> 15965 Arkansas
#> 15966 California
#> 15967 Colorado
#> 15968 Connecticut
#> 15969 Delaware
#> 15970 Florida
#> 15971 Georgia
#> 15972 Hawaii
#> 15973 Illinois
#> 15974 Indiana
#> 15975 Kansas
#> 15976 Kentucky
#> 15977 Louisiana
#> 15978 Maine
#> 15979 Maryland
#> 15980 Massachusetts
#> 15981 Michigan
#> 15982 Minnesota
#> 15983 Mississippi
#> 15984 Missouri
#> 15985 Montana
#> 15986 Nevada
#> 15987 New Jersey
#> 15988 New Mexico
#> 15989 New York
#> 15990 North Carolina
#> 15991 North Dakota
#> 15992 Ohio
#> 15993 Oklahoma
#> 15994 Oregon
#> 15995 Pennsylvania
#> 15996 Rhode Island
#> 15997 South Carolina
#> 15998 South Dakota
#> 15999 Tennessee
#> 16000 Texas
#> 16001 Utah
#> 16002 Virginia
#> 16003 Washington
#> 16004 West Virginia
#> 16005 Wisconsin
#> 16006 Wyoming
#> 16007 Alabama
#> 16008 Alaska
#> 16009 Arizona
#> 16010 Arkansas
#> 16011 California
#> 16012 Colorado
#> 16013 Connecticut
#> 16014 Delaware
#> 16015 Florida
#> 16016 Georgia
#> 16017 Hawaii
#> 16018 Idaho
#> 16019 Illinois
#> 16020 Indiana
#> 16021 Iowa
#> 16022 Kansas
#> 16023 Kentucky
#> 16024 Louisiana
#> 16025 Maine
#> 16026 Maryland
#> 16027 Massachusetts
#> 16028 Michigan
#> 16029 Minnesota
#> 16030 Mississippi
#> 16031 Montana
#> 16032 Nebraska
#> 16033 Nevada
#> 16034 New Hampshire
#> 16035 New Jersey
#> 16036 New Mexico
#> 16037 New York
#> 16038 North Carolina
#> 16039 North Dakota
#> 16040 Ohio
#> 16041 Oklahoma
#> 16042 Oregon
#> 16043 Pennsylvania
#> 16044 Rhode Island
#> 16045 South Carolina
#> 16046 South Dakota
#> 16047 Tennessee
#> 16048 Texas
#> 16049 Utah
#> 16050 Vermont
#> 16051 Virginia
#> 16052 Washington
#> 16053 Wisconsin
#> 16054 Wyoming
#> 16055 Alabama
#> 16056 Alaska
#> 16057 Arizona
#> 16058 Arkansas
#> 16059 California
#> 16060 Colorado
#> 16061 Connecticut
#> 16062 Delaware
#> 16063 Florida
#> 16064 Georgia
#> 16065 Hawaii
#> 16066 Idaho
#> 16067 Illinois
#> 16068 Indiana
#> 16069 Iowa
#> 16070 Kansas
#> 16071 Kentucky
#> 16072 Maine
#> 16073 Maryland
#> 16074 Massachusetts
#> 16075 Michigan
#> 16076 Minnesota
#> 16077 Mississippi
#> 16078 Missouri
#> 16079 Montana
#> 16080 Nebraska
#> 16081 Nevada
#> 16082 New Hampshire
#> 16083 New Jersey
#> 16084 New Mexico
#> 16085 New York
#> 16086 North Carolina
#> 16087 North Dakota
#> 16088 Ohio
#> 16089 Oklahoma
#> 16090 Oregon
#> 16091 Pennsylvania
#> 16092 Rhode Island
#> 16093 South Carolina
#> 16094 South Dakota
#> 16095 Tennessee
#> 16096 Texas
#> 16097 Utah
#> 16098 Vermont
#> 16099 Virginia
#> 16100 Washington
#> 16101 Wisconsin
#> 16102 Wyoming
#> 16103 Alabama
#> 16104 Alaska
#> 16105 Arizona
#> 16106 Arkansas
#> 16107 California
#> 16108 Colorado
#> 16109 Connecticut
#> 16110 Delaware
#> 16111 Florida
#> 16112 Georgia
#> 16113 Hawaii
#> 16114 Idaho
#> 16115 Illinois
#> 16116 Indiana
#> 16117 Iowa
#> 16118 Kansas
#> 16119 Kentucky
#> 16120 Louisiana
#> 16121 Maine
#> 16122 Maryland
#> 16123 Michigan
#> 16124 Minnesota
#> 16125 Mississippi
#> 16126 Missouri
#> 16127 Montana
#> 16128 Nebraska
#> 16129 Nevada
#> 16130 New Hampshire
#> 16131 New Jersey
#> 16132 New Mexico
#> 16133 North Carolina
#> 16134 North Dakota
#> 16135 Ohio
#> 16136 Oklahoma
#> 16137 Oregon
#> 16138 Pennsylvania
#> 16139 Rhode Island
#> 16140 South Carolina
#> 16141 South Dakota
#> 16142 Tennessee
#> 16143 Texas
#> 16144 Utah
#> 16145 Vermont
#> 16146 Virginia
#> 16147 Washington
#> 16148 Wisconsin
#> 16149 Wyoming
#> 16150 Arkansas
#> 16151 Indiana
#> 16152 Kentucky
#> 16153 Michigan
#> 16154 Minnesota
#> 16155 Mississippi
#> 16156 Nevada
#> 16157 New Mexico
#> 16158 Oklahoma
#> 16159 South Carolina
#> 16160 Texas
#> 16161 Alabama
#> 16162 Alaska
#> 16163 Arizona
#> 16164 Arkansas
#> 16165 California
#> 16166 Colorado
#> 16167 Delaware
#> 16168 Florida
#> 16169 Georgia
#> 16170 Hawaii
#> 16171 Idaho
#> 16172 Illinois
#> 16173 Indiana
#> 16174 Iowa
#> 16175 Kansas
#> 16176 Kentucky
#> 16177 Louisiana
#> 16178 Maine
#> 16179 Maryland
#> 16180 Michigan
#> 16181 Minnesota
#> 16182 Mississippi
#> 16183 Missouri
#> 16184 Montana
#> 16185 Nebraska
#> 16186 Nevada
#> 16187 New Hampshire
#> 16188 New Jersey
#> 16189 New Mexico
#> 16190 New York
#> 16191 North Carolina
#> 16192 North Dakota
#> 16193 Ohio
#> 16194 Oregon
#> 16195 Pennsylvania
#> 16196 Rhode Island
#> 16197 South Carolina
#> 16198 South Dakota
#> 16199 Tennessee
#> 16200 Texas
#> 16201 Vermont
#> 16202 Virginia
#> 16203 Washington
#> 16204 Wisconsin
#> 16205 Alabama
#> 16206 Alaska
#> 16207 Arizona
#> 16208 Arkansas
#> 16209 California
#> 16210 Colorado
#> 16211 Connecticut
#> 16212 Delaware
#> 16213 Florida
#> 16214 Georgia
#> 16215 Hawaii
#> 16216 Idaho
#> 16217 Illinois
#> 16218 Indiana
#> 16219 Iowa
#> 16220 Kansas
#> 16221 Kentucky
#> 16222 Louisiana
#> 16223 Maine
#> 16224 Maryland
#> 16225 Michigan
#> 16226 Minnesota
#> 16227 Mississippi
#> 16228 Missouri
#> 16229 Montana
#> 16230 Nebraska
#> 16231 Nevada
#> 16232 New Hampshire
#> 16233 New Jersey
#> 16234 New Mexico
#> 16235 New York
#> 16236 North Carolina
#> 16237 North Dakota
#> 16238 Ohio
#> 16239 Oklahoma
#> 16240 Oregon
#> 16241 Pennsylvania
#> 16242 Rhode Island
#> 16243 South Carolina
#> 16244 South Dakota
#> 16245 Tennessee
#> 16246 Texas
#> 16247 Utah
#> 16248 Vermont
#> 16249 Virginia
#> 16250 Washington
#> 16251 Wisconsin
#> 16252 Wyoming
#> 16253 Alabama
#> 16254 Alaska
#> 16255 Arizona
#> 16256 Arkansas
#> 16257 California
#> 16258 Colorado
#> 16259 Connecticut
#> 16260 Delaware
#> 16261 Florida
#> 16262 Georgia
#> 16263 Hawaii
#> 16264 Idaho
#> 16265 Illinois
#> 16266 Indiana
#> 16267 Iowa
#> 16268 Kansas
#> 16269 Kentucky
#> 16270 Louisiana
#> 16271 Maine
#> 16272 Maryland
#> 16273 Massachusetts
#> 16274 Michigan
#> 16275 Minnesota
#> 16276 Mississippi
#> 16277 Missouri
#> 16278 Montana
#> 16279 Nebraska
#> 16280 Nevada
#> 16281 New Hampshire
#> 16282 New Jersey
#> 16283 New Mexico
#> 16284 New York
#> 16285 North Carolina
#> 16286 North Dakota
#> 16287 Ohio
#> 16288 Oklahoma
#> 16289 Oregon
#> 16290 Pennsylvania
#> 16291 Rhode Island
#> 16292 South Carolina
#> 16293 South Dakota
#> 16294 Tennessee
#> 16295 Texas
#> 16296 Utah
#> 16297 Vermont
#> 16298 Virginia
#> 16299 Washington
#> 16300 Wisconsin
#> 16301 Wyoming
#> 16302 Oklahoma
#> 16303 Arizona
#> 16304 Hawaii
#> 16305 Indiana
#> 16306 Utah
#> 16307 Virginia
#> 16308 Alabama
#> 16309 Alaska
#> 16310 Arizona
#> 16311 Arkansas
#> 16312 California
#> 16313 Colorado
#> 16314 Connecticut
#> 16315 Delaware
#> 16316 Florida
#> 16317 Georgia
#> 16318 Hawaii
#> 16319 Idaho
#> 16320 Illinois
#> 16321 Indiana
#> 16322 Iowa
#> 16323 Kansas
#> 16324 Kentucky
#> 16325 Louisiana
#> 16326 Maine
#> 16327 Massachusetts
#> 16328 Michigan
#> 16329 Minnesota
#> 16330 Mississippi
#> 16331 Missouri
#> 16332 Montana
#> 16333 Nebraska
#> 16334 Nevada
#> 16335 New Hampshire
#> 16336 New Jersey
#> 16337 New Mexico
#> 16338 New York
#> 16339 North Carolina
#> 16340 North Dakota
#> 16341 Ohio
#> 16342 Oklahoma
#> 16343 Oregon
#> 16344 Pennsylvania
#> 16345 Rhode Island
#> 16346 South Carolina
#> 16347 South Dakota
#> 16348 Tennessee
#> 16349 Texas
#> 16350 Utah
#> 16351 Vermont
#> 16352 Virginia
#> 16353 Washington
#> 16354 Wisconsin
#> 16355 Wyoming
#> 16356 Alabama
#> 16357 Alaska
#> 16358 Arizona
#> 16359 Arkansas
#> 16360 California
#> 16361 Colorado
#> 16362 Connecticut
#> 16363 Delaware
#> 16364 Florida
#> 16365 Georgia
#> 16366 Hawaii
#> 16367 Idaho
#> 16368 Illinois
#> 16369 Indiana
#> 16370 Iowa
#> 16371 Kansas
#> 16372 Kentucky
#> 16373 Louisiana
#> 16374 Maine
#> 16375 Maryland
#> 16376 Massachusetts
#> 16377 Michigan
#> 16378 Minnesota
#> 16379 Mississippi
#> 16380 Montana
#> 16381 Nebraska
#> 16382 Nevada
#> 16383 New Hampshire
#> 16384 New Jersey
#> 16385 New Mexico
#> 16386 New York
#> 16387 North Carolina
#> 16388 North Dakota
#> 16389 Ohio
#> 16390 Oklahoma
#> 16391 Oregon
#> 16392 Pennsylvania
#> 16393 Rhode Island
#> 16394 South Carolina
#> 16395 South Dakota
#> 16396 Tennessee
#> 16397 Texas
#> 16398 Utah
#> 16399 Vermont
#> 16400 Virginia
#> 16401 Washington
#> 16402 Wisconsin
#> 16403 Wyoming
#> 16404 Alaska
#> 16405 Arizona
#> 16406 Florida
#> 16407 Georgia
#> 16408 Illinois
#> 16409 Indiana
#> 16410 Iowa
#> 16411 Louisiana
#> 16412 Maine
#> 16413 Michigan
#> 16414 Mississippi
#> 16415 Missouri
#> 16416 Nebraska
#> 16417 New Hampshire
#> 16418 New Jersey
#> 16419 New Mexico
#> 16420 North Carolina
#> 16421 Pennsylvania
#> 16422 Rhode Island
#> 16423 South Carolina
#> 16424 Utah
#> 16425 Vermont
#> 16426 Alabama
#> 16427 Alaska
#> 16428 Arizona
#> 16429 Arkansas
#> 16430 California
#> 16431 Colorado
#> 16432 Connecticut
#> 16433 Delaware
#> 16434 Florida
#> 16435 Georgia
#> 16436 Hawaii
#> 16437 Idaho
#> 16438 Illinois
#> 16439 Indiana
#> 16440 Iowa
#> 16441 Kansas
#> 16442 Kentucky
#> 16443 Louisiana
#> 16444 Maine
#> 16445 Maryland
#> 16446 Massachusetts
#> 16447 Michigan
#> 16448 Minnesota
#> 16449 Mississippi
#> 16450 Missouri
#> 16451 Montana
#> 16452 Nebraska
#> 16453 Nevada
#> 16454 New Hampshire
#> 16455 New Jersey
#> 16456 New Mexico
#> 16457 New York
#> 16458 North Carolina
#> 16459 North Dakota
#> 16460 Ohio
#> 16461 Oklahoma
#> 16462 Oregon
#> 16463 Pennsylvania
#> 16464 Rhode Island
#> 16465 South Carolina
#> 16466 South Dakota
#> 16467 Tennessee
#> 16468 Texas
#> 16469 Utah
#> 16470 Vermont
#> 16471 Virginia
#> 16472 Washington
#> 16473 Wisconsin
#> 16474 Wyoming
#> 16475 Alabama
#> 16476 Alaska
#> 16477 Arizona
#> 16478 Arkansas
#> 16479 Colorado
#> 16480 Connecticut
#> 16481 Delaware
#> 16482 Florida
#> 16483 Georgia
#> 16484 Hawaii
#> 16485 Idaho
#> 16486 Indiana
#> 16487 Kentucky
#> 16488 Maryland
#> 16489 Minnesota
#> 16490 Mississippi
#> 16491 Montana
#> 16492 Nebraska
#> 16493 Nevada
#> 16494 New Hampshire
#> 16495 New Jersey
#> 16496 New Mexico
#> 16497 North Carolina
#> 16498 North Dakota
#> 16499 Ohio
#> 16500 Oklahoma
#> 16501 Oregon
#> 16502 Pennsylvania
#> 16503 Rhode Island
#> 16504 South Carolina
#> 16505 South Dakota
#> 16506 Tennessee
#> 16507 Texas
#> 16508 Utah
#> 16509 Vermont
#> 16510 Washington
#> 16511 Wyoming
#> 16512 Alabama
#> 16513 Alaska
#> 16514 Arizona
#> 16515 Arkansas
#> 16516 California
#> 16517 Colorado
#> 16518 Connecticut
#> 16519 Delaware
#> 16520 Florida
#> 16521 Georgia
#> 16522 Hawaii
#> 16523 Idaho
#> 16524 Illinois
#> 16525 Indiana
#> 16526 Iowa
#> 16527 Kansas
#> 16528 Kentucky
#> 16529 Louisiana
#> 16530 Maine
#> 16531 Maryland
#> 16532 Massachusetts
#> 16533 Michigan
#> 16534 Minnesota
#> 16535 Mississippi
#> 16536 Missouri
#> 16537 Montana
#> 16538 Nebraska
#> 16539 Nevada
#> 16540 New Hampshire
#> 16541 New Jersey
#> 16542 New Mexico
#> 16543 New York
#> 16544 North Carolina
#> 16545 North Dakota
#> 16546 Ohio
#> 16547 Oklahoma
#> 16548 Oregon
#> 16549 Pennsylvania
#> 16550 Rhode Island
#> 16551 South Carolina
#> 16552 South Dakota
#> 16553 Tennessee
#> 16554 Texas
#> 16555 Utah
#> 16556 Vermont
#> 16557 Virginia
#> 16558 Washington
#> 16559 Wisconsin
#> 16560 Wyoming
#> 16561 Alabama
#> 16562 Alaska
#> 16563 Arizona
#> 16564 Arkansas
#> 16565 California
#> 16566 Colorado
#> 16567 Connecticut
#> 16568 Delaware
#> 16569 Florida
#> 16570 Georgia
#> 16571 Hawaii
#> 16572 Idaho
#> 16573 Illinois
#> 16574 Indiana
#> 16575 Iowa
#> 16576 Kansas
#> 16577 Kentucky
#> 16578 Louisiana
#> 16579 Maine
#> 16580 Maryland
#> 16581 Massachusetts
#> 16582 Michigan
#> 16583 Minnesota
#> 16584 Mississippi
#> 16585 Missouri
#> 16586 Montana
#> 16587 Nebraska
#> 16588 Nevada
#> 16589 New Hampshire
#> 16590 New Jersey
#> 16591 New Mexico
#> 16592 New York
#> 16593 North Carolina
#> 16594 North Dakota
#> 16595 Ohio
#> 16596 Oklahoma
#> 16597 Oregon
#> 16598 Pennsylvania
#> 16599 Rhode Island
#> 16600 South Carolina
#> 16601 South Dakota
#> 16602 Tennessee
#> 16603 Texas
#> 16604 Utah
#> 16605 Vermont
#> 16606 Virginia
#> 16607 Washington
#> 16608 Wisconsin
#> 16609 Wyoming
#> 16610 Alabama
#> 16611 Arizona
#> 16612 Arkansas
#> 16613 Florida
#> 16614 Georgia
#> 16615 Idaho
#> 16616 Indiana
#> 16617 Kansas
#> 16618 Louisiana
#> 16619 Michigan
#> 16620 Mississippi
#> 16621 Missouri
#> 16622 Nebraska
#> 16623 North Carolina
#> 16624 North Dakota
#> 16625 Ohio
#> 16626 Oklahoma
#> 16627 South Carolina
#> 16628 South Dakota
#> 16629 Texas
#> 16630 Utah
#> 16631 Vermont
#> 16632 West Virginia
#> 16633 Wisconsin
#> 16634 Alabama
#> 16635 Arizona
#> 16636 Arkansas
#> 16637 Hawaii
#> 16638 Indiana
#> 16639 Kansas
#> 16640 Louisiana
#> 16641 Maine
#> 16642 Michigan
#> 16643 Montana
#> 16644 Nevada
#> 16645 New Mexico
#> 16646 North Carolina
#> 16647 Vermont
#> 16648 Alabama
#> 16649 Alaska
#> 16650 Arizona
#> 16651 Arkansas
#> 16652 Colorado
#> 16653 Florida
#> 16654 Georgia
#> 16655 Hawaii
#> 16656 Idaho
#> 16657 Illinois
#> 16658 Iowa
#> 16659 Kansas
#> 16660 Louisiana
#> 16661 Maine
#> 16662 Minnesota
#> 16663 Montana
#> 16664 Nevada
#> 16665 New Hampshire
#> 16666 New Jersey
#> 16667 New Mexico
#> 16668 North Dakota
#> 16669 Oklahoma
#> 16670 Oregon
#> 16671 Rhode Island
#> 16672 South Carolina
#> 16673 South Dakota
#> 16674 Tennessee
#> 16675 Utah
#> 16676 Virginia
#> 16677 Washington
#> 16678 Wisconsin
#> 16679 Wyoming
#> 16680 California
#> 16681 Illinois
#> 16682 Kansas
#> 16683 Nebraska
#> 16684 New Mexico
#> 16685 New York
#> 16686 Oklahoma
#> 16687 Texas
#> 16688 Utah
#> 16689 Washington
#> 16690 Arizona
#> 16691 Colorado
#> 16692 Iowa
#> 16693 Montana
#> 16694 Nebraska
#> 16695 New Jersey
#> 16696 New Mexico
#> 16697 Oklahoma
#> 16698 Washington
#> 16699 Alabama
#> 16700 Arkansas
#> 16701 Colorado
#> 16702 Delaware
#> 16703 Hawaii
#> 16704 Idaho
#> 16705 Illinois
#> 16706 Louisiana
#> 16707 North Carolina
#> 16708 Texas
#> 16709 Wisconsin
#> 16710 Wyoming
#> 16711 Arkansas
#> 16712 Iowa
#> 16713 Kentucky
#> 16714 Nevada
#> 16715 Pennsylvania
#> 16716 Alabama
#> 16717 Alaska
#> 16718 Arizona
#> 16719 Arkansas
#> 16720 California
#> 16721 Colorado
#> 16722 Connecticut
#> 16723 Delaware
#> 16724 Florida
#> 16725 Georgia
#> 16726 Hawaii
#> 16727 Idaho
#> 16728 Illinois
#> 16729 Indiana
#> 16730 Iowa
#> 16731 Kansas
#> 16732 Kentucky
#> 16733 Louisiana
#> 16734 Maine
#> 16735 Maryland
#> 16736 Massachusetts
#> 16737 Michigan
#> 16738 Minnesota
#> 16739 Mississippi
#> 16740 Missouri
#> 16741 Montana
#> 16742 Nebraska
#> 16743 Nevada
#> 16744 New Hampshire
#> 16745 New Jersey
#> 16746 New Mexico
#> 16747 New York
#> 16748 North Carolina
#> 16749 North Dakota
#> 16750 Ohio
#> 16751 Oklahoma
#> 16752 Oregon
#> 16753 Pennsylvania
#> 16754 Rhode Island
#> 16755 South Carolina
#> 16756 South Dakota
#> 16757 Tennessee
#> 16758 Texas
#> 16759 Utah
#> 16760 Vermont
#> 16761 Virginia
#> 16762 Washington
#> 16763 West Virginia
#> 16764 Wisconsin
#> 16765 Wyoming
#> 16766 Arizona
#> 16767 Colorado
#> 16768 Florida
#> 16769 Hawaii
#> 16770 Iowa
#> 16771 Kentucky
#> 16772 Maryland
#> 16773 Massachusetts
#> 16774 Minnesota
#> 16775 North Carolina
#> 16776 Oregon
#> 16777 Texas
#> 16778 Vermont
#> 16779 Virginia
#> 16780 Washington
#> 16781 Florida
#> 16782 Georgia
#> 16783 Illinois
#> 16784 Iowa
#> 16785 Louisiana
#> 16786 Massachusetts
#> 16787 New York
#> 16788 Oklahoma
#> 16789 Vermont
#> 16790 West Virginia
#> 16791 Colorado
#> 16792 Alabama
#> 16793 Arkansas
#> 16794 Colorado
#> 16795 Connecticut
#> 16796 Delaware
#> 16797 Idaho
#> 16798 Indiana
#> 16799 Michigan
#> 16800 Minnesota
#> 16801 Montana
#> 16802 Nebraska
#> 16803 Nevada
#> 16804 New Mexico
#> 16805 New York
#> 16806 North Dakota
#> 16807 Oklahoma
#> 16808 Oregon
#> 16809 Pennsylvania
#> 16810 South Dakota
#> 16811 Tennessee
#> 16812 Utah
#> 16813 Washington
#> 16814 Wisconsin
#> 16815 Alabama
#> 16816 Arkansas
#> 16817 California
#> 16818 Colorado
#> 16819 Connecticut
#> 16820 Delaware
#> 16821 Florida
#> 16822 Georgia
#> 16823 Illinois
#> 16824 Indiana
#> 16825 Kansas
#> 16826 Kentucky
#> 16827 Louisiana
#> 16828 Maine
#> 16829 Maryland
#> 16830 Massachusetts
#> 16831 Michigan
#> 16832 Minnesota
#> 16833 Missouri
#> 16834 Nebraska
#> 16835 New Hampshire
#> 16836 New Jersey
#> 16837 New York
#> 16838 North Carolina
#> 16839 Ohio
#> 16840 Oregon
#> 16841 Pennsylvania
#> 16842 Rhode Island
#> 16843 South Carolina
#> 16844 South Dakota
#> 16845 Tennessee
#> 16846 Virginia
#> 16847 West Virginia
#> 16848 Wisconsin
#> 16849 Alabama
#> 16850 Arizona
#> 16851 Arkansas
#> 16852 California
#> 16853 Colorado
#> 16854 Connecticut
#> 16855 Florida
#> 16856 Georgia
#> 16857 Idaho
#> 16858 Illinois
#> 16859 Indiana
#> 16860 Iowa
#> 16861 Kansas
#> 16862 Kentucky
#> 16863 Louisiana
#> 16864 Maine
#> 16865 Maryland
#> 16866 Massachusetts
#> 16867 Michigan
#> 16868 Minnesota
#> 16869 Mississippi
#> 16870 Missouri
#> 16871 Montana
#> 16872 Nebraska
#> 16873 Nevada
#> 16874 New Hampshire
#> 16875 New Jersey
#> 16876 New Mexico
#> 16877 New York
#> 16878 North Carolina
#> 16879 North Dakota
#> 16880 Ohio
#> 16881 Oklahoma
#> 16882 Oregon
#> 16883 Pennsylvania
#> 16884 Rhode Island
#> 16885 South Carolina
#> 16886 South Dakota
#> 16887 Tennessee
#> 16888 Texas
#> 16889 Utah
#> 16890 Vermont
#> 16891 Virginia
#> 16892 Washington
#> 16893 West Virginia
#> 16894 Wisconsin
#> 16895 Wyoming
#> 16896 California
#> 16897 Hawaii
#> 16898 Illinois
#> 16899 Michigan
#> 16900 Nevada
#> 16901 New Mexico
#> 16902 New York
#> 16903 North Carolina
#> 16904 Oklahoma
#> 16905 Oregon
#> 16906 South Dakota
#> 16907 Texas
#> 16908 Wisconsin
#> 16909 Arkansas
#> 16910 Colorado
#> 16911 Indiana
#> 16912 Kentucky
#> 16913 Louisiana
#> 16914 Missouri
#> 16915 North Carolina
#> 16916 Ohio
#> 16917 Oklahoma
#> 16918 Rhode Island
#> 16919 South Dakota
#> 16920 Tennessee
#> 16921 Vermont
#> 16922 Washington
#> 16923 Wisconsin
#> 16924 Alabama
#> 16925 Kansas
#> 16926 Louisiana
#> 16927 Missouri
#> 16928 Ohio
#> 16929 Pennsylvania
#> 16930 Alabama
#> 16931 Alaska
#> 16932 Arizona
#> 16933 California
#> 16934 Colorado
#> 16935 Connecticut
#> 16936 Florida
#> 16937 Idaho
#> 16938 Illinois
#> 16939 Indiana
#> 16940 Kansas
#> 16941 Louisiana
#> 16942 Maryland
#> 16943 Michigan
#> 16944 Mississippi
#> 16945 Missouri
#> 16946 Nebraska
#> 16947 Nevada
#> 16948 New Jersey
#> 16949 New Mexico
#> 16950 North Carolina
#> 16951 Ohio
#> 16952 Oklahoma
#> 16953 Oregon
#> 16954 Rhode Island
#> 16955 South Carolina
#> 16956 Tennessee
#> 16957 Texas
#> 16958 Utah
#> 16959 Virginia
#> 16960 Washington
#> 16961 Wisconsin
#> 16962 Alabama
#> 16963 Arizona
#> 16964 Arkansas
#> 16965 California
#> 16966 Colorado
#> 16967 Connecticut
#> 16968 Delaware
#> 16969 Florida
#> 16970 Georgia
#> 16971 Idaho
#> 16972 Illinois
#> 16973 Indiana
#> 16974 Iowa
#> 16975 Kansas
#> 16976 Kentucky
#> 16977 Louisiana
#> 16978 Maine
#> 16979 Maryland
#> 16980 Massachusetts
#> 16981 Michigan
#> 16982 Minnesota
#> 16983 Mississippi
#> 16984 Missouri
#> 16985 Montana
#> 16986 Nevada
#> 16987 New Hampshire
#> 16988 New Jersey
#> 16989 New Mexico
#> 16990 New York
#> 16991 North Carolina
#> 16992 North Dakota
#> 16993 Ohio
#> 16994 Oregon
#> 16995 Pennsylvania
#> 16996 Rhode Island
#> 16997 South Carolina
#> 16998 South Dakota
#> 16999 Tennessee
#> 17000 Texas
#> 17001 Utah
#> 17002 Vermont
#> 17003 Virginia
#> 17004 Washington
#> 17005 West Virginia
#> 17006 Wisconsin
#> 17007 Wyoming
#> 17008 Alabama
#> 17009 Alaska
#> 17010 Arizona
#> 17011 Arkansas
#> 17012 California
#> 17013 Colorado
#> 17014 Connecticut
#> 17015 Delaware
#> 17016 Florida
#> 17017 Georgia
#> 17018 Hawaii
#> 17019 Idaho
#> 17020 Illinois
#> 17021 Indiana
#> 17022 Iowa
#> 17023 Kansas
#> 17024 Kentucky
#> 17025 Louisiana
#> 17026 Maine
#> 17027 Maryland
#> 17028 Massachusetts
#> 17029 Michigan
#> 17030 Minnesota
#> 17031 Mississippi
#> 17032 Missouri
#> 17033 Montana
#> 17034 Nebraska
#> 17035 Nevada
#> 17036 New Hampshire
#> 17037 New Jersey
#> 17038 New Mexico
#> 17039 New York
#> 17040 North Carolina
#> 17041 North Dakota
#> 17042 Ohio
#> 17043 Oklahoma
#> 17044 Oregon
#> 17045 Pennsylvania
#> 17046 Rhode Island
#> 17047 South Carolina
#> 17048 South Dakota
#> 17049 Tennessee
#> 17050 Texas
#> 17051 Utah
#> 17052 Vermont
#> 17053 Virginia
#> 17054 Washington
#> 17055 West Virginia
#> 17056 Wisconsin
#> 17057 Wyoming
#> 17058 Alabama
#> 17059 Alaska
#> 17060 Arizona
#> 17061 California
#> 17062 Colorado
#> 17063 Connecticut
#> 17064 Florida
#> 17065 Idaho
#> 17066 Illinois
#> 17067 Indiana
#> 17068 Kansas
#> 17069 Louisiana
#> 17070 Maryland
#> 17071 Michigan
#> 17072 Mississippi
#> 17073 Missouri
#> 17074 Montana
#> 17075 Nebraska
#> 17076 Nevada
#> 17077 New Jersey
#> 17078 New Mexico
#> 17079 North Carolina
#> 17080 Ohio
#> 17081 Oklahoma
#> 17082 Oregon
#> 17083 Rhode Island
#> 17084 South Carolina
#> 17085 Tennessee
#> 17086 Texas
#> 17087 Utah
#> 17088 Virginia
#> 17089 Washington
#> 17090 Wisconsin
#> 17091 Montana
#> 17092 Arkansas
#> 17093 California
#> 17094 Georgia
#> 17095 Idaho
#> 17096 Indiana
#> 17097 Iowa
#> 17098 Kentucky
#> 17099 Michigan
#> 17100 Minnesota
#> 17101 New Mexico
#> 17102 North Carolina
#> 17103 North Dakota
#> 17104 Utah
#> 17105 Colorado
#> 17106 Alaska
#> 17107 Arizona
#> 17108 Arkansas
#> 17109 Colorado
#> 17110 Delaware
#> 17111 Florida
#> 17112 Illinois
#> 17113 Indiana
#> 17114 Iowa
#> 17115 Kansas
#> 17116 Maryland
#> 17117 Minnesota
#> 17118 Nebraska
#> 17119 New Hampshire
#> 17120 South Dakota
#> 17121 Texas
#> 17122 Utah
#> 17123 Virginia
#> 17124 West Virginia
#> 17125 Alaska
#> 17126 Arkansas
#> 17127 Idaho
#> 17128 Indiana
#> 17129 Iowa
#> 17130 Mississippi
#> 17131 Nebraska
#> 17132 Nevada
#> 17133 Ohio
#> 17134 Pennsylvania
#> 17135 Tennessee
#> 17136 Texas
#> 17137 Virginia
#> 17138 Alaska
#> 17139 California
#> 17140 Hawaii
#> 17141 Maine
#> 17142 Massachusetts
#> 17143 New Hampshire
#> 17144 New Jersey
#> 17145 New Mexico
#> 17146 Vermont
#> 17147 Washington
#> 17148 Indiana
#> 17149 Kentucky
#> 17150 South Dakota
#> 17151 Kentucky
#> 17152 North Dakota
#> 17153 Alabama
#> 17154 Connecticut
#> 17155 Delaware
#> 17156 Georgia
#> 17157 Illinois
#> 17158 Indiana
#> 17159 Louisiana
#> 17160 Massachusetts
#> 17161 South Carolina
#> 17162 Tennessee
#> 17163 Virginia
#> 17164 Arizona
#> 17165 Arkansas
#> 17166 Delaware
#> 17167 Florida
#> 17168 Georgia
#> 17169 Illinois
#> 17170 Indiana
#> 17171 Kansas
#> 17172 Kentucky
#> 17173 Maine
#> 17174 Maryland
#> 17175 Massachusetts
#> 17176 Michigan
#> 17177 Minnesota
#> 17178 Mississippi
#> 17179 Montana
#> 17180 Nevada
#> 17181 New Hampshire
#> 17182 New Mexico
#> 17183 New York
#> 17184 North Carolina
#> 17185 North Dakota
#> 17186 Ohio
#> 17187 Oklahoma
#> 17188 Pennsylvania
#> 17189 Rhode Island
#> 17190 Texas
#> 17191 Utah
#> 17192 Virginia
#> 17193 Alaska
#> 17194 Colorado
#> 17195 Connecticut
#> 17196 Maryland
#> 17197 New Hampshire
#> 17198 New York
#> 17199 Rhode Island
#> 17200 Vermont
#> 17201 Virginia
#> 17202 Arizona
#> 17203 California
#> 17204 Colorado
#> 17205 Connecticut
#> 17206 Florida
#> 17207 Georgia
#> 17208 Hawaii
#> 17209 Indiana
#> 17210 Iowa
#> 17211 Kansas
#> 17212 Kentucky
#> 17213 Louisiana
#> 17214 Maryland
#> 17215 Massachusetts
#> 17216 Michigan
#> 17217 Minnesota
#> 17218 Missouri
#> 17219 Montana
#> 17220 Nebraska
#> 17221 Nevada
#> 17222 New Jersey
#> 17223 New Mexico
#> 17224 New York
#> 17225 North Carolina
#> 17226 North Dakota
#> 17227 Ohio
#> 17228 Oregon
#> 17229 Rhode Island
#> 17230 South Carolina
#> 17231 South Dakota
#> 17232 Tennessee
#> 17233 Texas
#> 17234 Utah
#> 17235 Vermont
#> 17236 Washington
#> 17237 Wisconsin
#> 17238 Alabama
#> 17239 Alaska
#> 17240 California
#> 17241 Colorado
#> 17242 Connecticut
#> 17243 Delaware
#> 17244 Florida
#> 17245 Georgia
#> 17246 Hawaii
#> 17247 Illinois
#> 17248 Indiana
#> 17249 Iowa
#> 17250 Kansas
#> 17251 Louisiana
#> 17252 Maine
#> 17253 Maryland
#> 17254 Massachusetts
#> 17255 Michigan
#> 17256 Mississippi
#> 17257 Montana
#> 17258 Nebraska
#> 17259 Nevada
#> 17260 New Hampshire
#> 17261 New Jersey
#> 17262 New Mexico
#> 17263 New York
#> 17264 North Carolina
#> 17265 Ohio
#> 17266 Oregon
#> 17267 Pennsylvania
#> 17268 Rhode Island
#> 17269 South Carolina
#> 17270 South Dakota
#> 17271 Tennessee
#> 17272 Texas
#> 17273 Vermont
#> 17274 Virginia
#> 17275 Washington
#> 17276 Wisconsin
#> 17277 California
#> 17278 Colorado
#> 17279 Connecticut
#> 17280 Delaware
#> 17281 Hawaii
#> 17282 Illinois
#> 17283 Iowa
#> 17284 Maine
#> 17285 Maryland
#> 17286 Minnesota
#> 17287 Nevada
#> 17288 New Jersey
#> 17289 New Mexico
#> 17290 Oregon
#> 17291 Rhode Island
#> 17292 Vermont
#> 17293 Washington
#> 17294 California
#> 17295 Connecticut
#> 17296 Delaware
#> 17297 Hawaii
#> 17298 Maryland
#> 17299 Massachusetts
#> 17300 Nevada
#> 17301 New Hampshire
#> 17302 New Jersey
#> 17303 New York
#> 17304 Rhode Island
#> 17305 Vermont
#> 17306 Wisconsin
#> 17307 California
#> 17308 Connecticut
#> 17309 Delaware
#> 17310 Maryland
#> 17311 Massachusetts
#> 17312 Nevada
#> 17313 New Hampshire
#> 17314 New Jersey
#> 17315 New York
#> 17316 Vermont
#> 17317 Wisconsin
#> 17318 California
#> 17319 Delaware
#> 17320 Hawaii
#> 17321 Indiana
#> 17322 Iowa
#> 17323 Maryland
#> 17324 Michigan
#> 17325 Minnesota
#> 17326 Missouri
#> 17327 Nebraska
#> 17328 New Jersey
#> 17329 New York
#> 17330 Oregon
#> 17331 Rhode Island
#> 17332 Tennessee
#> 17333 Virginia
#> 17334 Washington
#> 17335 Wisconsin
#> 17336 California
#> 17337 Florida
#> 17338 Hawaii
#> 17339 Illinois
#> 17340 Massachusetts
#> 17341 New Jersey
#> 17342 Rhode Island
#> 17343 Virginia
#> 17344 California
#> 17345 Connecticut
#> 17346 Hawaii
#> 17347 Massachusetts
#> 17348 California
#> 17349 Illinois
#> 17350 Rhode Island
#> 17351 Alaska
#> 17352 California
#> 17353 Colorado
#> 17354 Connecticut
#> 17355 Delaware
#> 17356 Idaho
#> 17357 Illinois
#> 17358 Indiana
#> 17359 Iowa
#> 17360 Kansas
#> 17361 Maine
#> 17362 Maryland
#> 17363 Massachusetts
#> 17364 Michigan
#> 17365 Minnesota
#> 17366 Montana
#> 17367 Nebraska
#> 17368 New Hampshire
#> 17369 New Jersey
#> 17370 New Mexico
#> 17371 New York
#> 17372 North Dakota
#> 17373 Ohio
#> 17374 Oregon
#> 17375 Pennsylvania
#> 17376 Rhode Island
#> 17377 South Dakota
#> 17378 Vermont
#> 17379 Washington
#> 17380 Wisconsin
#> 17381 Wyoming
#> 17382 Alabama
#> 17383 Arizona
#> 17384 Arkansas
#> 17385 Delaware
#> 17386 Georgia
#> 17387 Idaho
#> 17388 Indiana
#> 17389 Kansas
#> 17390 Kentucky
#> 17391 Louisiana
#> 17392 Maine
#> 17393 Massachusetts
#> 17394 Michigan
#> 17395 Minnesota
#> 17396 Mississippi
#> 17397 Missouri
#> 17398 Montana
#> 17399 Nebraska
#> 17400 North Carolina
#> 17401 North Dakota
#> 17402 Ohio
#> 17403 Oklahoma
#> 17404 Pennsylvania
#> 17405 South Carolina
#> 17406 South Dakota
#> 17407 Tennessee
#> 17408 Texas
#> 17409 Utah
#> 17410 Virginia
#> 17411 West Virginia
#> 17412 Wisconsin
#> 17413 Alabama
#> 17414 Arizona
#> 17415 Arkansas
#> 17416 California
#> 17417 Colorado
#> 17418 Connecticut
#> 17419 Delaware
#> 17420 Florida
#> 17421 Georgia
#> 17422 Idaho
#> 17423 Illinois
#> 17424 Indiana
#> 17425 Iowa
#> 17426 Kansas
#> 17427 Kentucky
#> 17428 Louisiana
#> 17429 Maine
#> 17430 Maryland
#> 17431 Massachusetts
#> 17432 Michigan
#> 17433 Minnesota
#> 17434 Mississippi
#> 17435 Missouri
#> 17436 Montana
#> 17437 Nebraska
#> 17438 Nevada
#> 17439 New Hampshire
#> 17440 New Jersey
#> 17441 New Mexico
#> 17442 New York
#> 17443 North Carolina
#> 17444 North Dakota
#> 17445 Ohio
#> 17446 Oklahoma
#> 17447 Oregon
#> 17448 Pennsylvania
#> 17449 Rhode Island
#> 17450 South Carolina
#> 17451 South Dakota
#> 17452 Tennessee
#> 17453 Texas
#> 17454 Utah
#> 17455 Vermont
#> 17456 Virginia
#> 17457 Washington
#> 17458 West Virginia
#> 17459 Wisconsin
#> 17460 Wyoming
#> 17461 Arizona
#> 17462 Colorado
#> 17463 Delaware
#> 17464 Georgia
#> 17465 Idaho
#> 17466 Indiana
#> 17467 Iowa
#> 17468 Maine
#> 17469 Maryland
#> 17470 Massachusetts
#> 17471 Montana
#> 17472 Nevada
#> 17473 New Mexico
#> 17474 North Carolina
#> 17475 North Dakota
#> 17476 Oregon
#> 17477 Utah
#> 17478 Washington
#> 17479 West Virginia
#> 17480 Wyoming
#> 17481 Alaska
#> 17482 California
#> 17483 Colorado
#> 17484 Connecticut
#> 17485 Delaware
#> 17486 Illinois
#> 17487 Maryland
#> 17488 Michigan
#> 17489 Minnesota
#> 17490 Montana
#> 17491 Nevada
#> 17492 New Hampshire
#> 17493 New Mexico
#> 17494 North Dakota
#> 17495 Oklahoma
#> 17496 Oregon
#> 17497 Virginia
#> 17498 Alabama
#> 17499 Alaska
#> 17500 Arizona
#> 17501 Arkansas
#> 17502 California
#> 17503 Colorado
#> 17504 Connecticut
#> 17505 Delaware
#> 17506 Florida
#> 17507 Georgia
#> 17508 Hawaii
#> 17509 Idaho
#> 17510 Illinois
#> 17511 Indiana
#> 17512 Iowa
#> 17513 Kansas
#> 17514 Kentucky
#> 17515 Louisiana
#> 17516 Maine
#> 17517 Maryland
#> 17518 Massachusetts
#> 17519 Michigan
#> 17520 Minnesota
#> 17521 Mississippi
#> 17522 Missouri
#> 17523 Montana
#> 17524 Nebraska
#> 17525 Nevada
#> 17526 New Hampshire
#> 17527 New Jersey
#> 17528 New Mexico
#> 17529 New York
#> 17530 North Carolina
#> 17531 North Dakota
#> 17532 Ohio
#> 17533 Oklahoma
#> 17534 Oregon
#> 17535 Pennsylvania
#> 17536 Rhode Island
#> 17537 South Carolina
#> 17538 South Dakota
#> 17539 Tennessee
#> 17540 Texas
#> 17541 Utah
#> 17542 Vermont
#> 17543 Virginia
#> 17544 Washington
#> 17545 Wisconsin
#> 17546 Wyoming
#> 17547 Alabama
#> 17548 Arizona
#> 17549 Arkansas
#> 17550 California
#> 17551 Delaware
#> 17552 Georgia
#> 17553 Idaho
#> 17554 Indiana
#> 17555 Kansas
#> 17556 Louisiana
#> 17557 Massachusetts
#> 17558 Minnesota
#> 17559 Missouri
#> 17560 Nebraska
#> 17561 North Carolina
#> 17562 Ohio
#> 17563 Oklahoma
#> 17564 Pennsylvania
#> 17565 South Carolina
#> 17566 South Dakota
#> 17567 Utah
#> 17568 Alaska
#> 17569 Arizona
#> 17570 Arkansas
#> 17571 California
#> 17572 Colorado
#> 17573 Connecticut
#> 17574 Florida
#> 17575 Georgia
#> 17576 Idaho
#> 17577 Illinois
#> 17578 Indiana
#> 17579 Iowa
#> 17580 Kentucky
#> 17581 Maine
#> 17582 Maryland
#> 17583 Massachusetts
#> 17584 Michigan
#> 17585 Minnesota
#> 17586 Mississippi
#> 17587 Nebraska
#> 17588 Nevada
#> 17589 New Hampshire
#> 17590 New Jersey
#> 17591 New York
#> 17592 North Carolina
#> 17593 Ohio
#> 17594 Pennsylvania
#> 17595 South Carolina
#> 17596 South Dakota
#> 17597 Tennessee
#> 17598 Utah
#> 17599 Vermont
#> 17600 Virginia
#> 17601 West Virginia
#> 17602 Wisconsin
#> 17603 Alabama
#> 17604 Alaska
#> 17605 Arizona
#> 17606 Arkansas
#> 17607 California
#> 17608 Colorado
#> 17609 Connecticut
#> 17610 Delaware
#> 17611 Florida
#> 17612 Georgia
#> 17613 Hawaii
#> 17614 Idaho
#> 17615 Illinois
#> 17616 Indiana
#> 17617 Iowa
#> 17618 Kansas
#> 17619 Kentucky
#> 17620 Louisiana
#> 17621 Maine
#> 17622 Maryland
#> 17623 Massachusetts
#> 17624 Michigan
#> 17625 Minnesota
#> 17626 Mississippi
#> 17627 Missouri
#> 17628 Montana
#> 17629 Nebraska
#> 17630 Nevada
#> 17631 New Hampshire
#> 17632 New Jersey
#> 17633 New Mexico
#> 17634 New York
#> 17635 North Carolina
#> 17636 North Dakota
#> 17637 Ohio
#> 17638 Oklahoma
#> 17639 Oregon
#> 17640 Pennsylvania
#> 17641 Rhode Island
#> 17642 South Carolina
#> 17643 South Dakota
#> 17644 Tennessee
#> 17645 Texas
#> 17646 Utah
#> 17647 Vermont
#> 17648 Virginia
#> 17649 Washington
#> 17650 West Virginia
#> 17651 Wisconsin
#> 17652 Wyoming
#> 17653 Arizona
#> 17654 Delaware
#> 17655 Florida
#> 17656 Hawaii
#> 17657 Illinois
#> 17658 Iowa
#> 17659 Louisiana
#> 17660 Maine
#> 17661 Maryland
#> 17662 Massachusetts
#> 17663 Michigan
#> 17664 Minnesota
#> 17665 Montana
#> 17666 Nebraska
#> 17667 Nevada
#> 17668 New Jersey
#> 17669 New York
#> 17670 North Dakota
#> 17671 Ohio
#> 17672 Oregon
#> 17673 Pennsylvania
#> 17674 Rhode Island
#> 17675 South Dakota
#> 17676 Utah
#> 17677 Vermont
#> 17678 Washington
#> 17679 Idaho
#> 17680 Iowa
#> 17681 Massachusetts
#> 17682 South Carolina
#> 17683 Texas
#> 17684 Utah
#> 17685 Virginia
#> 17686 Alabama
#> 17687 Alaska
#> 17688 Arizona
#> 17689 Arkansas
#> 17690 California
#> 17691 Colorado
#> 17692 Connecticut
#> 17693 Delaware
#> 17694 Florida
#> 17695 Georgia
#> 17696 Hawaii
#> 17697 Idaho
#> 17698 Illinois
#> 17699 Indiana
#> 17700 Iowa
#> 17701 Kansas
#> 17702 Kentucky
#> 17703 Louisiana
#> 17704 Maine
#> 17705 Maryland
#> 17706 Massachusetts
#> 17707 Michigan
#> 17708 Minnesota
#> 17709 Mississippi
#> 17710 Missouri
#> 17711 Montana
#> 17712 Nebraska
#> 17713 Nevada
#> 17714 New Hampshire
#> 17715 New Jersey
#> 17716 New Mexico
#> 17717 New York
#> 17718 North Carolina
#> 17719 North Dakota
#> 17720 Ohio
#> 17721 Oklahoma
#> 17722 Oregon
#> 17723 Pennsylvania
#> 17724 Rhode Island
#> 17725 South Carolina
#> 17726 South Dakota
#> 17727 Tennessee
#> 17728 Texas
#> 17729 Utah
#> 17730 Vermont
#> 17731 Virginia
#> 17732 Washington
#> 17733 West Virginia
#> 17734 Wisconsin
#> 17735 Wyoming
#> 17736 Alabama
#> 17737 Alaska
#> 17738 Arizona
#> 17739 Arkansas
#> 17740 California
#> 17741 Colorado
#> 17742 Connecticut
#> 17743 Delaware
#> 17744 Florida
#> 17745 Georgia
#> 17746 Hawaii
#> 17747 Idaho
#> 17748 Illinois
#> 17749 Indiana
#> 17750 Iowa
#> 17751 Kansas
#> 17752 Kentucky
#> 17753 Louisiana
#> 17754 Maine
#> 17755 Maryland
#> 17756 Massachusetts
#> 17757 Michigan
#> 17758 Minnesota
#> 17759 Mississippi
#> 17760 Missouri
#> 17761 Montana
#> 17762 Nebraska
#> 17763 Nevada
#> 17764 New Hampshire
#> 17765 New Jersey
#> 17766 New Mexico
#> 17767 New York
#> 17768 North Carolina
#> 17769 North Dakota
#> 17770 Ohio
#> 17771 Oklahoma
#> 17772 Oregon
#> 17773 Pennsylvania
#> 17774 Rhode Island
#> 17775 South Carolina
#> 17776 South Dakota
#> 17777 Tennessee
#> 17778 Texas
#> 17779 Utah
#> 17780 Vermont
#> 17781 Virginia
#> 17782 Washington
#> 17783 West Virginia
#> 17784 Wisconsin
#> 17785 Wyoming
#> 17786 Alabama
#> 17787 Alaska
#> 17788 Arizona
#> 17789 Arkansas
#> 17790 California
#> 17791 Colorado
#> 17792 Connecticut
#> 17793 Delaware
#> 17794 Florida
#> 17795 Georgia
#> 17796 Hawaii
#> 17797 Idaho
#> 17798 Illinois
#> 17799 Indiana
#> 17800 Iowa
#> 17801 Kansas
#> 17802 Kentucky
#> 17803 Louisiana
#> 17804 Maine
#> 17805 Maryland
#> 17806 Massachusetts
#> 17807 Michigan
#> 17808 Minnesota
#> 17809 Mississippi
#> 17810 Missouri
#> 17811 Montana
#> 17812 Nebraska
#> 17813 Nevada
#> 17814 New Hampshire
#> 17815 New Jersey
#> 17816 New Mexico
#> 17817 New York
#> 17818 North Carolina
#> 17819 North Dakota
#> 17820 Ohio
#> 17821 Oklahoma
#> 17822 Oregon
#> 17823 Pennsylvania
#> 17824 Rhode Island
#> 17825 South Carolina
#> 17826 South Dakota
#> 17827 Tennessee
#> 17828 Texas
#> 17829 Utah
#> 17830 Vermont
#> 17831 Virginia
#> 17832 Washington
#> 17833 West Virginia
#> 17834 Wisconsin
#> 17835 Wyoming
#> policy
#> 1 aboldeapen
#> 2 aboldeapen
#> 3 aboldeapen
#> 4 aboldeapen
#> 5 aboldeapen
#> 6 aboldeapen
#> 7 aboldeapen
#> 8 aboldeapen
#> 9 aboldeapen
#> 10 aboldeapen
#> 11 aboldeapen
#> 12 aboldeapen
#> 13 aboldeapen
#> 14 aboldeapen
#> 15 aboldeapen
#> 16 aborparc
#> 17 aborparc
#> 18 aborparc
#> 19 aborparc
#> 20 aborparc
#> 21 aborparc
#> 22 aborparc
#> 23 aborparc
#> 24 aborparc
#> 25 aborparc
#> 26 aborparc
#> 27 aborparc
#> 28 aborparc
#> 29 aborparc
#> 30 aborparc
#> 31 aborparn
#> 32 aborparn
#> 33 aborparn
#> 34 aborparn
#> 35 aborparn
#> 36 aborparn
#> 37 aborparn
#> 38 aborparn
#> 39 aborparn
#> 40 aborparn
#> 41 aborparn
#> 42 aborparn
#> 43 aborparn
#> 44 aborparn
#> 45 aborparn
#> 46 aborparn
#> 47 aborparn
#> 48 aborpreroe
#> 49 aborpreroe
#> 50 aborpreroe
#> 51 aborpreroe
#> 52 aborpreroe
#> 53 aborpreroe
#> 54 aborpreroe
#> 55 aborpreroe
#> 56 aborpreroe
#> 57 aborpreroe
#> 58 aborpreroe
#> 59 aborpreroe
#> 60 aborpreroe
#> 61 aborpreroe
#> 62 aborpreroe
#> 63 aborpreroe
#> 64 aborpreroe
#> 65 aborpreroe
#> 66 abortion_consent_1973_199
#> 67 abortion_consent_1973_199
#> 68 abortion_consent_1973_199
#> 69 abortion_consent_1973_199
#> 70 abortion_consent_1992_201
#> 71 abortion_consent_1992_201
#> 72 abortion_consent_1992_201
#> 73 abortion_consent_1992_201
#> 74 abortion_consent_1992_201
#> 75 abortion_consent_1992_201
#> 76 abortion_consent_1992_201
#> 77 abortion_consent_1992_201
#> 78 abortion_consent_1992_201
#> 79 abortion_consent_1992_201
#> 80 abortion_consent_1992_201
#> 81 abortion_consent_1992_201
#> 82 abortion_consent_1992_201
#> 83 abortion_consent_1992_201
#> 84 abortion_consent_1992_201
#> 85 abortion_consent_1992_201
#> 86 abortion_consent_1992_201
#> 87 abortion_consent_1992_201
#> 88 abortion_consent_1992_201
#> 89 abortion_consent_1992_201
#> 90 abortion_consent_1992_201
#> 91 abortion_consent_1992_201
#> 92 abortion_consent_1992_201
#> 93 abortion_consent_1992_201
#> 94 abortion_consent_1992_201
#> 95 abortion_consent_1992_201
#> 96 abortion_consent_1992_201
#> 97 abortion_consent_1992_201
#> 98 abortion_consent_1992_201
#> 99 abortion_consent_1992_201
#> 100 abortion_medicai
#> 101 abortion_medicai
#> 102 abortion_medicai
#> 103 abortion_medicai
#> 104 abortion_medicai
#> 105 abortion_medicai
#> 106 abortion_medicai
#> 107 abortion_medicai
#> 108 abortion_medicai
#> 109 abortion_medicai
#> 110 abortion_medicai
#> 111 abortion_medicai
#> 112 abortion_medicai
#> 113 abortion_medicai
#> 114 abortion_medicai
#> 115 abortion_medicai
#> 116 abortion_medicai
#> 117 abortion_medicai
#> 118 abortion_medicai
#> 119 abortion_medicai
#> 120 abortion_partial_birt
#> 121 abortion_partial_birt
#> 122 abortion_partial_birt
#> 123 abortion_partial_birt
#> 124 abortion_partial_birt
#> 125 abortion_partial_birt
#> 126 abortion_partial_birt
#> 127 abortion_partial_birt
#> 128 abortion_partial_birt
#> 129 abortion_partial_birt
#> 130 abortion_partial_birt
#> 131 abortion_partial_birt
#> 132 abortion_reform_prero
#> 133 abortion_reform_prero
#> 134 abortion_reform_prero
#> 135 abortion_reform_prero
#> 136 abortion_reform_prero
#> 137 abortion_reform_prero
#> 138 abortion_reform_prero
#> 139 abortion_reform_prero
#> 140 abortion_reform_prero
#> 141 abortion_reform_prero
#> 142 abortion_reform_prero
#> 143 abortion_reform_prero
#> 144 abortion_reform_prero
#> 145 abortion_reform_prero
#> 146 abortion_reform_prero
#> 147 abortion_reform_prero
#> 148 abortion_reform_prero
#> 149 absvot
#> 150 absvot
#> 151 absvot
#> 152 absvot
#> 153 absvot
#> 154 absvot
#> 155 absvot
#> 156 absvot
#> 157 absvot
#> 158 absvot
#> 159 absvot
#> 160 absvot
#> 161 absvot
#> 162 absvot
#> 163 absvot
#> 164 absvot
#> 165 absvot
#> 166 absvot
#> 167 absvot
#> 168 absvot
#> 169 absvot
#> 170 absvot
#> 171 absvot
#> 172 absvot
#> 173 absvot
#> 174 absvot
#> 175 acctlic
#> 176 acctlic
#> 177 acctlic
#> 178 acctlic
#> 179 acctlic
#> 180 acctlic
#> 181 acctlic
#> 182 acctlic
#> 183 acctlic
#> 184 acctlic
#> 185 acctlic
#> 186 acctlic
#> 187 acctlic
#> 188 acctlic
#> 189 acctlic
#> 190 acctlic
#> 191 acctlic
#> 192 acctlic
#> 193 acctlic
#> 194 acctlic
#> 195 acctlic
#> 196 acctlic
#> 197 acctlic
#> 198 acctlic
#> 199 acctlic
#> 200 acctlic
#> 201 acctlic
#> 202 acctlic
#> 203 acctlic
#> 204 acctlic
#> 205 acctlic
#> 206 acctlic
#> 207 acctlic
#> 208 acctlic
#> 209 acctlic
#> 210 acctlic
#> 211 acctlic
#> 212 acctlic
#> 213 acctlic
#> 214 acctlic
#> 215 acctlic
#> 216 acctlic
#> 217 acctlic
#> 218 acctlic
#> 219 acctlic
#> 220 acctlic
#> 221 acctlic
#> 222 acctlic
#> 223 adawork
#> 224 adawork
#> 225 adawork
#> 226 adawork
#> 227 adawork
#> 228 adawork
#> 229 adawork
#> 230 adawork
#> 231 adawork
#> 232 adawork
#> 233 adawork
#> 234 adawork
#> 235 adawork
#> 236 adawork
#> 237 adawork
#> 238 adawork
#> 239 adawork
#> 240 adawork
#> 241 adawork
#> 242 adawork
#> 243 adawork
#> 244 adawork
#> 245 adawork
#> 246 adawork
#> 247 adawork
#> 248 adawork
#> 249 adawork
#> 250 adawork
#> 251 adc
#> 252 adc
#> 253 adc
#> 254 adc
#> 255 adc
#> 256 adc
#> 257 adc
#> 258 adc
#> 259 adc
#> 260 adc
#> 261 adc
#> 262 adc
#> 263 adc
#> 264 adc
#> 265 adc
#> 266 adc
#> 267 adc
#> 268 adc
#> 269 adc
#> 270 adc
#> 271 adc
#> 272 adc
#> 273 adc
#> 274 adc
#> 275 adc
#> 276 adc
#> 277 adc
#> 278 adc
#> 279 adc
#> 280 adc
#> 281 adc
#> 282 adc
#> 283 adc
#> 284 adc
#> 285 adc
#> 286 adc
#> 287 adc
#> 288 adc
#> 289 adc
#> 290 adc
#> 291 adc
#> 292 adc
#> 293 adc
#> 294 adc
#> 295 adc
#> 296 adc
#> 297 adc
#> 298 adc
#> 299 adcom
#> 300 adcom
#> 301 adcom
#> 302 adcom
#> 303 adcom
#> 304 adcom
#> 305 adcom
#> 306 adcom
#> 307 adcom
#> 308 adcom
#> 309 adcom
#> 310 adcom
#> 311 adcom
#> 312 adcom
#> 313 adcom
#> 314 adcom
#> 315 adcom
#> 316 adcom
#> 317 adcom
#> 318 adcom
#> 319 adcom
#> 320 adcom
#> 321 adcom
#> 322 adcom
#> 323 adcom
#> 324 adcom
#> 325 adcom
#> 326 adcom
#> 327 adcom
#> 328 adcom
#> 329 adcom
#> 330 adcom
#> 331 adcom
#> 332 adcom
#> 333 adcom
#> 334 adcom
#> 335 adcom
#> 336 adcom
#> 337 adcom
#> 338 adcom
#> 339 adcom
#> 340 admittpriv
#> 341 admittpriv
#> 342 admittpriv
#> 343 admittpriv
#> 344 admittpriv
#> 345 admittpriv
#> 346 admittpriv
#> 347 admittpriv
#> 348 admittpriv
#> 349 admittpriv
#> 350 admittpriv
#> 351 admittpriv
#> 352 admittpriv
#> 353 adoption act (1953)(1969)
#> 354 adoption act (1953)(1969)
#> 355 adoption act (1953)(1969)
#> 356 adoption act (1953)(1969)
#> 357 adoption act (1953)(1969)
#> 358 adoption act (1994)
#> 359 adult guardianship and protective proceedings jurisdiction act
#> 360 adult guardianship and protective proceedings jurisdiction act
#> 361 adult guardianship and protective proceedings jurisdiction act
#> 362 adult guardianship and protective proceedings jurisdiction act
#> 363 adult guardianship and protective proceedings jurisdiction act
#> 364 adult guardianship and protective proceedings jurisdiction act
#> 365 adult guardianship and protective proceedings jurisdiction act
#> 366 adult guardianship and protective proceedings jurisdiction act
#> 367 adult guardianship and protective proceedings jurisdiction act
#> 368 adult guardianship and protective proceedings jurisdiction act
#> 369 adult guardianship and protective proceedings jurisdiction act
#> 370 adult guardianship and protective proceedings jurisdiction act
#> 371 adult guardianship and protective proceedings jurisdiction act
#> 372 adult guardianship and protective proceedings jurisdiction act
#> 373 adult guardianship and protective proceedings jurisdiction act
#> 374 adult guardianship and protective proceedings jurisdiction act
#> 375 adult guardianship and protective proceedings jurisdiction act
#> 376 adult guardianship and protective proceedings jurisdiction act
#> 377 adult guardianship and protective proceedings jurisdiction act
#> 378 adult guardianship and protective proceedings jurisdiction act
#> 379 adult guardianship and protective proceedings jurisdiction act
#> 380 adult guardianship and protective proceedings jurisdiction act
#> 381 adult guardianship and protective proceedings jurisdiction act
#> 382 adult guardianship and protective proceedings jurisdiction act
#> 383 adult guardianship and protective proceedings jurisdiction act
#> 384 adult guardianship and protective proceedings jurisdiction act
#> 385 adult guardianship and protective proceedings jurisdiction act
#> 386 adult guardianship and protective proceedings jurisdiction act
#> 387 adult guardianship and protective proceedings jurisdiction act
#> 388 adult guardianship and protective proceedings jurisdiction act
#> 389 adult guardianship and protective proceedings jurisdiction act
#> 390 adult guardianship and protective proceedings jurisdiction act
#> 391 adult guardianship and protective proceedings jurisdiction act
#> 392 adult guardianship and protective proceedings jurisdiction act
#> 393 adult guardianship and protective proceedings jurisdiction act
#> 394 adult guardianship and protective proceedings jurisdiction act
#> 395 adult guardianship and protective proceedings jurisdiction act
#> 396 adult guardianship and protective proceedings jurisdiction act
#> 397 adult guardianship and protective proceedings jurisdiction act
#> 398 adult guardianship and protective proceedings jurisdiction act
#> 399 adult guardianship and protective proceedings jurisdiction act
#> 400 adult guardianship and protective proceedings jurisdiction act
#> 401 adult guardianship and protective proceedings jurisdiction act
#> 402 adult guardianship and protective proceedings jurisdiction act
#> 403 advertban
#> 404 advertban
#> 405 advertban
#> 406 advertban
#> 407 advertban
#> 408 advertban
#> 409 advertban
#> 410 advertban
#> 411 advertban
#> 412 advertban
#> 413 advertban
#> 414 advertban
#> 415 advertban
#> 416 advertban
#> 417 advertban
#> 418 advertban
#> 419 afdc_u
#> 420 afdc_u
#> 421 afdc_u
#> 422 afdc_u
#> 423 afdc_u
#> 424 afdc_u
#> 425 afdc_u
#> 426 afdc_u
#> 427 afdc_u
#> 428 afdc_u
#> 429 afdc_u
#> 430 afdc_u
#> 431 afdc_u
#> 432 afdc_u
#> 433 afdc_u
#> 434 afdc_u
#> 435 afdc_u
#> 436 afdc_u
#> 437 afdc_u
#> 438 afdc_u
#> 439 afdc_u
#> 440 afdc_u
#> 441 afdc_u
#> 442 afdc_u
#> 443 afdc_u
#> 444 afdc_u
#> 445 afdc_u
#> 446 afdc_u
#> 447 afdc_u
#> 448 afdc_u
#> 449 afdc_u
#> 450 aging
#> 451 aging
#> 452 aging
#> 453 aging
#> 454 aging
#> 455 aging
#> 456 aging
#> 457 aging
#> 458 aging
#> 459 aging
#> 460 aging
#> 461 aging
#> 462 aging
#> 463 aging
#> 464 aging
#> 465 aging
#> 466 aging
#> 467 aging
#> 468 aging
#> 469 agreement on detainers
#> 470 agreement on detainers
#> 471 agreement on detainers
#> 472 agreement on detainers
#> 473 agreement on detainers
#> 474 agreement on detainers
#> 475 agreement on detainers
#> 476 agreement on detainers
#> 477 agreement on detainers
#> 478 agreement on detainers
#> 479 agreement on detainers
#> 480 agreement on detainers
#> 481 agreement on detainers
#> 482 agreement on detainers
#> 483 agreement on detainers
#> 484 agreement on detainers
#> 485 agreement on detainers
#> 486 agreement on detainers
#> 487 agreement on detainers
#> 488 agreement on detainers
#> 489 agreement on detainers
#> 490 agreement on detainers
#> 491 agreement on detainers
#> 492 agreement on detainers
#> 493 agreement on detainers
#> 494 agreement on detainers
#> 495 agreement on detainers
#> 496 agreement on detainers
#> 497 agreement on detainers
#> 498 agreement on detainers
#> 499 agreement on detainers
#> 500 agreement on detainers
#> 501 agreement on detainers
#> 502 agreement on detainers
#> 503 agreement on detainers
#> 504 agreement on detainers
#> 505 agreement on detainers
#> 506 agreement on detainers
#> 507 agreement on detainers
#> 508 agreement on detainers
#> 509 agreement on detainers
#> 510 agreement on detainers
#> 511 agreement on detainers
#> 512 agreement on detainers
#> 513 agreement on detainers
#> 514 agreement on detainers
#> 515 agreement on detainers
#> 516 agreement on detainers
#> 517 agreement on qualifications of educational personnel
#> 518 agreement on qualifications of educational personnel
#> 519 agreement on qualifications of educational personnel
#> 520 agreement on qualifications of educational personnel
#> 521 agreement on qualifications of educational personnel
#> 522 agreement on qualifications of educational personnel
#> 523 agreement on qualifications of educational personnel
#> 524 agreement on qualifications of educational personnel
#> 525 agreement on qualifications of educational personnel
#> 526 agreement on qualifications of educational personnel
#> 527 agreement on qualifications of educational personnel
#> 528 agreement on qualifications of educational personnel
#> 529 agreement on qualifications of educational personnel
#> 530 agreement on qualifications of educational personnel
#> 531 agreement on qualifications of educational personnel
#> 532 agreement on qualifications of educational personnel
#> 533 agreement on qualifications of educational personnel
#> 534 agreement on qualifications of educational personnel
#> 535 agreement on qualifications of educational personnel
#> 536 agreement on qualifications of educational personnel
#> 537 agreement on qualifications of educational personnel
#> 538 agreement on qualifications of educational personnel
#> 539 agreement on qualifications of educational personnel
#> 540 agreement on qualifications of educational personnel
#> 541 agreement on qualifications of educational personnel
#> 542 agreement on qualifications of educational personnel
#> 543 agreement on qualifications of educational personnel
#> 544 agreement on qualifications of educational personnel
#> 545 agreement on qualifications of educational personnel
#> 546 agreement on qualifications of educational personnel
#> 547 agreement on qualifications of educational personnel
#> 548 agreement on qualifications of educational personnel
#> 549 agreement on qualifications of educational personnel
#> 550 agreement on qualifications of educational personnel
#> 551 agreement on qualifications of educational personnel
#> 552 aidperm
#> 553 aidperm
#> 554 aidperm
#> 555 aidperm
#> 556 aidperm
#> 557 aidperm
#> 558 aidperm
#> 559 aidperm
#> 560 aidperm
#> 561 aidperm
#> 562 aidperm
#> 563 aidperm
#> 564 aidperm
#> 565 aidperm
#> 566 aidperm
#> 567 aidperm
#> 568 aidperm
#> 569 aidperm
#> 570 aidperm
#> 571 aidperm
#> 572 aidperm
#> 573 aidperm
#> 574 aidperm
#> 575 aidperm
#> 576 aidperm
#> 577 aidperm
#> 578 aidperm
#> 579 aidperm
#> 580 aidperm
#> 581 aidperm
#> 582 aidperm
#> 583 aidperm
#> 584 aidperm
#> 585 aidperm
#> 586 aidperm
#> 587 aidperm
#> 588 aidperm
#> 589 aidperm
#> 590 aidperm
#> 591 aidperm
#> 592 aidperm
#> 593 aidperm
#> 594 aidperm
#> 595 aidperm
#> 596 airpol
#> 597 airpol
#> 598 airpol
#> 599 airpol
#> 600 airpol
#> 601 airpol
#> 602 airpol
#> 603 airpol
#> 604 airpol
#> 605 airpol
#> 606 airpol
#> 607 airpol
#> 608 airpol
#> 609 airpol
#> 610 airpol
#> 611 airpol
#> 612 airpol
#> 613 airpol
#> 614 airpol
#> 615 airpol
#> 616 airpol
#> 617 airpol
#> 618 airpol
#> 619 airpol
#> 620 airpol
#> 621 airpol
#> 622 airpol
#> 623 airpol
#> 624 airpol
#> 625 airpol
#> 626 airpol
#> 627 airpol
#> 628 airpol
#> 629 airpol
#> 630 airpol
#> 631 airpol
#> 632 airpol
#> 633 airpol
#> 634 airpol
#> 635 airpol
#> 636 airpol
#> 637 airpol
#> 638 airpol
#> 639 airpol
#> 640 airpol
#> 641 airpol
#> 642 airpol
#> 643 airpol
#> 644 alcbevcon
#> 645 alcbevcon
#> 646 alcbevcon
#> 647 alcbevcon
#> 648 alcbevcon
#> 649 alcbevcon
#> 650 alcbevcon
#> 651 alcbevcon
#> 652 alcbevcon
#> 653 alcbevcon
#> 654 alcbevcon
#> 655 alcbevcon
#> 656 alcbevcon
#> 657 alcbevcon
#> 658 alcbevcon
#> 659 alcbevcon
#> 660 alcbevcon
#> 661 alcbevcon
#> 662 alcbevcon
#> 663 alcbevcon
#> 664 alcbevcon
#> 665 alcbevcon
#> 666 alcbevcon
#> 667 alcbevcon
#> 668 alcbevcon
#> 669 alcbevcon
#> 670 alcbevcon
#> 671 alcbevcon
#> 672 alcbevcon
#> 673 alcbevcon
#> 674 alcbevcon
#> 675 alcbevcon
#> 676 alcbevcon
#> 677 alcbevcon
#> 678 alcbevcon
#> 679 alcbevcon
#> 680 alcbevcon
#> 681 alcbevcon
#> 682 alcbevcon
#> 683 alcoholism and intoxication treatment
#> 684 alcoholism and intoxication treatment
#> 685 alcoholism and intoxication treatment
#> 686 alcoholism and intoxication treatment
#> 687 alcoholism and intoxication treatment
#> 688 alcoholism and intoxication treatment
#> 689 alcoholism and intoxication treatment
#> 690 alcoholism and intoxication treatment
#> 691 alcoholism and intoxication treatment
#> 692 alcoholism and intoxication treatment
#> 693 alctreat
#> 694 alctreat
#> 695 alctreat
#> 696 alctreat
#> 697 alctreat
#> 698 alctreat
#> 699 alctreat
#> 700 alctreat
#> 701 alctreat
#> 702 alctreat
#> 703 alctreat
#> 704 alctreat
#> 705 alctreat
#> 706 alctreat
#> 707 alctreat
#> 708 alctreat
#> 709 alctreat
#> 710 alctreat
#> 711 alctreat
#> 712 alctreat
#> 713 alctreat
#> 714 alctreat
#> 715 alctreat
#> 716 alctreat
#> 717 alctreat
#> 718 alctreat
#> 719 alctreat
#> 720 alctreat
#> 721 alctreat
#> 722 alctreat
#> 723 alctreat
#> 724 alctreat
#> 725 alctreat
#> 726 alctreat
#> 727 alctreat
#> 728 alctreat
#> 729 alctreat
#> 730 alctreat
#> 731 alctreat
#> 732 allpass_seatbelt
#> 733 allpass_seatbelt
#> 734 allpass_seatbelt
#> 735 allpass_seatbelt
#> 736 allpass_seatbelt
#> 737 allpass_seatbelt
#> 738 allpass_seatbelt
#> 739 allpass_seatbelt
#> 740 allpass_seatbelt
#> 741 allpass_seatbelt
#> 742 allpass_seatbelt
#> 743 allpass_seatbelt
#> 744 allpass_seatbelt
#> 745 allpass_seatbelt
#> 746 allpass_seatbelt
#> 747 allpass_seatbelt
#> 748 allpass_seatbelt
#> 749 allpass_seatbelt
#> 750 allpass_seatbelt
#> 751 allpass_seatbelt
#> 752 allpass_seatbelt
#> 753 allpass_seatbelt
#> 754 allpass_seatbelt
#> 755 allpass_seatbelt
#> 756 amber
#> 757 amber
#> 758 amber
#> 759 amber
#> 760 amber
#> 761 amber
#> 762 amber
#> 763 amber
#> 764 amber
#> 765 amber
#> 766 amber
#> 767 amber
#> 768 amber
#> 769 amber
#> 770 amber
#> 771 amber
#> 772 amber
#> 773 amber
#> 774 amber
#> 775 amber
#> 776 amber
#> 777 amber
#> 778 amber
#> 779 amber
#> 780 amber
#> 781 amber
#> 782 amber
#> 783 amber
#> 784 amber
#> 785 amber
#> 786 amber
#> 787 amber
#> 788 amber
#> 789 amber
#> 790 amber
#> 791 amber
#> 792 amber
#> 793 amber
#> 794 amber
#> 795 amber
#> 796 amber
#> 797 amber
#> 798 amber
#> 799 amber
#> 800 amber
#> 801 amber
#> 802 amber
#> 803 amber
#> 804 anatomical gift (1968)
#> 805 anatomical gift (1968)
#> 806 anatomical gift (1968)
#> 807 anatomical gift (1968)
#> 808 anatomical gift (1968)
#> 809 anatomical gift (1968)
#> 810 anatomical gift (1968)
#> 811 anatomical gift (1968)
#> 812 anatomical gift (1968)
#> 813 anatomical gift (1968)
#> 814 anatomical gift (1968)
#> 815 anatomical gift (1968)
#> 816 anatomical gift (1968)
#> 817 anatomical gift (1968)
#> 818 anatomical gift (1968)
#> 819 anatomical gift (1968)
#> 820 anatomical gift (1968)
#> 821 anatomical gift (1968)
#> 822 anatomical gift (1968)
#> 823 anatomical gift (1968)
#> 824 anatomical gift (1968)
#> 825 anatomical gift (1968)
#> 826 anatomical gift (1968)
#> 827 anatomical gift (1968)
#> 828 anatomical gift (1968)
#> 829 anatomical gift (1968)
#> 830 anatomical gift (1968)
#> 831 anatomical gift (1968)
#> 832 anatomical gift (1968)
#> 833 anatomical gift (1968)
#> 834 anatomical gift (1968)
#> 835 anatomical gift (1968)
#> 836 anatomical gift (1968)
#> 837 anatomical gift (1968)
#> 838 anatomical gift (1968)
#> 839 anatomical gift (1968)
#> 840 anatomical gift (1968)
#> 841 anatomical gift (1968)
#> 842 anatomical gift act (1987)
#> 843 anatomical gift act (1987)
#> 844 anatomical gift act (1987)
#> 845 anatomical gift act (1987)
#> 846 anatomical gift act (1987)
#> 847 anatomical gift act (1987)
#> 848 anatomical gift act (1987)
#> 849 anatomical gift act (1987)
#> 850 anatomical gift act (1987)
#> 851 anatomical gift act (1987)
#> 852 anatomical gift act (1987)
#> 853 anatomical gift act (1987)
#> 854 anatomical gift act (1987)
#> 855 anatomical gift act (1987)
#> 856 anatomical gift act (1987)
#> 857 anatomical gift act (1987)
#> 858 anatomical gift act (1987)
#> 859 anatomical gift act (1987)
#> 860 anatomical gift act (1987)
#> 861 anatomical gift act (1987)
#> 862 anatomical gift act (2006)
#> 863 anatomical gift act (2006)
#> 864 anatomical gift act (2006)
#> 865 anatomical gift act (2006)
#> 866 anatomical gift act (2006)
#> 867 anatomical gift act (2006)
#> 868 anatomical gift act (2006)
#> 869 anatomical gift act (2006)
#> 870 anatomical gift act (2006)
#> 871 anatomical gift act (2006)
#> 872 anatomical gift act (2006)
#> 873 anatomical gift act (2006)
#> 874 anatomical gift act (2006)
#> 875 anatomical gift act (2006)
#> 876 anatomical gift act (2006)
#> 877 anatomical gift act (2006)
#> 878 anatomical gift act (2006)
#> 879 anatomical gift act (2006)
#> 880 anatomical gift act (2006)
#> 881 anatomical gift act (2006)
#> 882 anatomical gift act (2006)
#> 883 anatomical gift act (2006)
#> 884 anatomical gift act (2006)
#> 885 anatomical gift act (2006)
#> 886 anatomical gift act (2006)
#> 887 anatomical gift act (2006)
#> 888 anatomical gift act (2006)
#> 889 anatomical gift act (2006)
#> 890 anatomical gift act (2006)
#> 891 anatomical gift act (2006)
#> 892 anatomical gift act (2006)
#> 893 anatomical gift act (2006)
#> 894 anatomical gift act (2006)
#> 895 anatomical gift act (2006)
#> 896 anatomical gift act (2006)
#> 897 anatomical gift act (2006)
#> 898 anatomical gift act (2006)
#> 899 anatomical gift act (2006)
#> 900 anatomical gift act (2006)
#> 901 anatomical gift act (2006)
#> 902 anatomical gift act (2006)
#> 903 anatomical gift act (2006)
#> 904 anatomical gift act (2006)
#> 905 anatomical gift act (2006)
#> 906 anatomical gift act (2006)
#> 907 anim_cruel_felonfirs
#> 908 anim_cruel_felonfirs
#> 909 anim_cruel_felonfirs
#> 910 anim_cruel_felonfirs
#> 911 anim_cruel_felonfirs
#> 912 anim_cruel_felonfirs
#> 913 anim_cruel_felonfirs
#> 914 anim_cruel_felonfirs
#> 915 anim_cruel_felonfirs
#> 916 anim_cruel_felonfirs
#> 917 anim_cruel_felonfirs
#> 918 anim_cruel_felonfirs
#> 919 anim_cruel_felonfirs
#> 920 anim_cruel_felonfirs
#> 921 anim_cruel_felonfirs
#> 922 anim_cruel_felonfirs
#> 923 anim_cruel_felonfirs
#> 924 anim_cruel_felonfirs
#> 925 anim_cruel_felonfirs
#> 926 anim_cruel_felonfirs
#> 927 anim_cruel_felonfirs
#> 928 anim_cruel_felonfirs
#> 929 anim_cruel_felonfirs
#> 930 anim_cruel_felonfirs
#> 931 anim_cruel_felonfirs
#> 932 anim_cruel_felonfirs
#> 933 anim_cruel_felonfirs
#> 934 anim_cruel_felonfirs
#> 935 anim_cruel_felonfirs
#> 936 anim_cruel_felonfirs
#> 937 anim_cruel_felonfirs
#> 938 anim_cruel_felonfirs
#> 939 anim_cruel_felonfirs
#> 940 anim_cruel_felonfirs
#> 941 anim_cruel_felonfirs
#> 942 anim_cruel_felonfirs
#> 943 anim_cruel_felonfirs
#> 944 anim_cruel_felonfirs
#> 945 anim_cruel_felonfirs
#> 946 anim_cruel_felonfirs
#> 947 anim_cruel_felonfirs
#> 948 anim_cruel_felonfirs
#> 949 animcruel
#> 950 animcruel
#> 951 animcruel
#> 952 animcruel
#> 953 animcruel
#> 954 animcruel
#> 955 animcruel
#> 956 animcruel
#> 957 animcruel
#> 958 animcruel
#> 959 animcruel
#> 960 animcruel
#> 961 animcruel
#> 962 animcruel
#> 963 animcruel
#> 964 animcruel
#> 965 animcruel
#> 966 animcruel
#> 967 animcruel
#> 968 animcruel
#> 969 animcruel
#> 970 animcruel
#> 971 animcruel
#> 972 animcruel
#> 973 animcruel
#> 974 animcruel
#> 975 animcruel
#> 976 animcruel
#> 977 animcruel
#> 978 animcruel
#> 979 animcruel
#> 980 animcruel
#> 981 animcruel
#> 982 animcruel
#> 983 animcruel
#> 984 animcruel
#> 985 animcruel
#> 986 animcruel
#> 987 animcruel
#> 988 animcruel
#> 989 animcruel
#> 990 anti-discrimination
#> 991 anti-discrimination
#> 992 antiage
#> 993 antiage
#> 994 antiage
#> 995 antiage
#> 996 antiage
#> 997 antiage
#> 998 antiage
#> 999 antiage
#> 1000 antiage
#> 1001 antiage
#> 1002 antiage
#> 1003 antiage
#> 1004 antiage
#> 1005 antiage
#> 1006 antiage
#> 1007 antiage
#> 1008 antiage
#> 1009 antiage
#> 1010 antiage
#> 1011 antiage
#> 1012 antiage
#> 1013 antiage
#> 1014 antibully
#> 1015 antibully
#> 1016 antibully
#> 1017 antibully
#> 1018 antibully
#> 1019 antibully
#> 1020 antibully
#> 1021 antibully
#> 1022 antibully
#> 1023 antibully
#> 1024 antibully
#> 1025 antibully
#> 1026 antibully
#> 1027 antibully
#> 1028 antibully
#> 1029 antibully
#> 1030 antibully
#> 1031 antibully
#> 1032 antibully
#> 1033 antibully
#> 1034 antibully
#> 1035 antibully
#> 1036 antibully
#> 1037 antibully
#> 1038 antibully
#> 1039 antibully
#> 1040 antibully
#> 1041 antibully
#> 1042 antibully
#> 1043 antibully
#> 1044 antibully
#> 1045 antibully
#> 1046 antibully
#> 1047 antibully
#> 1048 antibully
#> 1049 antibully
#> 1050 antibully
#> 1051 antibully
#> 1052 antibully
#> 1053 antibully
#> 1054 antibully
#> 1055 antibully
#> 1056 antibully
#> 1057 antibully
#> 1058 antibully
#> 1059 antibully
#> 1060 antibully
#> 1061 antibully
#> 1062 antibully
#> 1063 antibully
#> 1064 antiinj
#> 1065 antiinj
#> 1066 antiinj
#> 1067 antiinj
#> 1068 antiinj
#> 1069 antiinj
#> 1070 antiinj
#> 1071 antiinj
#> 1072 antiinj
#> 1073 antiinj
#> 1074 antiinj
#> 1075 antiinj
#> 1076 antiinj
#> 1077 antiinj
#> 1078 antiinj
#> 1079 antiinj
#> 1080 antiinj
#> 1081 antiinj
#> 1082 antiinj
#> 1083 antiinj
#> 1084 antiinj
#> 1085 antiinj
#> 1086 antiinj
#> 1087 antiinj
#> 1088 antimis
#> 1089 antimis
#> 1090 antimis
#> 1091 antimis
#> 1092 antimis
#> 1093 antimis
#> 1094 antimis
#> 1095 antimis
#> 1096 antimis
#> 1097 antimis
#> 1098 antimis
#> 1099 antimis
#> 1100 antimis
#> 1101 antimis
#> 1102 antimis
#> 1103 antimis
#> 1104 antimis
#> 1105 antimis
#> 1106 antimis
#> 1107 antimis
#> 1108 antimis
#> 1109 antimis
#> 1110 antimis
#> 1111 antimis
#> 1112 antimis
#> 1113 antimis
#> 1114 antimis
#> 1115 antimis
#> 1116 antimis
#> 1117 antimis
#> 1118 antimis
#> 1119 antimis
#> 1120 antimis
#> 1121 antimis
#> 1122 antimis
#> 1123 antimis
#> 1124 antimis
#> 1125 antimis
#> 1126 antishack
#> 1127 antishack
#> 1128 antishack
#> 1129 antistalk
#> 1130 antistalk
#> 1131 antistalk
#> 1132 antistalk
#> 1133 antistalk
#> 1134 antistalk
#> 1135 antistalk
#> 1136 antistalk
#> 1137 antistalk
#> 1138 antistalk
#> 1139 antistalk
#> 1140 antistalk
#> 1141 antistalk
#> 1142 antistalk
#> 1143 antistalk
#> 1144 antistalk
#> 1145 antistalk
#> 1146 antistalk
#> 1147 antistalk
#> 1148 antistalk
#> 1149 antistalk
#> 1150 antistalk
#> 1151 antistalk
#> 1152 antistalk
#> 1153 antistalk
#> 1154 antistalk
#> 1155 antistalk
#> 1156 antistalk
#> 1157 antistalk
#> 1158 antistalk
#> 1159 antistalk
#> 1160 antistalk
#> 1161 antistalk
#> 1162 antistalk
#> 1163 antistalk
#> 1164 antistalk
#> 1165 antistalk
#> 1166 antistalk
#> 1167 antistalk
#> 1168 antistalk
#> 1169 antistalk
#> 1170 antistalk
#> 1171 antistalk
#> 1172 antistalk
#> 1173 antistalk
#> 1174 antistalk
#> 1175 antistalk
#> 1176 antistalk
#> 1177 antistalk
#> 1178 antistalk
#> 1179 anyactnot
#> 1180 anyactnot
#> 1181 anyactnot
#> 1182 anyactnot
#> 1183 anyactnot
#> 1184 anyactnot
#> 1185 anyactnot
#> 1186 anyactnot
#> 1187 anyactnot
#> 1188 anyactnot
#> 1189 anyactnot
#> 1190 anyactnot
#> 1191 anyactnot
#> 1192 anyactnot
#> 1193 anyid2
#> 1194 anyid2
#> 1195 anyid2
#> 1196 anyid2
#> 1197 anyid2
#> 1198 anyid2
#> 1199 anyid2
#> 1200 anyid2
#> 1201 anyid2
#> 1202 anyid2
#> 1203 anyid2
#> 1204 anyid2
#> 1205 anyid2
#> 1206 anyid2
#> 1207 anyid2
#> 1208 anyid2
#> 1209 anyid2
#> 1210 anyid2
#> 1211 anyid2
#> 1212 anyid2
#> 1213 anyid2
#> 1214 anyid2
#> 1215 anyid2
#> 1216 anyid2
#> 1217 anyid2
#> 1218 anyid2
#> 1219 anyid2
#> 1220 anyid2
#> 1221 anyid2
#> 1222 anyid2
#> 1223 anyid2
#> 1224 anyid2
#> 1225 anyid2
#> 1226 anyid2
#> 1227 anyphotoid2
#> 1228 anyphotoid2
#> 1229 anyphotoid2
#> 1230 anyphotoid2
#> 1231 anyphotoid2
#> 1232 anyphotoid2
#> 1233 anyphotoid2
#> 1234 anyphotoid2
#> 1235 anyphotoid2
#> 1236 anyphotoid2
#> 1237 anyphotoid2
#> 1238 anyphotoid2
#> 1239 anyphotoid2
#> 1240 anyphotoid2
#> 1241 anyphotoid2
#> 1242 anyphotoid2
#> 1243 anyphotoid2
#> 1244 anyphotoid2
#> 1245 anyphotoid2
#> 1246 anyphotoid2
#> 1247 anyphotoid2
#> 1248 apology
#> 1249 apology
#> 1250 apology
#> 1251 apology
#> 1252 apology
#> 1253 apology
#> 1254 apology
#> 1255 apology
#> 1256 apology
#> 1257 apology
#> 1258 apology
#> 1259 apology
#> 1260 apology
#> 1261 apology
#> 1262 apology
#> 1263 apology
#> 1264 apology
#> 1265 apology
#> 1266 apology
#> 1267 apology
#> 1268 apology
#> 1269 apology
#> 1270 apology
#> 1271 apology
#> 1272 apology
#> 1273 apology
#> 1274 apology
#> 1275 apology
#> 1276 apology
#> 1277 apology
#> 1278 apology
#> 1279 apology
#> 1280 apology
#> 1281 apology
#> 1282 apology
#> 1283 apology
#> 1284 apology
#> 1285 appointment of commissioners
#> 1286 appointment of commissioners
#> 1287 appointment of commissioners
#> 1288 appointment of commissioners
#> 1289 appointment of commissioners
#> 1290 appointment of commissioners
#> 1291 appointment of commissioners
#> 1292 appointment of commissioners
#> 1293 appointment of commissioners
#> 1294 appointment of commissioners
#> 1295 appointment of commissioners
#> 1296 arbitration act (1956)
#> 1297 arbitration act (1956)
#> 1298 arbitration act (1956)
#> 1299 arbitration act (1956)
#> 1300 arbitration act (1956)
#> 1301 arbitration act (1956)
#> 1302 arbitration act (1956)
#> 1303 arbitration act (1956)
#> 1304 arbitration act (1956)
#> 1305 arbitration act (1956)
#> 1306 arbitration act (1956)
#> 1307 arbitration act (1956)
#> 1308 arbitration act (1956)
#> 1309 arbitration act (1956)
#> 1310 arbitration act (1956)
#> 1311 arbitration act (1956)
#> 1312 arbitration act (1956)
#> 1313 arbitration act (1956)
#> 1314 arbitration act (1956)
#> 1315 arbitration act (1956)
#> 1316 arbitration act (1956)
#> 1317 arbitration act (2000)
#> 1318 arbitration act (2000)
#> 1319 arbitration act (2000)
#> 1320 arbitration act (2000)
#> 1321 arbitration act (2000)
#> 1322 arbitration act (2000)
#> 1323 arbitration act (2000)
#> 1324 arbitration act (2000)
#> 1325 arbitration act (2000)
#> 1326 arbitration act (2000)
#> 1327 arbitration act (2000)
#> 1328 arbitration act (2000)
#> 1329 arbitration act (2000)
#> 1330 arbitration act (2000)
#> 1331 arbitration act (2000)
#> 1332 arbitration act (2000)
#> 1333 arbitration act (2000)
#> 1334 archlic
#> 1335 archlic
#> 1336 archlic
#> 1337 archlic
#> 1338 archlic
#> 1339 archlic
#> 1340 archlic
#> 1341 archlic
#> 1342 archlic
#> 1343 archlic
#> 1344 archlic
#> 1345 archlic
#> 1346 archlic
#> 1347 archlic
#> 1348 archlic
#> 1349 archlic
#> 1350 archlic
#> 1351 archlic
#> 1352 archlic
#> 1353 archlic
#> 1354 archlic
#> 1355 archlic
#> 1356 archlic
#> 1357 archlic
#> 1358 archlic
#> 1359 archlic
#> 1360 archlic
#> 1361 archlic
#> 1362 archlic
#> 1363 archlic
#> 1364 archlic
#> 1365 archlic
#> 1366 archlic
#> 1367 archlic
#> 1368 archlic
#> 1369 archlic
#> 1370 archlic
#> 1371 archlic
#> 1372 archlic
#> 1373 archlic
#> 1374 archlic
#> 1375 archlic
#> 1376 archlic
#> 1377 archlic
#> 1378 archlic
#> 1379 archlic
#> 1380 archlic
#> 1381 article 1 of the uniform business organizations code (uboc hub) (2011) (last amended 2013)
#> 1382 article 1 of the uniform business organizations code (uboc hub) (2011) (last amended 2013)
#> 1383 arts
#> 1384 arts
#> 1385 arts
#> 1386 arts
#> 1387 arts
#> 1388 arts
#> 1389 arts
#> 1390 arts
#> 1391 arts
#> 1392 arts
#> 1393 arts
#> 1394 arts
#> 1395 arts
#> 1396 arts
#> 1397 arts
#> 1398 arts
#> 1399 arts
#> 1400 arts
#> 1401 arts
#> 1402 arts
#> 1403 arts
#> 1404 arts
#> 1405 arts
#> 1406 arts
#> 1407 arts
#> 1408 arts
#> 1409 arts
#> 1410 arts
#> 1411 assignment of rents act
#> 1412 assignment of rents act
#> 1413 assignment of rents act
#> 1414 assignment of rents act
#> 1415 assignment of rents act
#> 1416 athlete agents act
#> 1417 athlete agents act
#> 1418 athlete agents act
#> 1419 athlete agents act
#> 1420 athlete agents act
#> 1421 athlete agents act
#> 1422 athlete agents act
#> 1423 athlete agents act
#> 1424 athlete agents act
#> 1425 athlete agents act
#> 1426 athlete agents act
#> 1427 athlete agents act
#> 1428 athlete agents act
#> 1429 athlete agents act
#> 1430 athlete agents act
#> 1431 athlete agents act
#> 1432 athlete agents act
#> 1433 athlete agents act
#> 1434 athlete agents act
#> 1435 athlete agents act
#> 1436 athlete agents act
#> 1437 athlete agents act
#> 1438 athlete agents act
#> 1439 athlete agents act
#> 1440 athlete agents act
#> 1441 athlete agents act
#> 1442 athlete agents act
#> 1443 athlete agents act
#> 1444 athlete agents act
#> 1445 athlete agents act
#> 1446 athlete agents act
#> 1447 athlete agents act
#> 1448 athlete agents act
#> 1449 athlete agents act
#> 1450 athlete agents act
#> 1451 athlete agents act
#> 1452 athlete agents act
#> 1453 athlete agents act
#> 1454 athlete agents act
#> 1455 athlete agents act (2015)
#> 1456 athlete agents act (2015)
#> 1457 athlete agents act (2015)
#> 1458 athlete agents act (2015)
#> 1459 athlete agents act (2015)
#> 1460 attendance of out of state witnesses
#> 1461 attendance of out of state witnesses
#> 1462 attendance of out of state witnesses
#> 1463 attendance of out of state witnesses
#> 1464 attendance of out of state witnesses
#> 1465 attendance of out of state witnesses
#> 1466 attendance of out of state witnesses
#> 1467 attendance of out of state witnesses
#> 1468 attendance of out of state witnesses
#> 1469 attendance of out of state witnesses
#> 1470 attendance of out of state witnesses
#> 1471 attendance of out of state witnesses
#> 1472 attendance of out of state witnesses
#> 1473 attendance of out of state witnesses
#> 1474 attendance of out of state witnesses
#> 1475 attendance of out of state witnesses
#> 1476 attendance of out of state witnesses
#> 1477 attendance of out of state witnesses
#> 1478 attendance of out of state witnesses
#> 1479 attendance of out of state witnesses
#> 1480 attendance of out of state witnesses
#> 1481 attendance of out of state witnesses
#> 1482 attendance of out of state witnesses
#> 1483 attendance of out of state witnesses
#> 1484 attendance of out of state witnesses
#> 1485 attendance of out of state witnesses
#> 1486 attendance of out of state witnesses
#> 1487 attendance of out of state witnesses
#> 1488 attendance of out of state witnesses
#> 1489 attendance of out of state witnesses
#> 1490 attendance of out of state witnesses
#> 1491 attendance of out of state witnesses
#> 1492 attendance of out of state witnesses
#> 1493 attendance of out of state witnesses
#> 1494 attendance of out of state witnesses
#> 1495 attendance of out of state witnesses
#> 1496 attendance of out of state witnesses
#> 1497 attendance of out of state witnesses
#> 1498 attendance of out of state witnesses
#> 1499 attendance of out of state witnesses
#> 1500 attendance of out of state witnesses
#> 1501 attendance of out of state witnesses
#> 1502 attendance of out of state witnesses
#> 1503 attendance of out of state witnesses
#> 1504 attendance of out of state witnesses
#> 1505 attendance of out of state witnesses
#> 1506 attendance of out of state witnesses
#> 1507 attendance of out of state witnesses
#> 1508 attendance of out of state witnesses
#> 1509 audio-visual deposition
#> 1510 audio-visual deposition
#> 1511 audio-visual deposition
#> 1512 ausbalsys
#> 1513 ausbalsys
#> 1514 ausbalsys
#> 1515 ausbalsys
#> 1516 ausbalsys
#> 1517 ausbalsys
#> 1518 ausbalsys
#> 1519 ausbalsys
#> 1520 ausbalsys
#> 1521 ausbalsys
#> 1522 ausbalsys
#> 1523 ausbalsys
#> 1524 ausbalsys
#> 1525 ausbalsys
#> 1526 ausbalsys
#> 1527 ausbalsys
#> 1528 ausbalsys
#> 1529 ausbalsys
#> 1530 ausbalsys
#> 1531 ausbalsys
#> 1532 ausbalsys
#> 1533 ausbalsys
#> 1534 ausbalsys
#> 1535 ausbalsys
#> 1536 ausbalsys
#> 1537 ausbalsys
#> 1538 ausbalsys
#> 1539 ausbalsys
#> 1540 ausbalsys
#> 1541 ausbalsys
#> 1542 ausbalsys
#> 1543 ausbalsys
#> 1544 ausbalsys
#> 1545 ausbalsys
#> 1546 ausbalsys
#> 1547 ausbalsys
#> 1548 ausbalsys
#> 1549 ausbalsys
#> 1550 ausbalsys
#> 1551 ausbalsys
#> 1552 ausbalsys
#> 1553 ausbalsys
#> 1554 ausbalsys
#> 1555 ausbalsys
#> 1556 ausbalsys
#> 1557 ausbalsys
#> 1558 ausbalsys
#> 1559 ausbalsys
#> 1560 autism
#> 1561 autism
#> 1562 autism
#> 1563 autism
#> 1564 autism
#> 1565 autism
#> 1566 autism
#> 1567 autism
#> 1568 autism
#> 1569 autism
#> 1570 autism
#> 1571 autism
#> 1572 autism
#> 1573 autism
#> 1574 autism
#> 1575 autism
#> 1576 autism
#> 1577 autism
#> 1578 autism
#> 1579 autism
#> 1580 autism
#> 1581 autism
#> 1582 autism
#> 1583 autism
#> 1584 autism
#> 1585 autism
#> 1586 autism
#> 1587 autism
#> 1588 autism
#> 1589 autism
#> 1590 autism
#> 1591 autism
#> 1592 autoreg
#> 1593 autoreg
#> 1594 autoreg
#> 1595 autoreg
#> 1596 autoreg
#> 1597 autoreg
#> 1598 autoreg
#> 1599 autoreg
#> 1600 autoreg
#> 1601 autoreg
#> 1602 autoreg
#> 1603 autoreg
#> 1604 autoreg
#> 1605 autoreg
#> 1606 autoreg
#> 1607 autoreg
#> 1608 autoreg
#> 1609 autoreg
#> 1610 autoreg
#> 1611 autoreg
#> 1612 autoreg
#> 1613 autoreg
#> 1614 autoreg
#> 1615 autoreg
#> 1616 autoreg
#> 1617 autoreg
#> 1618 autoreg
#> 1619 autoreg
#> 1620 autoreg
#> 1621 autoreg
#> 1622 autoreg
#> 1623 autoreg
#> 1624 autoreg
#> 1625 autoreg
#> 1626 autoreg
#> 1627 autoreg
#> 1628 autoreg
#> 1629 autoreg
#> 1630 autoreg
#> 1631 autoreg
#> 1632 autoreg
#> 1633 autoreg
#> 1634 autoreg
#> 1635 autoreg
#> 1636 autoreg
#> 1637 autoreg
#> 1638 autoreg
#> 1639 autoreg
#> 1640 autosaf
#> 1641 autosaf
#> 1642 autosaf
#> 1643 autosaf
#> 1644 autosaf
#> 1645 autosaf
#> 1646 autosaf
#> 1647 autosaf
#> 1648 autosaf
#> 1649 autosaf
#> 1650 autosaf
#> 1651 autosaf
#> 1652 autosaf
#> 1653 autosaf
#> 1654 autosaf
#> 1655 autosaf
#> 1656 autosaf
#> 1657 autosaf
#> 1658 autosaf
#> 1659 autosaf
#> 1660 autosaf
#> 1661 autosaf
#> 1662 autosaf
#> 1663 autosaf
#> 1664 autosaf
#> 1665 autosaf
#> 1666 autosaf
#> 1667 autosaf
#> 1668 autosaf
#> 1669 autosaf
#> 1670 autosaf
#> 1671 autosaf
#> 1672 autosaf
#> 1673 autosaf
#> 1674 autosaf
#> 1675 autosaf
#> 1676 autosaf
#> 1677 autosaf
#> 1678 autosaf
#> 1679 autosaf
#> 1680 autosaf
#> 1681 autosaf
#> 1682 autosaf
#> 1683 banfaninc
#> 1684 banfaninc
#> 1685 banfaninc
#> 1686 banfaninc
#> 1687 banfaninc
#> 1688 banfaninc
#> 1689 banfaninc
#> 1690 banfaninc
#> 1691 banfaninc
#> 1692 banfaninc
#> 1693 banfaninc
#> 1694 banfaninc
#> 1695 banfaninc
#> 1696 banfaninc
#> 1697 banfaninc
#> 1698 banfaninc
#> 1699 banfaninc
#> 1700 banfaninc
#> 1701 banfaninc
#> 1702 banfaninc
#> 1703 banfaninc
#> 1704 banfaninc
#> 1705 banfaninc
#> 1706 banfaninc
#> 1707 banfaninc
#> 1708 banfaninc
#> 1709 banfaninc
#> 1710 banfaninc
#> 1711 banfaninc
#> 1712 bangag
#> 1713 bangag
#> 1714 bangag
#> 1715 bangag
#> 1716 bangag
#> 1717 bangag
#> 1718 bangag
#> 1719 bangag
#> 1720 bangag
#> 1721 bangag
#> 1722 bangag
#> 1723 bangag
#> 1724 bangag
#> 1725 bangag
#> 1726 bangag
#> 1727 bangag
#> 1728 bangag
#> 1729 bangag
#> 1730 bangag
#> 1731 bangag
#> 1732 bangag
#> 1733 bangag
#> 1734 bangag
#> 1735 bangag
#> 1736 bangag
#> 1737 bangag
#> 1738 bangag
#> 1739 bangag
#> 1740 bangag
#> 1741 bangag
#> 1742 bangag
#> 1743 bangag
#> 1744 bangag
#> 1745 bangag
#> 1746 bangag
#> 1747 bangag
#> 1748 bangag
#> 1749 bangag
#> 1750 bangag
#> 1751 bangag
#> 1752 bangag
#> 1753 bangag
#> 1754 bangag
#> 1755 bangag
#> 1756 bangag
#> 1757 bangag
#> 1758 barbanstate
#> 1759 barbanstate
#> 1760 barbanstate
#> 1761 barbanstate
#> 1762 barbanstate
#> 1763 barbanstate
#> 1764 barbanstate
#> 1765 barbanstate
#> 1766 barbanstate
#> 1767 barbanstate
#> 1768 barbanstate
#> 1769 barbanstate
#> 1770 barbanstate
#> 1771 barbanstate
#> 1772 barbanstate
#> 1773 barbanstate
#> 1774 barbanstate
#> 1775 barbanstate
#> 1776 barbanstate
#> 1777 barbanstate
#> 1778 barbanstate
#> 1779 barbanstate
#> 1780 barbanstate
#> 1781 barbanstate
#> 1782 barbanstate
#> 1783 beaulic
#> 1784 beaulic
#> 1785 beaulic
#> 1786 beaulic
#> 1787 beaulic
#> 1788 beaulic
#> 1789 beaulic
#> 1790 beaulic
#> 1791 beaulic
#> 1792 beaulic
#> 1793 beaulic
#> 1794 beaulic
#> 1795 beaulic
#> 1796 beaulic
#> 1797 beaulic
#> 1798 beaulic
#> 1799 beaulic
#> 1800 beaulic
#> 1801 beaulic
#> 1802 beaulic
#> 1803 beaulic
#> 1804 beaulic
#> 1805 beaulic
#> 1806 beaulic
#> 1807 beaulic
#> 1808 beaulic
#> 1809 beaulic
#> 1810 beaulic
#> 1811 beaulic
#> 1812 beaulic
#> 1813 beaulic
#> 1814 beaulic
#> 1815 beaulic
#> 1816 beaulic
#> 1817 beaulic
#> 1818 beaulic
#> 1819 beaulic
#> 1820 beaulic
#> 1821 beaulic
#> 1822 beaulic
#> 1823 beaulic
#> 1824 beaulic
#> 1825 beaulic
#> 1826 beaulic
#> 1827 beaulic
#> 1828 bikehelmet
#> 1829 bikehelmet
#> 1830 bikehelmet
#> 1831 bikehelmet
#> 1832 bikehelmet
#> 1833 bikehelmet
#> 1834 bikehelmet
#> 1835 bikehelmet
#> 1836 bikehelmet
#> 1837 bikehelmet
#> 1838 bikehelmet
#> 1839 bikehelmet
#> 1840 bikehelmet
#> 1841 bikehelmet
#> 1842 bikehelmet
#> 1843 bikehelmet
#> 1844 bikehelmet
#> 1845 bikehelmet
#> 1846 bikehelmet
#> 1847 bikehelmet
#> 1848 bikehelmet
#> 1849 bldstds_yearadopted
#> 1850 bldstds_yearadopted
#> 1851 bldstds_yearadopted
#> 1852 bldstds_yearadopted
#> 1853 bldstds_yearadopted
#> 1854 bldstds_yearadopted
#> 1855 bldstds_yearadopted
#> 1856 bldstds_yearadopted
#> 1857 bldstds_yearadopted
#> 1858 bldstds_yearadopted
#> 1859 bldstds_yearadopted
#> 1860 bldstds_yearadopted
#> 1861 bldstds_yearadopted
#> 1862 bldstds_yearadopted
#> 1863 bldstds_yearadopted
#> 1864 bldstds_yearadopted
#> 1865 bldstds_yearadopted
#> 1866 bldstds_yearadopted
#> 1867 bldstds_yearadopted
#> 1868 bldstds_yearadopted
#> 1869 bldstds_yearadopted
#> 1870 bldstds_yearadopted
#> 1871 bldstds_yearadopted
#> 1872 bldstds_yearadopted
#> 1873 bldstds_yearadopted
#> 1874 bldstds_yearadopted
#> 1875 bldstds_yearadopted
#> 1876 bldstds_yearadopted
#> 1877 bldstds_yearadopted
#> 1878 bldstds_yearadopted
#> 1879 bldstds_yearadopted
#> 1880 bldstds_yearadopted
#> 1881 bldstds_yearadopted
#> 1882 bldstds_yearadopted
#> 1883 bldstds_yearadopted
#> 1884 bldstds_yearadopted
#> 1885 blind
#> 1886 blind
#> 1887 blind
#> 1888 blind
#> 1889 blind
#> 1890 blind
#> 1891 blind
#> 1892 blind
#> 1893 blind
#> 1894 blind
#> 1895 blind
#> 1896 blind
#> 1897 blind
#> 1898 blind
#> 1899 blind
#> 1900 blind
#> 1901 blind
#> 1902 blind
#> 1903 blind
#> 1904 blind
#> 1905 blind
#> 1906 blind
#> 1907 blind
#> 1908 blind
#> 1909 blind
#> 1910 blind
#> 1911 blind
#> 1912 blind
#> 1913 blind
#> 1914 blind
#> 1915 blind
#> 1916 blind
#> 1917 blind
#> 1918 blind
#> 1919 blind
#> 1920 blind
#> 1921 blind
#> 1922 blind
#> 1923 blind
#> 1924 blind
#> 1925 blind
#> 1926 blind
#> 1927 blind
#> 1928 blind
#> 1929 blind
#> 1930 blind
#> 1931 blind
#> 1932 blind
#> 1933 boehmke_snrpres
#> 1934 boehmke_snrpres
#> 1935 boehmke_snrpres
#> 1936 boehmke_snrpres
#> 1937 boehmke_snrpres
#> 1938 boehmke_snrpres
#> 1939 boehmke_snrpres
#> 1940 boehmke_snrpres
#> 1941 boehmke_snrpres
#> 1942 boehmke_snrpres
#> 1943 boehmke_snrpres
#> 1944 boehmke_snrpres
#> 1945 boehmke_snrpres
#> 1946 boehmke_snrpres
#> 1947 boehmke_snrpres
#> 1948 boehmke_snrpres
#> 1949 boehmke_snrpres
#> 1950 boehmke_snrpres
#> 1951 boehmke_snrpres
#> 1952 boehmke_snrpres
#> 1953 boehmke_snrpres
#> 1954 boehmke_snrpres
#> 1955 boh
#> 1956 boh
#> 1957 boh
#> 1958 boh
#> 1959 boh
#> 1960 boh
#> 1961 boh
#> 1962 boh
#> 1963 boh
#> 1964 boh
#> 1965 boh
#> 1966 boh
#> 1967 boh
#> 1968 boh
#> 1969 boh
#> 1970 boh
#> 1971 boh
#> 1972 boh
#> 1973 boh
#> 1974 boh
#> 1975 boh
#> 1976 boh
#> 1977 boh
#> 1978 boh
#> 1979 boh
#> 1980 boh
#> 1981 boh
#> 1982 boh
#> 1983 boh
#> 1984 boh
#> 1985 boh
#> 1986 boh
#> 1987 boh
#> 1988 boh
#> 1989 boh
#> 1990 boh
#> 1991 boh
#> 1992 boh
#> 1993 boh
#> 1994 boh
#> 1995 boh
#> 1996 boh
#> 1997 boh
#> 1998 boh
#> 1999 boh
#> 2000 boh
#> 2001 boh
#> 2002 boh
#> 2003 bootcamp
#> 2004 bootcamp
#> 2005 bootcamp
#> 2006 bootcamp
#> 2007 bootcamp
#> 2008 bootcamp
#> 2009 bootcamp
#> 2010 bootcamp
#> 2011 bootcamp
#> 2012 bootcamp
#> 2013 bootcamp
#> 2014 bootcamp
#> 2015 bootcamp
#> 2016 bootcamp
#> 2017 bootcamp
#> 2018 bootcamp
#> 2019 bootcamp
#> 2020 bootcamp
#> 2021 bootcamp
#> 2022 bootcamp
#> 2023 bootcamp
#> 2024 bootcamp
#> 2025 bootcamp
#> 2026 bottle
#> 2027 bottle
#> 2028 bottle
#> 2029 bottle
#> 2030 bottle
#> 2031 bottle
#> 2032 bottle
#> 2033 bottle
#> 2034 bottle
#> 2035 bottle
#> 2036 bottle
#> 2037 bradycamp
#> 2038 bradycamp
#> 2039 bradycamp
#> 2040 bradycamp
#> 2041 bradycamp
#> 2042 bradycamp
#> 2043 bradycamp
#> 2044 bradycamp
#> 2045 bradycamp
#> 2046 bradycamp
#> 2047 bradycamp
#> 2048 bradycamp
#> 2049 bradycamp
#> 2050 bradycamp
#> 2051 bradycamp
#> 2052 bradycamp
#> 2053 bradycamp
#> 2054 breastdensity
#> 2055 breastdensity
#> 2056 breastdensity
#> 2057 breastdensity
#> 2058 breastdensity
#> 2059 breastdensity
#> 2060 breastdensity
#> 2061 breastdensity
#> 2062 breastdensity
#> 2063 breastdensity
#> 2064 breastdensity
#> 2065 breastdensity
#> 2066 breastdensity
#> 2067 breastfeed
#> 2068 breastfeed
#> 2069 breastfeed
#> 2070 breastfeed
#> 2071 breastfeed
#> 2072 breastfeed
#> 2073 breastfeed
#> 2074 breastfeed
#> 2075 breastfeed
#> 2076 breastfeed
#> 2077 breastfeed
#> 2078 breastfeed
#> 2079 breastfeed
#> 2080 breastfeed
#> 2081 breastfeed
#> 2082 breastfeed
#> 2083 breastfeed
#> 2084 breastfeed
#> 2085 breastfeed
#> 2086 breastfeed
#> 2087 breastfeed
#> 2088 breastfeed
#> 2089 breastfeed
#> 2090 breastfeed
#> 2091 breastfeed
#> 2092 breastfeed
#> 2093 breastfeed
#> 2094 breastfeed
#> 2095 breastfeed
#> 2096 breastfeed
#> 2097 breastfeed
#> 2098 breastfeed
#> 2099 breastfeed
#> 2100 breastfeed
#> 2101 breastfeed
#> 2102 breastfeed
#> 2103 breastfeed
#> 2104 breastfeed
#> 2105 breastfeed
#> 2106 breastfeed
#> 2107 breastfeed
#> 2108 breastfeed
#> 2109 breastfeed
#> 2110 breastfeed
#> 2111 breastfeed
#> 2112 breastfeed
#> 2113 breastfeed
#> 2114 breastfeed
#> 2115 broadcom
#> 2116 broadcom
#> 2117 broadcom
#> 2118 broadcom
#> 2119 broadcom
#> 2120 broadcom
#> 2121 broadcom
#> 2122 broadcom
#> 2123 broadcom
#> 2124 broadcom
#> 2125 broadcom
#> 2126 broadcom
#> 2127 broadcom
#> 2128 broadcom
#> 2129 broadcom
#> 2130 broadcom
#> 2131 broadcom
#> 2132 broadcom
#> 2133 budgstd
#> 2134 budgstd
#> 2135 budgstd
#> 2136 budgstd
#> 2137 budgstd
#> 2138 budgstd
#> 2139 budgstd
#> 2140 budgstd
#> 2141 budgstd
#> 2142 budgstd
#> 2143 budgstd
#> 2144 budgstd
#> 2145 budgstd
#> 2146 budgstd
#> 2147 budgstd
#> 2148 budgstd
#> 2149 budgstd
#> 2150 budgstd
#> 2151 budgstd
#> 2152 budgstd
#> 2153 budgstd
#> 2154 budgstd
#> 2155 budgstd
#> 2156 budgstd
#> 2157 budgstd
#> 2158 budgstd
#> 2159 budgstd
#> 2160 budgstd
#> 2161 budgstd
#> 2162 budgstd
#> 2163 budgstd
#> 2164 budgstd
#> 2165 budgstd
#> 2166 budgstd
#> 2167 budgstd
#> 2168 budgstd
#> 2169 budgstd
#> 2170 budgstd
#> 2171 budgstd
#> 2172 budgstd
#> 2173 budgstd
#> 2174 budgstd
#> 2175 budgstd
#> 2176 budgstd
#> 2177 budgstd
#> 2178 budgstd
#> 2179 budgstd
#> 2180 budgstd
#> 2181 buildingcode
#> 2182 buildingcode
#> 2183 buildingcode
#> 2184 buildingcode
#> 2185 buildingcode
#> 2186 buildingcode
#> 2187 buildingcode
#> 2188 buildingcode
#> 2189 buildingcode
#> 2190 buildingcode
#> 2191 buildingcode
#> 2192 buildingcode
#> 2193 buildingcode
#> 2194 buildingcode
#> 2195 buildingcode
#> 2196 buildingcode
#> 2197 buildingcode
#> 2198 buildingcode
#> 2199 buildingcode
#> 2200 buildingcode
#> 2201 buildingcode
#> 2202 buildingcode
#> 2203 buildingcode
#> 2204 buildingcode
#> 2205 buildingcode
#> 2206 buildingcode
#> 2207 buildingcode
#> 2208 buildingcode
#> 2209 buildingcode
#> 2210 buildingcode
#> 2211 buildingcode
#> 2212 buildingcode
#> 2213 buildingcode
#> 2214 buildingcode
#> 2215 buildingcode
#> 2216 buildingcode
#> 2217 buildingcode
#> 2218 buildingcode
#> 2219 buildingcode
#> 2220 buildingcode
#> 2221 buildingcode
#> 2222 buildingcode
#> 2223 buildingcode
#> 2224 bus taxation proration and reciprocity agreement
#> 2225 bus taxation proration and reciprocity agreement
#> 2226 bus taxation proration and reciprocity agreement
#> 2227 bus taxation proration and reciprocity agreement
#> 2228 bus taxation proration and reciprocity agreement
#> 2229 business organizations code
#> 2230 candlim
#> 2231 candlim
#> 2232 candlim
#> 2233 candlim
#> 2234 candlim
#> 2235 candlim
#> 2236 candlim
#> 2237 candlim
#> 2238 candlim
#> 2239 candlim
#> 2240 candlim
#> 2241 candlim
#> 2242 candlim
#> 2243 candlim
#> 2244 candlim
#> 2245 candlim
#> 2246 candlim
#> 2247 candlim
#> 2248 candlim
#> 2249 candlim
#> 2250 candlim
#> 2251 candlim
#> 2252 candlim
#> 2253 candlim
#> 2254 candlim
#> 2255 candlim
#> 2256 candlim
#> 2257 candlim
#> 2258 candlim
#> 2259 candlim
#> 2260 candlim
#> 2261 candlim
#> 2262 candlim
#> 2263 candlim
#> 2264 ccb
#> 2265 ccb
#> 2266 ccb
#> 2267 ccb
#> 2268 ccb
#> 2269 ccb
#> 2270 ccb
#> 2271 ccb
#> 2272 ccb
#> 2273 ccb
#> 2274 ccb
#> 2275 ccb
#> 2276 ccb
#> 2277 ccb
#> 2278 ccb
#> 2279 ccb
#> 2280 ccreceipt
#> 2281 ccreceipt
#> 2282 ccreceipt
#> 2283 ccreceipt
#> 2284 ccreceipt
#> 2285 ccreceipt
#> 2286 ccreceipt
#> 2287 ccreceipt
#> 2288 ccreceipt
#> 2289 ccreceipt
#> 2290 ccreceipt
#> 2291 ccreceipt
#> 2292 ccreceipt
#> 2293 ccreceipt
#> 2294 ccreceipt
#> 2295 ccreceipt
#> 2296 ccreceipt
#> 2297 ccreceipt
#> 2298 ccreceipt
#> 2299 ccreceipt
#> 2300 ccreceipt
#> 2301 ccreceipt
#> 2302 ccreceipt
#> 2303 ccreceipt
#> 2304 ccreceipt
#> 2305 ccreceipt
#> 2306 ccreceipt
#> 2307 ccreceipt
#> 2308 ccreceipt
#> 2309 ccreceipt
#> 2310 ccreceipt
#> 2311 cctheft
#> 2312 cctheft
#> 2313 cctheft
#> 2314 cctheft
#> 2315 cctheft
#> 2316 cctheft
#> 2317 cctheft
#> 2318 cctheft
#> 2319 cctheft
#> 2320 cctheft
#> 2321 cctheft
#> 2322 cctheft
#> 2323 cctheft
#> 2324 cctheft
#> 2325 cctheft
#> 2326 cctheft
#> 2327 cctheft
#> 2328 cctheft
#> 2329 cctheft
#> 2330 cctheft
#> 2331 cctheft
#> 2332 cctheft
#> 2333 cctheft
#> 2334 cctheft
#> 2335 cctheft
#> 2336 cctheft
#> 2337 cctheft
#> 2338 cctheft
#> 2339 cctheft
#> 2340 cctheft
#> 2341 cctheft
#> 2342 cctheft
#> 2343 cctheft
#> 2344 cctheft
#> 2345 cctheft
#> 2346 cctheft
#> 2347 cctheft
#> 2348 cctheft
#> 2349 cctheft
#> 2350 cctheft
#> 2351 cctheft
#> 2352 cctheft
#> 2353 cctheft
#> 2354 cctheft
#> 2355 cctheft
#> 2356 cctheft
#> 2357 cctheft
#> 2358 cctheft
#> 2359 cctheft
#> 2360 cctheft
#> 2361 cent
#> 2362 cent
#> 2363 cent
#> 2364 cent
#> 2365 cent
#> 2366 cent
#> 2367 cent
#> 2368 cent
#> 2369 cent
#> 2370 cent
#> 2371 cent
#> 2372 cent
#> 2373 cent
#> 2374 cent
#> 2375 cent
#> 2376 cent
#> 2377 cent
#> 2378 certificate of title for vessels act
#> 2379 certificate of title for vessels act
#> 2380 certification of questions of law (1967)
#> 2381 certification of questions of law (1967)
#> 2382 certification of questions of law (1967)
#> 2383 certification of questions of law (1967)
#> 2384 certification of questions of law (1967)
#> 2385 certification of questions of law (1967)
#> 2386 certification of questions of law (1967)
#> 2387 certification of questions of law (1967)
#> 2388 certification of questions of law (1967)
#> 2389 certification of questions of law (1967)
#> 2390 certification of questions of law (1967)
#> 2391 certification of questions of law (1995)
#> 2392 certification of questions of law (1995)
#> 2393 certification of questions of law (1995)
#> 2394 certification of questions of law (1995)
#> 2395 certification of questions of law (1995)
#> 2396 certification of questions of law (1995)
#> 2397 certification of questions of law (1995)
#> 2398 chartersch
#> 2399 chartersch
#> 2400 chartersch
#> 2401 chartersch
#> 2402 chartersch
#> 2403 chartersch
#> 2404 chartersch
#> 2405 chartersch
#> 2406 chartersch
#> 2407 chartersch
#> 2408 chartersch
#> 2409 chartersch
#> 2410 chartersch
#> 2411 chartersch
#> 2412 chartersch
#> 2413 chartersch
#> 2414 chartersch
#> 2415 chartersch
#> 2416 chartersch
#> 2417 chartersch
#> 2418 chartersch
#> 2419 chartersch
#> 2420 chartersch
#> 2421 chartersch
#> 2422 chartersch
#> 2423 child abduction prevention
#> 2424 child abduction prevention
#> 2425 child abduction prevention
#> 2426 child abduction prevention
#> 2427 child abduction prevention
#> 2428 child abduction prevention
#> 2429 child abduction prevention
#> 2430 child abduction prevention
#> 2431 child abduction prevention
#> 2432 child abduction prevention
#> 2433 child abduction prevention
#> 2434 child abduction prevention
#> 2435 child abduction prevention
#> 2436 child abduction prevention
#> 2437 child custody jurisdiction and enforcement act
#> 2438 child custody jurisdiction and enforcement act
#> 2439 child custody jurisdiction and enforcement act
#> 2440 child custody jurisdiction and enforcement act
#> 2441 child custody jurisdiction and enforcement act
#> 2442 child custody jurisdiction and enforcement act
#> 2443 child custody jurisdiction and enforcement act
#> 2444 child custody jurisdiction and enforcement act
#> 2445 child custody jurisdiction and enforcement act
#> 2446 child custody jurisdiction and enforcement act
#> 2447 child custody jurisdiction and enforcement act
#> 2448 child custody jurisdiction and enforcement act
#> 2449 child custody jurisdiction and enforcement act
#> 2450 child custody jurisdiction and enforcement act
#> 2451 child custody jurisdiction and enforcement act
#> 2452 child custody jurisdiction and enforcement act
#> 2453 child custody jurisdiction and enforcement act
#> 2454 child custody jurisdiction and enforcement act
#> 2455 child custody jurisdiction and enforcement act
#> 2456 child custody jurisdiction and enforcement act
#> 2457 child custody jurisdiction and enforcement act
#> 2458 child custody jurisdiction and enforcement act
#> 2459 child custody jurisdiction and enforcement act
#> 2460 child custody jurisdiction and enforcement act
#> 2461 child custody jurisdiction and enforcement act
#> 2462 child custody jurisdiction and enforcement act
#> 2463 child custody jurisdiction and enforcement act
#> 2464 child custody jurisdiction and enforcement act
#> 2465 child custody jurisdiction and enforcement act
#> 2466 child custody jurisdiction and enforcement act
#> 2467 child custody jurisdiction and enforcement act
#> 2468 child custody jurisdiction and enforcement act
#> 2469 child custody jurisdiction and enforcement act
#> 2470 child custody jurisdiction and enforcement act
#> 2471 child custody jurisdiction and enforcement act
#> 2472 child custody jurisdiction and enforcement act
#> 2473 child custody jurisdiction and enforcement act
#> 2474 child custody jurisdiction and enforcement act
#> 2475 child custody jurisdiction and enforcement act
#> 2476 child custody jurisdiction and enforcement act
#> 2477 child custody jurisdiction and enforcement act
#> 2478 child custody jurisdiction and enforcement act
#> 2479 child custody jurisdiction and enforcement act
#> 2480 child custody jurisdiction and enforcement act
#> 2481 child custody jurisdiction and enforcement act
#> 2482 child custody jurisdiction and enforcement act
#> 2483 child custody jurisdiction and enforcement act
#> 2484 child custody jurisdiction and enforcement act
#> 2485 child pornography
#> 2486 child pornography
#> 2487 child pornography
#> 2488 child pornography
#> 2489 child pornography
#> 2490 child pornography
#> 2491 child pornography
#> 2492 child pornography
#> 2493 child pornography
#> 2494 child pornography
#> 2495 child pornography
#> 2496 child pornography
#> 2497 child pornography
#> 2498 child pornography
#> 2499 child pornography
#> 2500 child pornography
#> 2501 child pornography
#> 2502 child pornography
#> 2503 child pornography
#> 2504 child pornography
#> 2505 child pornography
#> 2506 child pornography
#> 2507 child pornography
#> 2508 child pornography
#> 2509 child pornography
#> 2510 child pornography
#> 2511 child pornography
#> 2512 child pornography
#> 2513 child pornography
#> 2514 child pornography
#> 2515 child pornography
#> 2516 child pornography
#> 2517 child pornography
#> 2518 child pornography
#> 2519 child pornography
#> 2520 child pornography
#> 2521 child pornography
#> 2522 child pornography
#> 2523 child pornography
#> 2524 child pornography
#> 2525 child pornography
#> 2526 child pornography
#> 2527 child pornography
#> 2528 child pornography
#> 2529 child witness testimony by alternative methods act
#> 2530 child witness testimony by alternative methods act
#> 2531 child witness testimony by alternative methods act
#> 2532 child witness testimony by alternative methods act
#> 2533 childabuse
#> 2534 childabuse
#> 2535 childabuse
#> 2536 childabuse
#> 2537 childabuse
#> 2538 childabuse
#> 2539 childabuse
#> 2540 childabuse
#> 2541 childabuse
#> 2542 childabuse
#> 2543 childabuse
#> 2544 childabuse
#> 2545 childabuse
#> 2546 childabuse
#> 2547 childabuse
#> 2548 childabuse
#> 2549 childabuse
#> 2550 childabuse
#> 2551 childabuse
#> 2552 childabuse
#> 2553 childabuse
#> 2554 childabuse
#> 2555 childabuse
#> 2556 childabuse
#> 2557 childabuse
#> 2558 childabuse
#> 2559 childabuse
#> 2560 childabuse
#> 2561 childabuse
#> 2562 childabuse
#> 2563 childabuse
#> 2564 childabuse
#> 2565 childabuse
#> 2566 childabuse
#> 2567 childabuse
#> 2568 childabuse
#> 2569 childabuse
#> 2570 childabuse
#> 2571 childabuse
#> 2572 childabuse
#> 2573 childabuse
#> 2574 childabuse
#> 2575 childabuse
#> 2576 childabuse
#> 2577 childabuse
#> 2578 childabuse
#> 2579 childabuse
#> 2580 childabuse
#> 2581 childabuse
#> 2582 childabuse
#> 2583 childlab
#> 2584 childlab
#> 2585 childlab
#> 2586 childlab
#> 2587 childlab
#> 2588 childlab
#> 2589 childlab
#> 2590 childlab
#> 2591 childlab
#> 2592 childlab
#> 2593 childlab
#> 2594 childlab
#> 2595 childlab
#> 2596 childlab
#> 2597 childlab
#> 2598 childlab
#> 2599 childlab
#> 2600 childlab
#> 2601 childlab
#> 2602 childlab
#> 2603 childlab
#> 2604 childlab
#> 2605 childlab
#> 2606 childlab
#> 2607 childlab
#> 2608 childlab
#> 2609 childlab
#> 2610 childlab
#> 2611 childlab
#> 2612 childlab
#> 2613 childlab
#> 2614 childlab
#> 2615 childlab
#> 2616 childlab
#> 2617 childlab
#> 2618 childlab
#> 2619 childlab
#> 2620 childlab
#> 2621 childlab
#> 2622 childlab
#> 2623 childlab
#> 2624 childlab
#> 2625 childlab
#> 2626 childlab
#> 2627 childlab
#> 2628 childlab
#> 2629 childrest
#> 2630 childrest
#> 2631 childrest
#> 2632 childrest
#> 2633 childrest
#> 2634 childrest
#> 2635 childrest
#> 2636 childrest
#> 2637 childrest
#> 2638 childrest
#> 2639 childrest
#> 2640 childrest
#> 2641 childrest
#> 2642 childrest
#> 2643 childrest
#> 2644 childrest
#> 2645 childrest
#> 2646 childrest
#> 2647 childrest
#> 2648 childrest
#> 2649 childrest
#> 2650 childrest
#> 2651 childrest
#> 2652 childrest
#> 2653 childrest
#> 2654 childrest
#> 2655 childrest
#> 2656 childrest
#> 2657 childrest
#> 2658 childrest
#> 2659 childrest
#> 2660 childrest
#> 2661 childrest
#> 2662 childrest
#> 2663 childrest
#> 2664 childrest
#> 2665 childrest
#> 2666 childrest
#> 2667 childrest
#> 2668 childrest
#> 2669 childrest
#> 2670 childrest
#> 2671 childrest
#> 2672 childrest
#> 2673 childrest
#> 2674 childrest
#> 2675 childrest
#> 2676 childrest
#> 2677 childrest
#> 2678 chirolic
#> 2679 chirolic
#> 2680 chirolic
#> 2681 chirolic
#> 2682 chirolic
#> 2683 chirolic
#> 2684 chirolic
#> 2685 chirolic
#> 2686 chirolic
#> 2687 chirolic
#> 2688 chirolic
#> 2689 chirolic
#> 2690 chirolic
#> 2691 chirolic
#> 2692 chirolic
#> 2693 chirolic
#> 2694 chirolic
#> 2695 chirolic
#> 2696 chirolic
#> 2697 chirolic
#> 2698 chirolic
#> 2699 chirolic
#> 2700 chirolic
#> 2701 chirolic
#> 2702 chirolic
#> 2703 chirolic
#> 2704 chirolic
#> 2705 chirolic
#> 2706 chirolic
#> 2707 chirolic
#> 2708 chirolic
#> 2709 chirolic
#> 2710 chirolic
#> 2711 chirolic
#> 2712 chirolic
#> 2713 chirolic
#> 2714 chirolic
#> 2715 chirolic
#> 2716 chirolic
#> 2717 chirolic
#> 2718 chirolic
#> 2719 chirolic
#> 2720 chirolic
#> 2721 chirolic
#> 2722 cigtax
#> 2723 cigtax
#> 2724 cigtax
#> 2725 cigtax
#> 2726 cigtax
#> 2727 cigtax
#> 2728 cigtax
#> 2729 cigtax
#> 2730 cigtax
#> 2731 cigtax
#> 2732 cigtax
#> 2733 cigtax
#> 2734 cigtax
#> 2735 cigtax
#> 2736 cigtax
#> 2737 cigtax
#> 2738 cigtax
#> 2739 cigtax
#> 2740 cigtax
#> 2741 cigtax
#> 2742 cigtax
#> 2743 cigtax
#> 2744 cigtax
#> 2745 cigtax
#> 2746 cigtax
#> 2747 cigtax
#> 2748 cigtax
#> 2749 cigtax
#> 2750 cigtax
#> 2751 cigtax
#> 2752 cigtax
#> 2753 cigtax
#> 2754 cigtax
#> 2755 cigtax
#> 2756 cigtax
#> 2757 cigtax
#> 2758 cigtax
#> 2759 cigtax
#> 2760 cigtax
#> 2761 cigtax
#> 2762 cigtax
#> 2763 cigtax
#> 2764 cigtax
#> 2765 cigtax
#> 2766 cigtax
#> 2767 cigtax
#> 2768 citzon
#> 2769 citzon
#> 2770 citzon
#> 2771 citzon
#> 2772 citzon
#> 2773 citzon
#> 2774 citzon
#> 2775 citzon
#> 2776 citzon
#> 2777 citzon
#> 2778 citzon
#> 2779 citzon
#> 2780 citzon
#> 2781 citzon
#> 2782 citzon
#> 2783 citzon
#> 2784 citzon
#> 2785 citzon
#> 2786 citzon
#> 2787 citzon
#> 2788 citzon
#> 2789 citzon
#> 2790 citzon
#> 2791 citzon
#> 2792 citzon
#> 2793 citzon
#> 2794 citzon
#> 2795 citzon
#> 2796 citzon
#> 2797 citzon
#> 2798 citzon
#> 2799 citzon
#> 2800 citzon
#> 2801 citzon
#> 2802 citzon
#> 2803 citzon
#> 2804 citzon
#> 2805 citzon
#> 2806 citzon
#> 2807 citzon
#> 2808 citzon
#> 2809 citzon
#> 2810 citzon
#> 2811 citzon
#> 2812 citzon
#> 2813 citzon
#> 2814 citzon
#> 2815 civil defense and disaster compact
#> 2816 civil defense and disaster compact
#> 2817 civil defense and disaster compact
#> 2818 civil defense and disaster compact
#> 2819 civil defense and disaster compact
#> 2820 civil defense and disaster compact
#> 2821 civil defense and disaster compact
#> 2822 civil defense and disaster compact
#> 2823 civil defense and disaster compact
#> 2824 civil defense and disaster compact
#> 2825 civil defense and disaster compact
#> 2826 civil defense and disaster compact
#> 2827 civil defense and disaster compact
#> 2828 civil defense and disaster compact
#> 2829 civil defense and disaster compact
#> 2830 civil defense and disaster compact
#> 2831 civil defense and disaster compact
#> 2832 civil defense and disaster compact
#> 2833 civil defense and disaster compact
#> 2834 civinjaut
#> 2835 civinjaut
#> 2836 civinjaut
#> 2837 civinjaut
#> 2838 civinjaut
#> 2839 civinjaut
#> 2840 civinjaut
#> 2841 civinjaut
#> 2842 civinjaut
#> 2843 civinjaut
#> 2844 civinjaut
#> 2845 civinjaut
#> 2846 civinjaut
#> 2847 civinjaut
#> 2848 civinjaut
#> 2849 class actions
#> 2850 class actions
#> 2851 clinic_access
#> 2852 clinic_access
#> 2853 clinic_access
#> 2854 clinic_access
#> 2855 clinic_access
#> 2856 clinic_access
#> 2857 clinic_access
#> 2858 clinic_access
#> 2859 clinic_access
#> 2860 clinic_access
#> 2861 clinic_access
#> 2862 clinic_access
#> 2863 clinic_access
#> 2864 clinic_access
#> 2865 clinic_access
#> 2866 clinic_access
#> 2867 cogrowman
#> 2868 cogrowman
#> 2869 cogrowman
#> 2870 cogrowman
#> 2871 cogrowman
#> 2872 cogrowman
#> 2873 cogrowman
#> 2874 cogrowman
#> 2875 cogrowman
#> 2876 cogrowman
#> 2877 colcanscr
#> 2878 colcanscr
#> 2879 colcanscr
#> 2880 colcanscr
#> 2881 colcanscr
#> 2882 colcanscr
#> 2883 colcanscr
#> 2884 colcanscr
#> 2885 colcanscr
#> 2886 colcanscr
#> 2887 colcanscr
#> 2888 colcanscr
#> 2889 colcanscr
#> 2890 colcanscr
#> 2891 colcanscr
#> 2892 colcanscr
#> 2893 colcanscr
#> 2894 colcanscr
#> 2895 colcanscr
#> 2896 colcanscr
#> 2897 colcanscr
#> 2898 colcanscr
#> 2899 colcanscr
#> 2900 colcanscr
#> 2901 colcanscr
#> 2902 colcanscr
#> 2903 colcanscr
#> 2904 collaborative law act
#> 2905 collaborative law act
#> 2906 collaborative law act
#> 2907 collaborative law act
#> 2908 collaborative law act
#> 2909 collaborative law act
#> 2910 collaborative law act
#> 2911 collaborative law act
#> 2912 collaborative law act
#> 2913 collaborative law act
#> 2914 collaborative law act
#> 2915 collaborative law act
#> 2916 collaborative law act
#> 2917 collaborative law act
#> 2918 collaborative law act
#> 2919 collateral consequences of conviction act
#> 2920 collegesavings
#> 2921 collegesavings
#> 2922 collegesavings
#> 2923 collegesavings
#> 2924 collegesavings
#> 2925 collegesavings
#> 2926 collegesavings
#> 2927 collegesavings
#> 2928 collegesavings
#> 2929 collegesavings
#> 2930 collegesavings
#> 2931 collegesavings
#> 2932 collegesavings
#> 2933 collegesavings
#> 2934 collegesavings
#> 2935 collegesavings
#> 2936 collegesavings
#> 2937 collegesavings
#> 2938 collegesavings
#> 2939 collegesavings
#> 2940 collegesavings
#> 2941 collegesavings
#> 2942 collegesavings
#> 2943 collegesavings
#> 2944 collegesavings
#> 2945 collegesavings
#> 2946 collegesavings
#> 2947 collegesavings
#> 2948 collegesavings
#> 2949 collegesavings
#> 2950 collegesavings
#> 2951 collegesavings
#> 2952 collegesavings
#> 2953 collegesavings
#> 2954 collegesavings
#> 2955 collegesavings
#> 2956 collegesavings
#> 2957 collegesavings
#> 2958 collegesavings
#> 2959 collegesavings
#> 2960 collegesavings
#> 2961 collegesavings
#> 2962 collegesavings
#> 2963 collegesavings
#> 2964 collegesavings
#> 2965 collegesavings
#> 2966 collegesavings
#> 2967 comage
#> 2968 comage
#> 2969 comage
#> 2970 comage
#> 2971 comage
#> 2972 comage
#> 2973 comage
#> 2974 comage
#> 2975 comage
#> 2976 comage
#> 2977 comage
#> 2978 comage
#> 2979 comage
#> 2980 comage
#> 2981 comage
#> 2982 comage
#> 2983 comage
#> 2984 comage
#> 2985 comage
#> 2986 comage
#> 2987 comage
#> 2988 commercial real estate receivership act
#> 2989 common interest owners bill of rights
#> 2990 common interest ownership act (1982)
#> 2991 common interest ownership act (1982)
#> 2992 common interest ownership act (1982)
#> 2993 common interest ownership act (1982)
#> 2994 common interest ownership act (1982)
#> 2995 common interest ownership act (1994)
#> 2996 common interest ownership act (1994)
#> 2997 common interest ownership act (2008)
#> 2998 common interest ownership act (2008)
#> 2999 common interest ownership act (2008)
#> 3000 compact for a balanced budget
#> 3001 compact for a balanced budget
#> 3002 compact for a balanced budget
#> 3003 compact for a balanced budget
#> 3004 compact for education
#> 3005 compact for education
#> 3006 compact for education
#> 3007 compact for education
#> 3008 compact for education
#> 3009 compact for education
#> 3010 compact for education
#> 3011 compact for education
#> 3012 compact for education
#> 3013 compact for education
#> 3014 compact for education
#> 3015 compact for education
#> 3016 compact for education
#> 3017 compact for education
#> 3018 compact for education
#> 3019 compact for education
#> 3020 compact for education
#> 3021 compact for education
#> 3022 compact for education
#> 3023 compact for education
#> 3024 compact for education
#> 3025 compact for education
#> 3026 compact for education
#> 3027 compact for education
#> 3028 compact for education
#> 3029 compact for education
#> 3030 compact for education
#> 3031 compact for education
#> 3032 compact for education
#> 3033 compact for education
#> 3034 compact for education
#> 3035 compact for education
#> 3036 compact for education
#> 3037 compact for education
#> 3038 compact for education
#> 3039 compact for education
#> 3040 compact for education
#> 3041 compact for education
#> 3042 compact for education
#> 3043 compact for education
#> 3044 compact for education
#> 3045 compact for education
#> 3046 compact for education
#> 3047 compact for education
#> 3048 compact for education
#> 3049 compact for pension portability for educators
#> 3050 compact for pension portability for educators
#> 3051 compact on adoption and medical assistance
#> 3052 compact on adoption and medical assistance
#> 3053 compact on adoption and medical assistance
#> 3054 compact on adoption and medical assistance
#> 3055 compact on adoption and medical assistance
#> 3056 compact on adoption and medical assistance
#> 3057 compact on adoption and medical assistance
#> 3058 compact on adoption and medical assistance
#> 3059 compact on adoption and medical assistance
#> 3060 compact on adoption and medical assistance
#> 3061 compact on adoption and medical assistance
#> 3062 compact on adoption and medical assistance
#> 3063 compact on adoption and medical assistance
#> 3064 compact on adoption and medical assistance
#> 3065 compact on adoption and medical assistance
#> 3066 compact on adoption and medical assistance
#> 3067 compact on adoption and medical assistance
#> 3068 compact on adoption and medical assistance
#> 3069 compact on adoption and medical assistance
#> 3070 compact on adoption and medical assistance
#> 3071 compact on adoption and medical assistance
#> 3072 compact on adoption and medical assistance
#> 3073 compact on mental health
#> 3074 compact on mental health
#> 3075 compact on mental health
#> 3076 compact on mental health
#> 3077 compact on mental health
#> 3078 compact on mental health
#> 3079 compact on mental health
#> 3080 compact on mental health
#> 3081 compact on mental health
#> 3082 compact on mental health
#> 3083 compact on mental health
#> 3084 compact on mental health
#> 3085 compact on mental health
#> 3086 compact on mental health
#> 3087 compact on mental health
#> 3088 compact on mental health
#> 3089 compact on mental health
#> 3090 compact on mental health
#> 3091 compact on mental health
#> 3092 compact on mental health
#> 3093 compact on mental health
#> 3094 compact on mental health
#> 3095 compact on mental health
#> 3096 compact on mental health
#> 3097 compact on mental health
#> 3098 compact on mental health
#> 3099 compact on mental health
#> 3100 compact on mental health
#> 3101 compact on mental health
#> 3102 compact on mental health
#> 3103 compact on mental health
#> 3104 compact on mental health
#> 3105 compact on mental health
#> 3106 compact on mental health
#> 3107 compact on mental health
#> 3108 compact on mental health
#> 3109 compact on mental health
#> 3110 compact on mental health
#> 3111 compact on mental health
#> 3112 compact on mental health
#> 3113 compact on mental health
#> 3114 compact on mental health
#> 3115 compact on mental health
#> 3116 compact on mental health
#> 3117 compact on placement of children
#> 3118 compact on placement of children
#> 3119 compact on placement of children
#> 3120 compact on placement of children
#> 3121 compact on placement of children
#> 3122 compact on placement of children
#> 3123 compact on placement of children
#> 3124 compact on placement of children
#> 3125 compact on placement of children
#> 3126 compact on placement of children
#> 3127 compact on placement of children
#> 3128 compact on placement of children
#> 3129 compact on placement of children
#> 3130 compact on placement of children
#> 3131 compact on placement of children
#> 3132 compact on placement of children
#> 3133 compact on placement of children
#> 3134 compact on placement of children
#> 3135 compact on placement of children
#> 3136 compact on placement of children
#> 3137 compact on placement of children
#> 3138 compact on placement of children
#> 3139 compact on placement of children
#> 3140 compact on placement of children
#> 3141 compact on placement of children
#> 3142 compact on placement of children
#> 3143 compact on placement of children
#> 3144 compact on placement of children
#> 3145 compact on placement of children
#> 3146 compact on placement of children
#> 3147 compact on placement of children
#> 3148 compact on placement of children
#> 3149 compact on placement of children
#> 3150 compact on placement of children
#> 3151 compact on placement of children
#> 3152 compact on placement of children
#> 3153 compact on placement of children
#> 3154 compact on placement of children
#> 3155 compact on placement of children
#> 3156 compact on placement of children
#> 3157 compact on placement of children
#> 3158 compact on placement of children
#> 3159 compact on placement of children
#> 3160 compact on placement of children
#> 3161 compact on placement of children
#> 3162 compact on placement of children
#> 3163 compact on placement of children
#> 3164 compact on taxation of motor fuels consumed by interstate buses
#> 3165 compact on taxation of motor fuels consumed by interstate buses
#> 3166 compcrime
#> 3167 compcrime
#> 3168 compcrime
#> 3169 compcrime
#> 3170 compcrime
#> 3171 compcrime
#> 3172 compcrime
#> 3173 compcrime
#> 3174 compcrime
#> 3175 compcrime
#> 3176 compcrime
#> 3177 compcrime
#> 3178 compcrime
#> 3179 compcrime
#> 3180 compcrime
#> 3181 compcrime
#> 3182 compcrime
#> 3183 compcrime
#> 3184 compcrime
#> 3185 compcrime
#> 3186 compcrime
#> 3187 compcrime
#> 3188 compcrime
#> 3189 compcrime
#> 3190 compcrime
#> 3191 compcrime
#> 3192 compcrime
#> 3193 compcrime
#> 3194 compcrime
#> 3195 compcrime
#> 3196 compcrime
#> 3197 compcrime
#> 3198 compcrime
#> 3199 compcrime
#> 3200 compcrime
#> 3201 compcrime
#> 3202 compcrime
#> 3203 compcrime
#> 3204 compcrime
#> 3205 compcrime
#> 3206 compcrime
#> 3207 compcrime
#> 3208 compcrime
#> 3209 compcrime
#> 3210 compcrime
#> 3211 compcrime
#> 3212 compcrime
#> 3213 compcrime
#> 3214 compcrime
#> 3215 compcrime
#> 3216 compsch
#> 3217 compsch
#> 3218 compsch
#> 3219 compsch
#> 3220 compsch
#> 3221 compsch
#> 3222 compsch
#> 3223 compsch
#> 3224 compsch
#> 3225 compsch
#> 3226 compsch
#> 3227 compsch
#> 3228 compsch
#> 3229 compsch
#> 3230 compsch
#> 3231 compsch
#> 3232 compsch
#> 3233 compsch
#> 3234 compsch
#> 3235 compsch
#> 3236 compsch
#> 3237 compsch
#> 3238 compsch
#> 3239 compsch
#> 3240 compsch
#> 3241 compsch
#> 3242 compsch
#> 3243 compsch
#> 3244 compsch
#> 3245 compsch
#> 3246 compsch
#> 3247 compsch
#> 3248 compsch
#> 3249 compsch
#> 3250 compsch
#> 3251 compsch
#> 3252 compsch
#> 3253 compsch
#> 3254 compsch
#> 3255 compsch
#> 3256 compsch
#> 3257 compsch
#> 3258 compsch
#> 3259 compsch
#> 3260 compsch
#> 3261 compsch
#> 3262 compsch
#> 3263 compsch
#> 3264 computer information transactions act
#> 3265 computer information transactions act
#> 3266 comsrv12
#> 3267 comsrv12
#> 3268 comsrv12
#> 3269 comsrv12
#> 3270 comsrv12
#> 3271 comsrv12
#> 3272 comsrv12
#> 3273 comsrv12
#> 3274 comsrv12
#> 3275 comsrv12
#> 3276 comsrv12
#> 3277 comsrv12
#> 3278 comsrv12
#> 3279 comsrv12
#> 3280 comsrv12
#> 3281 comsrv12
#> 3282 comsrv12
#> 3283 comsrv12
#> 3284 comsrv12
#> 3285 comsrv12
#> 3286 comsrv12
#> 3287 comsrv12
#> 3288 comsrv12
#> 3289 comsrv12
#> 3290 comsrv12
#> 3291 comsrv12
#> 3292 comsrv12
#> 3293 comsrv12
#> 3294 comsrv12
#> 3295 comsrv12
#> 3296 comsrv12
#> 3297 comsrv12
#> 3298 comsrv12
#> 3299 comsrv12
#> 3300 comsrv12
#> 3301 comsrv12
#> 3302 comsrv12
#> 3303 comsrv12
#> 3304 comsrv12
#> 3305 comsrv12
#> 3306 comsrv12
#> 3307 comsrv12
#> 3308 comsrv12
#> 3309 comsrvdy
#> 3310 comsrvdy
#> 3311 comsrvdy
#> 3312 conacchwy
#> 3313 conacchwy
#> 3314 conacchwy
#> 3315 conacchwy
#> 3316 conacchwy
#> 3317 conacchwy
#> 3318 conacchwy
#> 3319 conacchwy
#> 3320 conacchwy
#> 3321 conacchwy
#> 3322 conacchwy
#> 3323 conacchwy
#> 3324 conacchwy
#> 3325 conacchwy
#> 3326 conacchwy
#> 3327 conacchwy
#> 3328 conacchwy
#> 3329 conacchwy
#> 3330 conacchwy
#> 3331 conacchwy
#> 3332 conacchwy
#> 3333 conacchwy
#> 3334 conacchwy
#> 3335 conacchwy
#> 3336 conacchwy
#> 3337 conacchwy
#> 3338 conacchwy
#> 3339 conacchwy
#> 3340 conacchwy
#> 3341 conacchwy
#> 3342 conacchwy
#> 3343 conacchwy
#> 3344 conacchwy
#> 3345 conacchwy
#> 3346 conacchwy
#> 3347 conacchwy
#> 3348 conacchwy
#> 3349 conacchwy
#> 3350 conacchwy
#> 3351 conacchwy
#> 3352 conacchwy
#> 3353 conacchwy
#> 3354 concealed carry
#> 3355 concealed carry
#> 3356 concealed carry
#> 3357 concealed carry
#> 3358 concealed carry
#> 3359 concealed carry
#> 3360 concealed carry
#> 3361 concealed carry
#> 3362 concealed carry
#> 3363 concealed carry
#> 3364 concealed carry
#> 3365 concealed carry
#> 3366 concealed carry
#> 3367 concealed carry
#> 3368 concealed carry
#> 3369 concealed carry
#> 3370 concealed carry
#> 3371 concealed carry
#> 3372 concealed carry
#> 3373 concealed carry
#> 3374 concealed carry
#> 3375 concealed carry
#> 3376 concealed carry
#> 3377 concealed carry
#> 3378 concealed carry
#> 3379 condominium act
#> 3380 condominium act
#> 3381 condominium act
#> 3382 condominium act
#> 3383 condominium act
#> 3384 condominium act
#> 3385 condominium act
#> 3386 condominium act
#> 3387 condominium act
#> 3388 condominium act
#> 3389 condominium act
#> 3390 condominium act
#> 3391 condominium act
#> 3392 conflicts of laws - limitations act
#> 3393 conflicts of laws - limitations act
#> 3394 conflicts of laws - limitations act
#> 3395 conflicts of laws - limitations act
#> 3396 conflicts of laws - limitations act
#> 3397 conflicts of laws - limitations act
#> 3398 conflicts of laws - limitations act
#> 3399 conservation easement act
#> 3400 conservation easement act
#> 3401 conservation easement act
#> 3402 conservation easement act
#> 3403 conservation easement act
#> 3404 conservation easement act
#> 3405 conservation easement act
#> 3406 conservation easement act
#> 3407 conservation easement act
#> 3408 conservation easement act
#> 3409 conservation easement act
#> 3410 conservation easement act
#> 3411 conservation easement act
#> 3412 conservation easement act
#> 3413 conservation easement act
#> 3414 conservation easement act
#> 3415 conservation easement act
#> 3416 conservation easement act
#> 3417 conservation easement act
#> 3418 conservation easement act
#> 3419 conservation easement act
#> 3420 consgsoil
#> 3421 consgsoil
#> 3422 consgsoil
#> 3423 consgsoil
#> 3424 consgsoil
#> 3425 consgsoil
#> 3426 consgsoil
#> 3427 consgsoil
#> 3428 consgsoil
#> 3429 consgsoil
#> 3430 consgsoil
#> 3431 consgsoil
#> 3432 consgsoil
#> 3433 consgsoil
#> 3434 consgsoil
#> 3435 consgsoil
#> 3436 consgsoil
#> 3437 consgsoil
#> 3438 consgsoil
#> 3439 consgsoil
#> 3440 consgsoil
#> 3441 consgsoil
#> 3442 consgsoil
#> 3443 consgsoil
#> 3444 consgsoil
#> 3445 consgsoil
#> 3446 consgsoil
#> 3447 consgsoil
#> 3448 consgsoil
#> 3449 consgsoil
#> 3450 consgsoil
#> 3451 const_protect
#> 3452 const_protect
#> 3453 const_protect
#> 3454 const_protect
#> 3455 const_protect
#> 3456 const_protect
#> 3457 const_protect
#> 3458 const_protect
#> 3459 const_protect
#> 3460 const_protect
#> 3461 const_protect
#> 3462 const_protect
#> 3463 const_protect
#> 3464 const_protect
#> 3465 const_protect
#> 3466 const_protect
#> 3467 const_protect
#> 3468 consumer credit code
#> 3469 consumer credit code
#> 3470 consumer credit code
#> 3471 consumer credit code
#> 3472 consumer credit code
#> 3473 consumer credit code
#> 3474 consumer credit code
#> 3475 consumer credit code
#> 3476 consumer credit code
#> 3477 consumer credit code
#> 3478 consumer credit code
#> 3479 consumer leases act
#> 3480 consumer sales practices
#> 3481 consumer sales practices
#> 3482 consumer sales practices
#> 3483 continsurance
#> 3484 continsurance
#> 3485 continsurance
#> 3486 continsurance
#> 3487 continsurance
#> 3488 continsurance
#> 3489 continsurance
#> 3490 continsurance
#> 3491 continsurance
#> 3492 continsurance
#> 3493 continsurance
#> 3494 continsurance
#> 3495 continsurance
#> 3496 continsurance
#> 3497 continsurance
#> 3498 continsurance
#> 3499 continsurance
#> 3500 continsurance
#> 3501 continsurance
#> 3502 continsurance
#> 3503 continsurance
#> 3504 continsurance
#> 3505 continsurance
#> 3506 continsurance
#> 3507 continsurance
#> 3508 continsurance
#> 3509 continsurance
#> 3510 continsurance
#> 3511 contr_eq
#> 3512 contr_eq
#> 3513 contr_eq
#> 3514 contr_eq
#> 3515 contr_eq
#> 3516 contr_eq
#> 3517 contr_eq
#> 3518 contr_eq
#> 3519 contr_eq
#> 3520 contr_eq
#> 3521 contr_eq
#> 3522 contr_eq
#> 3523 contr_eq
#> 3524 contr_eq
#> 3525 contr_eq
#> 3526 contr_eq
#> 3527 contr_eq
#> 3528 contr_eq
#> 3529 contr_eq
#> 3530 contr_eq
#> 3531 contr_eq
#> 3532 contr_eq
#> 3533 contr_eq
#> 3534 contr_eq
#> 3535 contr_eq
#> 3536 contr_eq
#> 3537 contr_eq
#> 3538 contr_eq
#> 3539 contr_eq
#> 3540 controlled substances act
#> 3541 controlled substances act
#> 3542 controlled substances act
#> 3543 controlled substances act
#> 3544 controlled substances act
#> 3545 controlled substances act
#> 3546 controlled substances act
#> 3547 controlled substances act
#> 3548 controlled substances act
#> 3549 controlled substances act
#> 3550 controlled substances act
#> 3551 controlled substances act
#> 3552 controlled substances act
#> 3553 controlled substances act
#> 3554 controlled substances act
#> 3555 controlled substances act
#> 3556 controlled substances act
#> 3557 controlled substances act
#> 3558 controlled substances act
#> 3559 controlled substances act
#> 3560 controlled substances act
#> 3561 controlled substances act
#> 3562 controlled substances act
#> 3563 controlled substances act
#> 3564 controlled substances act
#> 3565 controlled substances act
#> 3566 controlled substances act
#> 3567 controlled substances act
#> 3568 controlled substances act
#> 3569 corporateeff_yearadopted
#> 3570 corporateeff_yearadopted
#> 3571 corporateeff_yearadopted
#> 3572 corporateeff_yearadopted
#> 3573 corporateeff_yearadopted
#> 3574 corporateeff_yearadopted
#> 3575 corporateeff_yearadopted
#> 3576 corporateeff_yearadopted
#> 3577 corporateeff_yearadopted
#> 3578 corporateeff_yearadopted
#> 3579 corporateeff_yearadopted
#> 3580 corporateeff_yearadopted
#> 3581 corporateeff_yearadopted
#> 3582 corporateeff_yearadopted
#> 3583 corporateeff_yearadopted
#> 3584 corporateeff_yearadopted
#> 3585 corporateeff_yearadopted
#> 3586 corporateeff_yearadopted
#> 3587 corporateeff_yearadopted
#> 3588 corporateeff_yearadopted
#> 3589 corporateeff_yearadopted
#> 3590 corporateeff_yearadopted
#> 3591 corporateeff_yearadopted
#> 3592 corporaterenew_yearadopted
#> 3593 corporaterenew_yearadopted
#> 3594 corporaterenew_yearadopted
#> 3595 corporaterenew_yearadopted
#> 3596 corporaterenew_yearadopted
#> 3597 corporaterenew_yearadopted
#> 3598 corporaterenew_yearadopted
#> 3599 corporaterenew_yearadopted
#> 3600 corporlimits
#> 3601 corporlimits
#> 3602 corporlimits
#> 3603 corporlimits
#> 3604 corporlimits
#> 3605 corporlimits
#> 3606 corporlimits
#> 3607 corporlimits
#> 3608 corporlimits
#> 3609 corporlimits
#> 3610 corporlimits
#> 3611 corporlimits
#> 3612 corporlimits
#> 3613 corporlimits
#> 3614 corporlimits
#> 3615 corporlimits
#> 3616 corporlimits
#> 3617 corporlimits
#> 3618 corporlimits
#> 3619 corporlimits
#> 3620 corporlimits
#> 3621 corporlimits
#> 3622 corporlimits
#> 3623 corporlimits
#> 3624 corporlimits
#> 3625 corporlimits
#> 3626 corporlimits
#> 3627 corporlimits
#> 3628 corporlimits
#> 3629 corporlimits
#> 3630 corporlimits
#> 3631 corporlimits
#> 3632 corporlimits
#> 3633 corporlimits
#> 3634 corporlimits
#> 3635 corporlimits
#> 3636 corporlimits
#> 3637 corporlimits
#> 3638 corporlimits
#> 3639 corporlimits
#> 3640 corporlimits
#> 3641 corporlimits
#> 3642 corporlimits
#> 3643 corporlimits
#> 3644 corporlimits
#> 3645 corporlimits
#> 3646 corporlimits
#> 3647 corporlimits
#> 3648 corporlimits
#> 3649 corporlimits
#> 3650 correct
#> 3651 correct
#> 3652 correct
#> 3653 correct
#> 3654 correct
#> 3655 correct
#> 3656 correct
#> 3657 correct
#> 3658 correct
#> 3659 correct
#> 3660 correct
#> 3661 correct
#> 3662 correct
#> 3663 correct
#> 3664 correct
#> 3665 correct
#> 3666 correct
#> 3667 correct
#> 3668 correction or clarification of defamation
#> 3669 correction or clarification of defamation
#> 3670 correction or clarification of defamation
#> 3671 cpban
#> 3672 cpban
#> 3673 cpban
#> 3674 cpban
#> 3675 cpban
#> 3676 cpban
#> 3677 cpban
#> 3678 cpban
#> 3679 cpban
#> 3680 cpban
#> 3681 cpban
#> 3682 cpban
#> 3683 cpban
#> 3684 cpban
#> 3685 cpban
#> 3686 cpban
#> 3687 cpban
#> 3688 cpban
#> 3689 cpban
#> 3690 cpban
#> 3691 cpban
#> 3692 cpban
#> 3693 cpban
#> 3694 cpban
#> 3695 cpban
#> 3696 cpban
#> 3697 cpban
#> 3698 cpban
#> 3699 cpban
#> 3700 cpban
#> 3701 cpban
#> 3702 cpban
#> 3703 cpban
#> 3704 cpban
#> 3705 cpban
#> 3706 cpban
#> 3707 cpban
#> 3708 cpban
#> 3709 cpban
#> 3710 cpban
#> 3711 cpban
#> 3712 cpban
#> 3713 cpban
#> 3714 cpban
#> 3715 cpban
#> 3716 cpban
#> 3717 cpban
#> 3718 cpban
#> 3719 cpban
#> 3720 cpban
#> 3721 credfreez
#> 3722 credfreez
#> 3723 credfreez
#> 3724 credfreez
#> 3725 credfreez
#> 3726 credfreez
#> 3727 credfreez
#> 3728 credfreez
#> 3729 credfreez
#> 3730 credfreez
#> 3731 credfreez
#> 3732 credfreez
#> 3733 credfreez
#> 3734 credfreez
#> 3735 credfreez
#> 3736 credfreez
#> 3737 credfreez
#> 3738 credfreez
#> 3739 credfreez
#> 3740 credfreez
#> 3741 credfreez
#> 3742 credfreez
#> 3743 credfreez
#> 3744 credfreez
#> 3745 credfreez
#> 3746 crimeviccomp
#> 3747 crimeviccomp
#> 3748 crimeviccomp
#> 3749 crimeviccomp
#> 3750 crimeviccomp
#> 3751 crimeviccomp
#> 3752 crimeviccomp
#> 3753 crimeviccomp
#> 3754 crimeviccomp
#> 3755 crimeviccomp
#> 3756 crimeviccomp
#> 3757 crimeviccomp
#> 3758 crimeviccomp
#> 3759 crimeviccomp
#> 3760 crimeviccomp
#> 3761 crimeviccomp
#> 3762 crimeviccomp
#> 3763 crimeviccomp
#> 3764 crimeviccomp
#> 3765 crimeviccomp
#> 3766 crimeviccomp
#> 3767 crimeviccomp
#> 3768 crimeviccomp
#> 3769 crimeviccomp
#> 3770 crimeviccomp
#> 3771 crimeviccomp
#> 3772 crimeviccomp
#> 3773 crimeviccomp
#> 3774 crimeviccomp
#> 3775 crimeviccomp
#> 3776 crimeviccomp
#> 3777 crimeviccomp
#> 3778 crimeviccomp
#> 3779 crimeviccomp
#> 3780 crimeviccomp
#> 3781 crimeviccomp
#> 3782 crimeviccomp
#> 3783 crimeviccomp
#> 3784 crimeviccomp
#> 3785 crimeviccomp
#> 3786 crimeviccomp
#> 3787 crimeviccomp
#> 3788 crimeviccomp
#> 3789 crimeviccomp
#> 3790 crimeviccomp
#> 3791 crimeviccomp
#> 3792 crimeviccomp
#> 3793 crimeviccomp
#> 3794 crimeviccomp
#> 3795 crimeviccomp
#> 3796 crtadm
#> 3797 crtadm
#> 3798 crtadm
#> 3799 crtadm
#> 3800 crtadm
#> 3801 crtadm
#> 3802 crtadm
#> 3803 crtadm
#> 3804 crtadm
#> 3805 crtadm
#> 3806 crtadm
#> 3807 crtadm
#> 3808 crtadm
#> 3809 crtadm
#> 3810 crtadm
#> 3811 crtadm
#> 3812 crtadm
#> 3813 crtadm
#> 3814 crtadm
#> 3815 crtadm
#> 3816 crtadm
#> 3817 crtadm
#> 3818 crtadm
#> 3819 crtadm
#> 3820 crtadm
#> 3821 custodial trust act
#> 3822 custodial trust act
#> 3823 custodial trust act
#> 3824 custodial trust act
#> 3825 custodial trust act
#> 3826 custodial trust act
#> 3827 custodial trust act
#> 3828 custodial trust act
#> 3829 custodial trust act
#> 3830 custodial trust act
#> 3831 custodial trust act
#> 3832 custodial trust act
#> 3833 custodial trust act
#> 3834 custodial trust act
#> 3835 custodial trust act
#> 3836 custodial trust act
#> 3837 custodial trust act
#> 3838 cyberstalk
#> 3839 cyberstalk
#> 3840 cyberstalk
#> 3841 cyberstalk
#> 3842 cyberstalk
#> 3843 cyberstalk
#> 3844 cyberstalk
#> 3845 cyberstalk
#> 3846 cyberstalk
#> 3847 cyberstalk
#> 3848 cyberstalk
#> 3849 cyberstalk
#> 3850 cyberstalk
#> 3851 cyberstalk
#> 3852 cyberstalk
#> 3853 cyberstalk
#> 3854 cyberstalk
#> 3855 cyberstalk
#> 3856 cyberstalk
#> 3857 cyberstalk
#> 3858 cyberstalk
#> 3859 damagereduce
#> 3860 damagereduce
#> 3861 damagereduce
#> 3862 damagereduce
#> 3863 damagereduce
#> 3864 damagereduce
#> 3865 damagereduce
#> 3866 damagereduce
#> 3867 damagereduce
#> 3868 damagereduce
#> 3869 damagereduce
#> 3870 damagereduce
#> 3871 damagereduce
#> 3872 damagereduce
#> 3873 damagereduce
#> 3874 damagereduce
#> 3875 damremov
#> 3876 damremov
#> 3877 damremov
#> 3878 damremov
#> 3879 damremov
#> 3880 damremov
#> 3881 damremov
#> 3882 damremov
#> 3883 damremov
#> 3884 damremov
#> 3885 damremov
#> 3886 damremov
#> 3887 damremov
#> 3888 damremov
#> 3889 damremov
#> 3890 damremov
#> 3891 damremov
#> 3892 deaf
#> 3893 deaf
#> 3894 deaf
#> 3895 deaf
#> 3896 deaf
#> 3897 deaf
#> 3898 deaf
#> 3899 deaf
#> 3900 deaf
#> 3901 deaf
#> 3902 deaf
#> 3903 deaf
#> 3904 deaf
#> 3905 deaf
#> 3906 deaf
#> 3907 deaf
#> 3908 deaf
#> 3909 deaf
#> 3910 deaf
#> 3911 deaf
#> 3912 deaf
#> 3913 deaf
#> 3914 deaf
#> 3915 deaf
#> 3916 deaf
#> 3917 deaf
#> 3918 deaf
#> 3919 deaf
#> 3920 deaf
#> 3921 deaf
#> 3922 deaf
#> 3923 deathpen
#> 3924 deathpen
#> 3925 deathpen
#> 3926 deathpen
#> 3927 deathpen
#> 3928 deathpen
#> 3929 deathpen
#> 3930 deathpen
#> 3931 deathpen
#> 3932 deathpen
#> 3933 deathpen
#> 3934 deathpen
#> 3935 deathpen
#> 3936 deathpen
#> 3937 deathpen
#> 3938 deathpen
#> 3939 deathpen
#> 3940 deathpen
#> 3941 deathpen
#> 3942 deathpen
#> 3943 deathpen
#> 3944 deathpen
#> 3945 deathpen
#> 3946 deathpen
#> 3947 deathpen
#> 3948 deathpen
#> 3949 deathpen
#> 3950 deathpen
#> 3951 deathpen
#> 3952 deathpen
#> 3953 deathpen
#> 3954 deathpen
#> 3955 deathpen
#> 3956 deathpen
#> 3957 deathpen
#> 3958 deathpen
#> 3959 deathpen
#> 3960 deathpen
#> 3961 deathpen
#> 3962 debt-management services (2011)
#> 3963 debt-management services act, 2005
#> 3964 debt-management services act, 2005
#> 3965 debt-management services act, 2005
#> 3966 debt-management services act, 2005
#> 3967 debt-management services act, 2005
#> 3968 debt-management services act, 2005
#> 3969 debt-management services act, 2005
#> 3970 deceptive trade practices act (1964)
#> 3971 deceptive trade practices act (1964)
#> 3972 deceptive trade practices act (1964)
#> 3973 deceptive trade practices act (1964)
#> 3974 deceptive trade practices act (1964)
#> 3975 deceptive trade practices act (1964)
#> 3976 deceptive trade practices act (1964)
#> 3977 deceptive trade practices act (1964)
#> 3978 declaratory judgments act
#> 3979 declaratory judgments act
#> 3980 declaratory judgments act
#> 3981 declaratory judgments act
#> 3982 declaratory judgments act
#> 3983 declaratory judgments act
#> 3984 declaratory judgments act
#> 3985 declaratory judgments act
#> 3986 declaratory judgments act
#> 3987 declaratory judgments act
#> 3988 declaratory judgments act
#> 3989 declaratory judgments act
#> 3990 declaratory judgments act
#> 3991 declaratory judgments act
#> 3992 declaratory judgments act
#> 3993 declaratory judgments act
#> 3994 declaratory judgments act
#> 3995 declaratory judgments act
#> 3996 declaratory judgments act
#> 3997 declaratory judgments act
#> 3998 declaratory judgments act
#> 3999 declaratory judgments act
#> 4000 declaratory judgments act
#> 4001 declaratory judgments act
#> 4002 declaratory judgments act
#> 4003 declaratory judgments act
#> 4004 declaratory judgments act
#> 4005 declaratory judgments act
#> 4006 declaratory judgments act
#> 4007 declaratory judgments act
#> 4008 declaratory judgments act
#> 4009 declaratory judgments act
#> 4010 declaratory judgments act
#> 4011 declaratory judgments act
#> 4012 declaratory judgments act
#> 4013 declaratory judgments act
#> 4014 declaratory judgments act
#> 4015 declaratory judgments act
#> 4016 declaratory judgments act
#> 4017 declaratory judgments act
#> 4018 denlic
#> 4019 denlic
#> 4020 denlic
#> 4021 denlic
#> 4022 denlic
#> 4023 denlic
#> 4024 denlic
#> 4025 denlic
#> 4026 denlic
#> 4027 denlic
#> 4028 denlic
#> 4029 denlic
#> 4030 denlic
#> 4031 denlic
#> 4032 denlic
#> 4033 denlic
#> 4034 denlic
#> 4035 denlic
#> 4036 denlic
#> 4037 denlic
#> 4038 denlic
#> 4039 denlic
#> 4040 denlic
#> 4041 denlic
#> 4042 denlic
#> 4043 denlic
#> 4044 denlic
#> 4045 denlic
#> 4046 denlic
#> 4047 denlic
#> 4048 denlic
#> 4049 denlic
#> 4050 denlic
#> 4051 denlic
#> 4052 denlic
#> 4053 denlic
#> 4054 denlic
#> 4055 denlic
#> 4056 denlic
#> 4057 denlic
#> 4058 denlic
#> 4059 denlic
#> 4060 denlic
#> 4061 denlic
#> 4062 denlic
#> 4063 denlic
#> 4064 denlic
#> 4065 denlic
#> 4066 deployed parents custody and visitation act
#> 4067 deployed parents custody and visitation act
#> 4068 deployed parents custody and visitation act
#> 4069 deployed parents custody and visitation act
#> 4070 deployed parents custody and visitation act
#> 4071 deployed parents custody and visitation act
#> 4072 deployed parents custody and visitation act
#> 4073 deployed parents custody and visitation act
#> 4074 deployed parents custody and visitation act
#> 4075 deployed parents custody and visitation act
#> 4076 deployed parents custody and visitation act
#> 4077 deployed parents custody and visitation act
#> 4078 determination of death act
#> 4079 determination of death act
#> 4080 determination of death act
#> 4081 determination of death act
#> 4082 determination of death act
#> 4083 determination of death act
#> 4084 determination of death act
#> 4085 determination of death act
#> 4086 determination of death act
#> 4087 determination of death act
#> 4088 determination of death act
#> 4089 determination of death act
#> 4090 determination of death act
#> 4091 determination of death act
#> 4092 determination of death act
#> 4093 determination of death act
#> 4094 determination of death act
#> 4095 determination of death act
#> 4096 determination of death act
#> 4097 determination of death act
#> 4098 determination of death act
#> 4099 determination of death act
#> 4100 determination of death act
#> 4101 determination of death act
#> 4102 determination of death act
#> 4103 determination of death act
#> 4104 determination of death act
#> 4105 determination of death act
#> 4106 determination of death act
#> 4107 determination of death act
#> 4108 determination of death act
#> 4109 determination of death act
#> 4110 determination of death act
#> 4111 determination of death act
#> 4112 determination of death act
#> 4113 dev_s1
#> 4114 dev_s1
#> 4115 dev_s1
#> 4116 dev_s1
#> 4117 dev_s1
#> 4118 dev_s1
#> 4119 dev_s1
#> 4120 dev_s1
#> 4121 dev_s1
#> 4122 dev_s1
#> 4123 dev_s1
#> 4124 dev_s1
#> 4125 dev_s1
#> 4126 dev_s1
#> 4127 dev_s1
#> 4128 dev_s1
#> 4129 dev_s1
#> 4130 dev_s10
#> 4131 dev_s10
#> 4132 dev_s10
#> 4133 dev_s10
#> 4134 dev_s10
#> 4135 dev_s10
#> 4136 dev_s2
#> 4137 dev_s2
#> 4138 dev_s2
#> 4139 dev_s2
#> 4140 dev_s2
#> 4141 dev_s2
#> 4142 dev_s3
#> 4143 dev_s3
#> 4144 dev_s3
#> 4145 dev_s3
#> 4146 dev_s3
#> 4147 dev_s3
#> 4148 dev_s3
#> 4149 dev_s4
#> 4150 dev_s4
#> 4151 dev_s4
#> 4152 dev_s4
#> 4153 dev_s4
#> 4154 dev_s4
#> 4155 dev_s4
#> 4156 dev_s4
#> 4157 dev_s4
#> 4158 dev_s4
#> 4159 dev_s4
#> 4160 dev_s4
#> 4161 dev_s4
#> 4162 dev_s5
#> 4163 dev_s5
#> 4164 dev_s5
#> 4165 dev_s6
#> 4166 dev_s6
#> 4167 dev_s6
#> 4168 dev_s7
#> 4169 dev_s7
#> 4170 dev_s7
#> 4171 dev_s8
#> 4172 dev_s8
#> 4173 dev_s9
#> 4174 dev_s9
#> 4175 dev_s9
#> 4176 dev_s9
#> 4177 dev_s9
#> 4178 dev_s9
#> 4179 dev_s9
#> 4180 dirdem
#> 4181 dirdem
#> 4182 dirdem
#> 4183 dirdem
#> 4184 dirdem
#> 4185 dirdem
#> 4186 dirdem
#> 4187 dirdem
#> 4188 dirdem
#> 4189 dirdem
#> 4190 dirdem
#> 4191 dirdem
#> 4192 dirdem
#> 4193 dirdem
#> 4194 dirdem
#> 4195 dirdem
#> 4196 dirdem
#> 4197 dirdem
#> 4198 dirdem
#> 4199 dirdem
#> 4200 dirdem
#> 4201 dirdem
#> 4202 dirdem
#> 4203 dirdem
#> 4204 dirdem
#> 4205 dirdem
#> 4206 dirprim
#> 4207 dirprim
#> 4208 dirprim
#> 4209 dirprim
#> 4210 dirprim
#> 4211 dirprim
#> 4212 dirprim
#> 4213 dirprim
#> 4214 dirprim
#> 4215 dirprim
#> 4216 dirprim
#> 4217 dirprim
#> 4218 dirprim
#> 4219 dirprim
#> 4220 dirprim
#> 4221 dirprim
#> 4222 dirprim
#> 4223 dirprim
#> 4224 dirprim
#> 4225 dirprim
#> 4226 dirprim
#> 4227 dirprim
#> 4228 dirprim
#> 4229 dirprim
#> 4230 dirprim
#> 4231 dirprim
#> 4232 dirprim
#> 4233 dirprim
#> 4234 dirprim
#> 4235 dirprim
#> 4236 dirprim
#> 4237 dirprim
#> 4238 dirprim
#> 4239 dirprim
#> 4240 dirprim
#> 4241 dirprim
#> 4242 dirprim
#> 4243 dirprim
#> 4244 dirprim
#> 4245 dirprim
#> 4246 dirprim
#> 4247 dirprim
#> 4248 dirprim
#> 4249 dirprim
#> 4250 dirprim
#> 4251 dirprim
#> 4252 dirprim
#> 4253 dirprim
#> 4254 disclaimer of property interests act
#> 4255 disclaimer of property interests act
#> 4256 disclaimer of property interests act
#> 4257 disclaimer of property interests act
#> 4258 disclaimer of property interests act
#> 4259 disclaimer of property interests act
#> 4260 disclaimer of property interests act
#> 4261 disclaimer of property interests act
#> 4262 disclaimer of property interests act
#> 4263 disclaimer of property interests act
#> 4264 disclaimer of property interests act
#> 4265 disclaimer of property interests act
#> 4266 disclaimer of property interests act
#> 4267 disclaimer of property interests act
#> 4268 disclaimer of property interests act
#> 4269 disclaimer of property interests act
#> 4270 disclaimer of property interests act
#> 4271 disclaimer of property interests act (1973)
#> 4272 disclaimer of property interests act (1973)
#> 4273 disclaimer of property interests act (1973)
#> 4274 disclaimer of property interests act (1973)
#> 4275 disclaimer of property interests act (1973)
#> 4276 disclaimer of property interests act (1973)
#> 4277 disclaimer of property interests act (1973)
#> 4278 disclaimer of property interests act (1973)
#> 4279 disclaimer of property interests act (1973)
#> 4280 discovery of electronically stored information, rules relating to
#> 4281 discovery of electronically stored information, rules relating to
#> 4282 discrenot
#> 4283 discrenot
#> 4284 discrenot
#> 4285 discrenot
#> 4286 discrenot
#> 4287 discrenot
#> 4288 discrenot
#> 4289 discrenot
#> 4290 disposition of community property rights at death act (1971)
#> 4291 disposition of community property rights at death act (1971)
#> 4292 disposition of community property rights at death act (1971)
#> 4293 disposition of community property rights at death act (1971)
#> 4294 disposition of community property rights at death act (1971)
#> 4295 disposition of community property rights at death act (1971)
#> 4296 disposition of community property rights at death act (1971)
#> 4297 disposition of community property rights at death act (1971)
#> 4298 disposition of community property rights at death act (1971)
#> 4299 disposition of community property rights at death act (1971)
#> 4300 disposition of community property rights at death act (1971)
#> 4301 disposition of community property rights at death act (1971)
#> 4302 disposition of community property rights at death act (1971)
#> 4303 disposition of community property rights at death act (1971)
#> 4304 disposition of community property rights at death act (1971)
#> 4305 disposition of community property rights at death act (1971)
#> 4306 division of income for tax purposes
#> 4307 division of income for tax purposes
#> 4308 division of income for tax purposes
#> 4309 division of income for tax purposes
#> 4310 division of income for tax purposes
#> 4311 division of income for tax purposes
#> 4312 division of income for tax purposes
#> 4313 division of income for tax purposes
#> 4314 division of income for tax purposes
#> 4315 division of income for tax purposes
#> 4316 division of income for tax purposes
#> 4317 division of income for tax purposes
#> 4318 division of income for tax purposes
#> 4319 division of income for tax purposes
#> 4320 division of income for tax purposes
#> 4321 division of income for tax purposes
#> 4322 division of income for tax purposes
#> 4323 division of income for tax purposes
#> 4324 division of income for tax purposes
#> 4325 division of income for tax purposes
#> 4326 division of income for tax purposes
#> 4327 division of income for tax purposes
#> 4328 division of income for tax purposes
#> 4329 dnafelon
#> 4330 dnafelon
#> 4331 dnafelon
#> 4332 dnafelon
#> 4333 dnafelon
#> 4334 dnafelon
#> 4335 dnafelon
#> 4336 dnafelon
#> 4337 dnafelon
#> 4338 dnafelon
#> 4339 dnafelon
#> 4340 dnafelon
#> 4341 dnafelon
#> 4342 dnafelon
#> 4343 dnafelon
#> 4344 dnafelon
#> 4345 dnafelon
#> 4346 dnafelon
#> 4347 dnafelon
#> 4348 dnafelon
#> 4349 dnafelon
#> 4350 dnafelon
#> 4351 dnafelon
#> 4352 dnafelon
#> 4353 dnafelon
#> 4354 dnafelon
#> 4355 dnafelon
#> 4356 dnafelon
#> 4357 dnafelon
#> 4358 dnafelon
#> 4359 dnafelon
#> 4360 dnafelon
#> 4361 dnaforexon
#> 4362 dnaforexon
#> 4363 dnaforexon
#> 4364 dnaforexon
#> 4365 dnaforexon
#> 4366 dnaforexon
#> 4367 dnaforexon
#> 4368 dnaforexon
#> 4369 dnaforexon
#> 4370 dnaforexon
#> 4371 dnaforexon
#> 4372 dnaforexon
#> 4373 dnaforexon
#> 4374 dnaforexon
#> 4375 dnaforexon
#> 4376 dnaforexon
#> 4377 dnaforexon
#> 4378 dnaforexon
#> 4379 dnaforexon
#> 4380 dnaforexon
#> 4381 dnaforexon
#> 4382 dnaforexon
#> 4383 dnaforexon
#> 4384 dnaforexon
#> 4385 dnaforexon
#> 4386 dnaforexon
#> 4387 dnaforexon
#> 4388 dnaforexon
#> 4389 dnaforexon
#> 4390 dnaforexon
#> 4391 dnaforexon
#> 4392 dnaforexon
#> 4393 dnaforexon
#> 4394 dnaforexon
#> 4395 dnaforexon
#> 4396 dnaforexon
#> 4397 dnaforexon
#> 4398 dnaforexon
#> 4399 dnaforexon
#> 4400 dnaforexon
#> 4401 dnaforexon
#> 4402 dnaforexon
#> 4403 dnaforexon
#> 4404 dnaforexon
#> 4405 dormant mineral interests act, model
#> 4406 dormant mineral interests act, model
#> 4407 driver license compact
#> 4408 driver license compact
#> 4409 driver license compact
#> 4410 driver license compact
#> 4411 driver license compact
#> 4412 driver license compact
#> 4413 driver license compact
#> 4414 driver license compact
#> 4415 driver license compact
#> 4416 driver license compact
#> 4417 driver license compact
#> 4418 driver license compact
#> 4419 driver license compact
#> 4420 driver license compact
#> 4421 driver license compact
#> 4422 driver license compact
#> 4423 driver license compact
#> 4424 driver license compact
#> 4425 driver license compact
#> 4426 driver license compact
#> 4427 driver license compact
#> 4428 driver license compact
#> 4429 driver license compact
#> 4430 driver license compact
#> 4431 driver license compact
#> 4432 driver license compact
#> 4433 driver license compact
#> 4434 driver license compact
#> 4435 driver license compact
#> 4436 driver license compact
#> 4437 driver license compact
#> 4438 driver license compact
#> 4439 driver license compact
#> 4440 driver license compact
#> 4441 driver license compact
#> 4442 driver license compact
#> 4443 driver license compact
#> 4444 driver license compact
#> 4445 driver license compact
#> 4446 driver license compact
#> 4447 driver license compact
#> 4448 driver license compact
#> 4449 driver license compact
#> 4450 driver license compact
#> 4451 drugs_boehmke_statrapag
#> 4452 drugs_boehmke_statrapag
#> 4453 drugs_boehmke_statrapag
#> 4454 drugs_boehmke_statrapag
#> 4455 drugs_boehmke_statrapag
#> 4456 drugs_boehmke_statrapag
#> 4457 drugs_boehmke_statrapag
#> 4458 drugs_boehmke_statrapag
#> 4459 drugs_boehmke_statrapag
#> 4460 drugs_boehmke_statrapag
#> 4461 drugs_boehmke_statrapag
#> 4462 drugs_boehmke_statrapag
#> 4463 drugs_boehmke_statrapag
#> 4464 drugs_boehmke_statrapag
#> 4465 drugs_boehmke_statrapag
#> 4466 drugs_boehmke_statrapag
#> 4467 drugs_boehmke_statrapag
#> 4468 drugs_boehmke_statrapag
#> 4469 drugs_boehmke_statrapag
#> 4470 drugs_boehmke_statrapag
#> 4471 drugs_boehmke_statrapag
#> 4472 drugs_boehmke_statrapag
#> 4473 drugs_boehmke_statrapag
#> 4474 drugs_boehmke_statrapag
#> 4475 drugs_boehmke_statrapag
#> 4476 drugs_boehmke_statrapag
#> 4477 drugs_boehmke_statrapag
#> 4478 drugs_boehmke_statrapag
#> 4479 drugs_boehmke_statrapag
#> 4480 drugs_boehmke_statrapag
#> 4481 drugs_boehmke_statrapag
#> 4482 drugs_boehmke_statrapag
#> 4483 drugs_boehmke_statrapag
#> 4484 drugs_boehmke_statrapag
#> 4485 drugs_boehmke_statrapag
#> 4486 drugs_boehmke_statrapag
#> 4487 drugs_boehmke_statrapag
#> 4488 drugs_boehmke_statrapag
#> 4489 drugs_boehmke_statrapag
#> 4490 drugs_boehmke_statrapag
#> 4491 drugs_boehmke_statrapag
#> 4492 drugs_boehmke_zeroto
#> 4493 drugs_boehmke_zeroto
#> 4494 drugs_boehmke_zeroto
#> 4495 drugs_boehmke_zeroto
#> 4496 drugs_boehmke_zeroto
#> 4497 drugs_boehmke_zeroto
#> 4498 drugs_boehmke_zeroto
#> 4499 drugs_boehmke_zeroto
#> 4500 drugs_boehmke_zeroto
#> 4501 drugs_boehmke_zeroto
#> 4502 drugs_boehmke_zeroto
#> 4503 drugs_boehmke_zeroto
#> 4504 drugs_boehmke_zeroto
#> 4505 drugs_boehmke_zeroto
#> 4506 drugs_boehmke_zeroto
#> 4507 drugs_boehmke_zeroto
#> 4508 drugs_boehmke_zeroto
#> 4509 drugs_boehmke_zeroto
#> 4510 drugs_boehmke_zeroto
#> 4511 drugs_boehmke_zeroto
#> 4512 drugs_boehmke_zeroto
#> 4513 drugs_boehmke_zeroto
#> 4514 drugs_boehmke_zeroto
#> 4515 drugs_boehmke_zeroto
#> 4516 drugs_boehmke_zeroto
#> 4517 drugs_marijuana_decriminalizati
#> 4518 drugs_marijuana_decriminalizati
#> 4519 drugs_marijuana_decriminalizati
#> 4520 drugs_marijuana_decriminalizati
#> 4521 drugs_marijuana_decriminalizati
#> 4522 drugs_marijuana_decriminalizati
#> 4523 drugs_marijuana_decriminalizati
#> 4524 drugs_marijuana_decriminalizati
#> 4525 drugs_marijuana_decriminalizati
#> 4526 drugs_marijuana_decriminalizati
#> 4527 drugs_marijuana_decriminalizati
#> 4528 drugs_marijuana_decriminalizati
#> 4529 drugs_marijuana_decriminalizati
#> 4530 drugs_marijuana_decriminalizati
#> 4531 drugs_marijuana_decriminalizati
#> 4532 drugs_marijuana_decriminalizati
#> 4533 drugs_marijuana_decriminalizati
#> 4534 drugs_medical_marijuan
#> 4535 drugs_medical_marijuan
#> 4536 drugs_medical_marijuan
#> 4537 drugs_medical_marijuan
#> 4538 drugs_medical_marijuan
#> 4539 drugs_medical_marijuan
#> 4540 drugs_medical_marijuan
#> 4541 drugs_medical_marijuan
#> 4542 drugs_medical_marijuan
#> 4543 drugs_medical_marijuan
#> 4544 drugs_medical_marijuan
#> 4545 drugs_medical_marijuan
#> 4546 drugs_medical_marijuan
#> 4547 drugs_medical_marijuan
#> 4548 drugs_medical_marijuan
#> 4549 drugs_medical_marijuan
#> 4550 drugs_medical_marijuan
#> 4551 drugs_medical_marijuan
#> 4552 drugs_medical_marijuan
#> 4553 drugs_smoking_ban_restaurant
#> 4554 drugs_smoking_ban_restaurant
#> 4555 drugs_smoking_ban_restaurant
#> 4556 drugs_smoking_ban_restaurant
#> 4557 drugs_smoking_ban_restaurant
#> 4558 drugs_smoking_ban_restaurant
#> 4559 drugs_smoking_ban_restaurant
#> 4560 drugs_smoking_ban_restaurant
#> 4561 drugs_smoking_ban_restaurant
#> 4562 drugs_smoking_ban_restaurant
#> 4563 drugs_smoking_ban_restaurant
#> 4564 drugs_smoking_ban_restaurant
#> 4565 drugs_smoking_ban_restaurant
#> 4566 drugs_smoking_ban_restaurant
#> 4567 drugs_smoking_ban_restaurant
#> 4568 drugs_smoking_ban_restaurant
#> 4569 drugs_smoking_ban_restaurant
#> 4570 drugs_smoking_ban_restaurant
#> 4571 drugs_smoking_ban_restaurant
#> 4572 drugs_smoking_ban_restaurant
#> 4573 drugs_smoking_ban_restaurant
#> 4574 drugs_smoking_ban_restaurant
#> 4575 drugs_smoking_ban_restaurant
#> 4576 drugs_smoking_ban_restaurant
#> 4577 drugs_smoking_ban_restaurant
#> 4578 drugs_smoking_ban_restaurant
#> 4579 drugs_smoking_ban_restaurant
#> 4580 drugs_smoking_ban_restaurant
#> 4581 drugs_smoking_ban_restaurant
#> 4582 drugs_smoking_ban_restaurant
#> 4583 drugs_smoking_ban_restaurant
#> 4584 drugs_smoking_ban_restaurant
#> 4585 drugs_smoking_ban_restaurant
#> 4586 drugs_smoking_ban_restaurant
#> 4587 drugs_smoking_ban_restaurant
#> 4588 drugs_smoking_ban_workplace
#> 4589 drugs_smoking_ban_workplace
#> 4590 drugs_smoking_ban_workplace
#> 4591 drugs_smoking_ban_workplace
#> 4592 drugs_smoking_ban_workplace
#> 4593 drugs_smoking_ban_workplace
#> 4594 drugs_smoking_ban_workplace
#> 4595 drugs_smoking_ban_workplace
#> 4596 drugs_smoking_ban_workplace
#> 4597 drugs_smoking_ban_workplace
#> 4598 drugs_smoking_ban_workplace
#> 4599 drugs_smoking_ban_workplace
#> 4600 drugs_smoking_ban_workplace
#> 4601 drugs_smoking_ban_workplace
#> 4602 drugs_smoking_ban_workplace
#> 4603 drugs_smoking_ban_workplace
#> 4604 drugs_smoking_ban_workplace
#> 4605 drugs_smoking_ban_workplace
#> 4606 drugs_smoking_ban_workplace
#> 4607 drugs_smoking_ban_workplace
#> 4608 drugs_smoking_ban_workplace
#> 4609 drugs_smoking_ban_workplace
#> 4610 drugs_smoking_ban_workplace
#> 4611 drugs_smoking_ban_workplace
#> 4612 drugs_smoking_ban_workplace
#> 4613 drugs_smoking_ban_workplace
#> 4614 drugs_smoking_ban_workplace
#> 4615 drugs_smoking_ban_workplace
#> 4616 drugs_smoking_ban_workplace
#> 4617 drugs_smoking_ban_workplace
#> 4618 drugtest
#> 4619 drugtest
#> 4620 drugtest
#> 4621 drugtest
#> 4622 drugtest
#> 4623 drugtest
#> 4624 drugtest
#> 4625 drugtest
#> 4626 drugtest
#> 4627 drugtest
#> 4628 drugtest
#> 4629 drugtest
#> 4630 drugtest
#> 4631 drugtest
#> 4632 drugtest
#> 4633 drugtest
#> 4634 drugtest
#> 4635 drugtest
#> 4636 drugtest
#> 4637 drugtest
#> 4638 drugtest
#> 4639 drugtest
#> 4640 drugtest
#> 4641 drugtest
#> 4642 drugtest
#> 4643 drugtest
#> 4644 dual_enroll
#> 4645 dual_enroll
#> 4646 dual_enroll
#> 4647 dual_enroll
#> 4648 dual_enroll
#> 4649 dual_enroll
#> 4650 dual_enroll
#> 4651 dual_enroll
#> 4652 dual_enroll
#> 4653 dual_enroll
#> 4654 dual_enroll
#> 4655 dual_enroll
#> 4656 dual_enroll
#> 4657 dual_enroll
#> 4658 dual_enroll
#> 4659 dual_enroll
#> 4660 dual_enroll
#> 4661 dual_enroll
#> 4662 dual_enroll
#> 4663 dual_enroll
#> 4664 dual_enroll
#> 4665 dual_enroll
#> 4666 dual_enroll
#> 4667 dual_enroll
#> 4668 dual_enroll
#> 4669 dual_enroll
#> 4670 dual_enroll
#> 4671 dual_enroll
#> 4672 dual_enroll
#> 4673 dual_enroll
#> 4674 dual_enroll
#> 4675 dual_enroll
#> 4676 dual_enroll
#> 4677 dual_enroll
#> 4678 dual_enroll
#> 4679 dual_enroll
#> 4680 dual_enroll
#> 4681 dual_enroll
#> 4682 dual_enroll
#> 4683 dui
#> 4684 dui
#> 4685 dui
#> 4686 dui
#> 4687 dui
#> 4688 dui
#> 4689 dui
#> 4690 dui
#> 4691 dui
#> 4692 dui
#> 4693 dui
#> 4694 dui
#> 4695 dui
#> 4696 dui
#> 4697 dui
#> 4698 dui
#> 4699 dui
#> 4700 dui
#> 4701 dui
#> 4702 dui
#> 4703 dui
#> 4704 dui
#> 4705 dui
#> 4706 dui
#> 4707 dui
#> 4708 dui
#> 4709 dui
#> 4710 dui
#> 4711 dui
#> 4712 dui
#> 4713 dui
#> 4714 dui
#> 4715 dui
#> 4716 dui
#> 4717 dui
#> 4718 dui
#> 4719 dui
#> 4720 dui
#> 4721 dui
#> 4722 dui
#> 4723 dui
#> 4724 dui
#> 4725 dui
#> 4726 dui
#> 4727 dui
#> 4728 dui
#> 4729 dui
#> 4730 dui
#> 4731 dui
#> 4732 dui
#> 4733 dui08
#> 4734 dui08
#> 4735 dui08
#> 4736 dui08
#> 4737 dui08
#> 4738 dui08
#> 4739 dui08
#> 4740 dui08
#> 4741 dui08
#> 4742 dui08
#> 4743 dui08
#> 4744 dui08
#> 4745 dui08
#> 4746 dui08
#> 4747 dui08
#> 4748 dui08
#> 4749 dui08
#> 4750 dui08
#> 4751 dui08
#> 4752 dui08
#> 4753 dui08
#> 4754 dui08
#> 4755 dui08
#> 4756 dui08
#> 4757 dui08
#> 4758 durable power of attorney
#> 4759 durable power of attorney
#> 4760 durable power of attorney
#> 4761 durable power of attorney
#> 4762 durable power of attorney
#> 4763 durable power of attorney
#> 4764 durable power of attorney
#> 4765 durable power of attorney
#> 4766 durable power of attorney
#> 4767 durable power of attorney
#> 4768 durable power of attorney
#> 4769 durable power of attorney
#> 4770 durable power of attorney
#> 4771 durable power of attorney
#> 4772 durable power of attorney
#> 4773 durable power of attorney
#> 4774 durable power of attorney
#> 4775 duties to persons with medical id devices
#> 4776 duties to persons with medical id devices
#> 4777 duties to persons with medical id devices
#> 4778 duties to persons with medical id devices
#> 4779 duties to persons with medical id devices
#> 4780 duties to persons with medical id devices
#> 4781 dwi reform
#> 4782 dwi reform
#> 4783 dwi reform
#> 4784 dwi reform
#> 4785 dwi reform
#> 4786 dwi reform
#> 4787 dwi reform
#> 4788 dwi reform
#> 4789 dwi reform
#> 4790 dwi reform
#> 4791 dwi reform
#> 4792 dwi reform
#> 4793 dwi reform
#> 4794 dwi reform
#> 4795 dwi reform
#> 4796 dwi reform
#> 4797 dwi reform
#> 4798 dwi reform
#> 4799 dwi reform
#> 4800 dwi reform
#> 4801 dwi reform
#> 4802 dwi reform
#> 4803 dwi reform
#> 4804 dwi reform
#> 4805 dwi reform
#> 4806 dwi reform
#> 4807 dwi reform
#> 4808 dwi reform
#> 4809 dwi reform
#> 4810 dwi reform
#> 4811 dwi reform
#> 4812 earlvot
#> 4813 earlvot
#> 4814 earlvot
#> 4815 earlvot
#> 4816 earlvot
#> 4817 earlvot
#> 4818 earlvot
#> 4819 earlvot
#> 4820 earlvot
#> 4821 earlvot
#> 4822 earlvot
#> 4823 earlvot
#> 4824 earlvot
#> 4825 earlvot
#> 4826 earlvot
#> 4827 earned_income_taxcredi
#> 4828 earned_income_taxcredi
#> 4829 earned_income_taxcredi
#> 4830 earned_income_taxcredi
#> 4831 earned_income_taxcredi
#> 4832 earned_income_taxcredi
#> 4833 earned_income_taxcredi
#> 4834 earned_income_taxcredi
#> 4835 earned_income_taxcredi
#> 4836 earned_income_taxcredi
#> 4837 earned_income_taxcredi
#> 4838 earned_income_taxcredi
#> 4839 earned_income_taxcredi
#> 4840 earned_income_taxcredi
#> 4841 earned_income_taxcredi
#> 4842 earned_income_taxcredi
#> 4843 earned_income_taxcredi
#> 4844 earned_income_taxcredi
#> 4845 earned_income_taxcredi
#> 4846 earned_income_taxcredi
#> 4847 earned_income_taxcredi
#> 4848 earned_income_taxcredi
#> 4849 earned_income_taxcredi
#> 4850 earned_income_taxcredi
#> 4851 econdev
#> 4852 econdev
#> 4853 econdev
#> 4854 econdev
#> 4855 econdev
#> 4856 econdev
#> 4857 econdev
#> 4858 econdev
#> 4859 econdev
#> 4860 econdev
#> 4861 econdev
#> 4862 econdev
#> 4863 econdev
#> 4864 econdev
#> 4865 econdev
#> 4866 econdev
#> 4867 econdev
#> 4868 econdev
#> 4869 econdev
#> 4870 econdev
#> 4871 econdev
#> 4872 econdev
#> 4873 econdev
#> 4874 econdev
#> 4875 education
#> 4876 education
#> 4877 education
#> 4878 education
#> 4879 education
#> 4880 education
#> 4881 education
#> 4882 education
#> 4883 education
#> 4884 education
#> 4885 education
#> 4886 education
#> 4887 education
#> 4888 education
#> 4889 education_corporal_punishment_b
#> 4890 education_corporal_punishment_b
#> 4891 education_corporal_punishment_b
#> 4892 education_corporal_punishment_b
#> 4893 education_corporal_punishment_b
#> 4894 education_corporal_punishment_b
#> 4895 education_corporal_punishment_b
#> 4896 education_corporal_punishment_b
#> 4897 education_corporal_punishment_b
#> 4898 education_corporal_punishment_b
#> 4899 education_corporal_punishment_b
#> 4900 education_corporal_punishment_b
#> 4901 education_corporal_punishment_b
#> 4902 education_corporal_punishment_b
#> 4903 education_corporal_punishment_b
#> 4904 education_corporal_punishment_b
#> 4905 education_corporal_punishment_b
#> 4906 education_corporal_punishment_b
#> 4907 education_corporal_punishment_b
#> 4908 education_corporal_punishment_b
#> 4909 education_corporal_punishment_b
#> 4910 education_corporal_punishment_b
#> 4911 education_corporal_punishment_b
#> 4912 education_corporal_punishment_b
#> 4913 education_corporal_punishment_b
#> 4914 education_corporal_punishment_b
#> 4915 education_corporal_punishment_b
#> 4916 education_corporal_punishment_b
#> 4917 education_corporal_punishment_b
#> 4918 education_teacher_cert_elementa
#> 4919 education_teacher_cert_elementa
#> 4920 education_teacher_cert_elementa
#> 4921 education_teacher_cert_elementa
#> 4922 education_teacher_cert_elementa
#> 4923 education_teacher_cert_elementa
#> 4924 education_teacher_cert_elementa
#> 4925 education_teacher_cert_elementa
#> 4926 education_teacher_cert_elementa
#> 4927 education_teacher_cert_elementa
#> 4928 education_teacher_cert_elementa
#> 4929 education_teacher_cert_elementa
#> 4930 education_teacher_cert_elementa
#> 4931 education_teacher_cert_elementa
#> 4932 education_teacher_cert_elementa
#> 4933 education_teacher_cert_elementa
#> 4934 education_teacher_cert_elementa
#> 4935 education_teacher_cert_elementa
#> 4936 education_teacher_cert_elementa
#> 4937 education_teacher_cert_elementa
#> 4938 education_teacher_cert_elementa
#> 4939 education_teacher_cert_elementa
#> 4940 education_teacher_cert_elementa
#> 4941 education_teacher_cert_elementa
#> 4942 education_teacher_cert_elementa
#> 4943 education_teacher_cert_elementa
#> 4944 education_teacher_cert_elementa
#> 4945 education_teacher_cert_elementa
#> 4946 education_teacher_cert_elementa
#> 4947 education_teacher_cert_elementa
#> 4948 education_teacher_cert_elementa
#> 4949 education_teacher_cert_elementa
#> 4950 education_teacher_cert_elementa
#> 4951 education_teacher_cert_elementa
#> 4952 education_teacher_cert_elementa
#> 4953 education_teacher_cert_elementa
#> 4954 education_teacher_cert_elementa
#> 4955 education_teacher_cert_elementa
#> 4956 education_teacher_cert_elementa
#> 4957 education_teacher_cert_elementa
#> 4958 education_teacher_cert_elementa
#> 4959 education_teacher_cert_h
#> 4960 education_teacher_cert_h
#> 4961 education_teacher_cert_h
#> 4962 education_teacher_cert_h
#> 4963 education_teacher_cert_h
#> 4964 education_teacher_cert_h
#> 4965 education_teacher_cert_h
#> 4966 education_teacher_cert_h
#> 4967 education_teacher_cert_h
#> 4968 education_teacher_cert_h
#> 4969 education_teacher_cert_h
#> 4970 education_teacher_cert_h
#> 4971 education_teacher_cert_h
#> 4972 education_teacher_cert_h
#> 4973 education_teacher_cert_h
#> 4974 education_teacher_cert_h
#> 4975 education_teacher_cert_h
#> 4976 education_teacher_cert_h
#> 4977 education_teacher_cert_h
#> 4978 education_teacher_cert_h
#> 4979 education_teacher_cert_h
#> 4980 education_teacher_cert_h
#> 4981 education_teacher_cert_h
#> 4982 education_teacher_cert_h
#> 4983 education_teacher_cert_h
#> 4984 education_teacher_cert_h
#> 4985 education_teacher_cert_h
#> 4986 education_teacher_cert_h
#> 4987 education_teacher_cert_h
#> 4988 education_teacher_cert_h
#> 4989 education_teacher_cert_h
#> 4990 education_teacher_cert_h
#> 4991 education_teacher_cert_h
#> 4992 education_teacher_cert_h
#> 4993 education_teacher_cert_h
#> 4994 education_teacher_cert_h
#> 4995 education_teacher_cert_h
#> 4996 education_teacher_cert_h
#> 4997 education_teacher_cert_h
#> 4998 education_teacher_cert_h
#> 4999 education_teacher_cert_h
#> 5000 education_teacher_cert_h
#> 5001 education_teacher_cert_h
#> 5002 education_teacher_cert_h
#> 5003 education_teacher_cert_h
#> 5004 edutv
#> 5005 edutv
#> 5006 edutv
#> 5007 edutv
#> 5008 edutv
#> 5009 edutv
#> 5010 edutv
#> 5011 edutv
#> 5012 edutv
#> 5013 edutv
#> 5014 edutv
#> 5015 edutv
#> 5016 edutv
#> 5017 edutv
#> 5018 edutv
#> 5019 edutv
#> 5020 edutv
#> 5021 edutv
#> 5022 edutv
#> 5023 edutv
#> 5024 edutv
#> 5025 edutv
#> 5026 edutv
#> 5027 edutv
#> 5028 edutv
#> 5029 edutv
#> 5030 edutv
#> 5031 edutv
#> 5032 edutv
#> 5033 edutv
#> 5034 edutv
#> 5035 edutv
#> 5036 edutv
#> 5037 elecdayreg
#> 5038 elecdayreg
#> 5039 elecdayreg
#> 5040 elecdayreg
#> 5041 elecdayreg
#> 5042 elecdayreg
#> 5043 elecdayreg
#> 5044 elecdereg
#> 5045 elecdereg
#> 5046 elecdereg
#> 5047 elecdereg
#> 5048 elecdereg
#> 5049 elecdereg
#> 5050 elecdereg
#> 5051 elecdereg
#> 5052 elecdereg
#> 5053 elecdereg
#> 5054 elecdereg
#> 5055 elecdereg
#> 5056 elecdereg
#> 5057 elecdereg
#> 5058 elecdereg
#> 5059 elecdereg
#> 5060 elecdereg
#> 5061 elecdereg
#> 5062 elecdereg
#> 5063 elecdereg
#> 5064 elecdereg
#> 5065 elecdereg
#> 5066 elecdereg
#> 5067 elecdereg
#> 5068 electronic legal material act
#> 5069 electronic legal material act
#> 5070 electronic legal material act
#> 5071 electronic legal material act
#> 5072 electronic legal material act
#> 5073 electronic legal material act
#> 5074 electronic legal material act
#> 5075 electronic legal material act
#> 5076 electronic legal material act
#> 5077 electronic legal material act
#> 5078 electronic legal material act
#> 5079 electronic legal material act
#> 5080 electronic legal material act
#> 5081 electronic recordation of custodial interrogations
#> 5082 electronic recordation of custodial interrogations
#> 5083 electronic transactions act
#> 5084 electronic transactions act
#> 5085 electronic transactions act
#> 5086 electronic transactions act
#> 5087 electronic transactions act
#> 5088 electronic transactions act
#> 5089 electronic transactions act
#> 5090 electronic transactions act
#> 5091 electronic transactions act
#> 5092 electronic transactions act
#> 5093 electronic transactions act
#> 5094 electronic transactions act
#> 5095 electronic transactions act
#> 5096 electronic transactions act
#> 5097 electronic transactions act
#> 5098 electronic transactions act
#> 5099 electronic transactions act
#> 5100 electronic transactions act
#> 5101 electronic transactions act
#> 5102 electronic transactions act
#> 5103 electronic transactions act
#> 5104 electronic transactions act
#> 5105 electronic transactions act
#> 5106 electronic transactions act
#> 5107 electronic transactions act
#> 5108 electronic transactions act
#> 5109 electronic transactions act
#> 5110 electronic transactions act
#> 5111 electronic transactions act
#> 5112 electronic transactions act
#> 5113 electronic transactions act
#> 5114 electronic transactions act
#> 5115 electronic transactions act
#> 5116 electronic transactions act
#> 5117 electronic transactions act
#> 5118 electronic transactions act
#> 5119 electronic transactions act
#> 5120 electronic transactions act
#> 5121 electronic transactions act
#> 5122 electronic transactions act
#> 5123 electronic transactions act
#> 5124 electronic transactions act
#> 5125 electronic transactions act
#> 5126 electronic transactions act
#> 5127 electronic transactions act
#> 5128 electronic transactions act
#> 5129 emcont_avail
#> 5130 emcont_avail
#> 5131 emcont_avail
#> 5132 emcont_avail
#> 5133 emcont_avail
#> 5134 emcont_avail
#> 5135 emcont_avail
#> 5136 emcont_avail
#> 5137 emcont_avail
#> 5138 emcont_avail
#> 5139 emcont_avail
#> 5140 emcont_avail
#> 5141 emcont_avail
#> 5142 emcont_avail
#> 5143 emcont_avail
#> 5144 emcont_avail
#> 5145 emcont_avail
#> 5146 emcont_avail
#> 5147 emcont_avail
#> 5148 emcont_avail
#> 5149 emcont_avail
#> 5150 emcont_avail
#> 5151 emcont_avail
#> 5152 emergency management assistance compact
#> 5153 emergency management assistance compact
#> 5154 emergency management assistance compact
#> 5155 emergency management assistance compact
#> 5156 emergency management assistance compact
#> 5157 emergency management assistance compact
#> 5158 emergency management assistance compact
#> 5159 emergency management assistance compact
#> 5160 emergency management assistance compact
#> 5161 emergency management assistance compact
#> 5162 emergency management assistance compact
#> 5163 emergency management assistance compact
#> 5164 emergency management assistance compact
#> 5165 emergency management assistance compact
#> 5166 emergency management assistance compact
#> 5167 emergency management assistance compact
#> 5168 emergency management assistance compact
#> 5169 emergency management assistance compact
#> 5170 emergency management assistance compact
#> 5171 emergency management assistance compact
#> 5172 emergency management assistance compact
#> 5173 emergency management assistance compact
#> 5174 emergency management assistance compact
#> 5175 emergency management assistance compact
#> 5176 emergency management assistance compact
#> 5177 emergency management assistance compact
#> 5178 emergency management assistance compact
#> 5179 emergency management assistance compact
#> 5180 emergency management assistance compact
#> 5181 emergency management assistance compact
#> 5182 emergency management assistance compact
#> 5183 emergency management assistance compact
#> 5184 emergency management assistance compact
#> 5185 emergency management assistance compact
#> 5186 emergency management assistance compact
#> 5187 emergency management assistance compact
#> 5188 emergency management assistance compact
#> 5189 emergency management assistance compact
#> 5190 emergency management assistance compact
#> 5191 emergency management assistance compact
#> 5192 emergency management assistance compact
#> 5193 emergency management assistance compact
#> 5194 emergency management assistance compact
#> 5195 emergency management assistance compact
#> 5196 emergency management assistance compact
#> 5197 emergency management assistance compact
#> 5198 emergency management assistance compact
#> 5199 emergency management assistance compact
#> 5200 emergency medical services personnel licensure interstate compact
#> 5201 emergency volunteer health practitioners
#> 5202 emergency volunteer health practitioners
#> 5203 emergency volunteer health practitioners
#> 5204 emergency volunteer health practitioners
#> 5205 emergency volunteer health practitioners
#> 5206 emergency volunteer health practitioners
#> 5207 emergency volunteer health practitioners
#> 5208 emergency volunteer health practitioners
#> 5209 emergency volunteer health practitioners
#> 5210 emergency volunteer health practitioners
#> 5211 emergency volunteer health practitioners
#> 5212 emergency volunteer health practitioners
#> 5213 emergency volunteer health practitioners
#> 5214 emergency volunteer health practitioners
#> 5215 eminent domain code
#> 5216 eminentscholar
#> 5217 eminentscholar
#> 5218 eminentscholar
#> 5219 eminentscholar
#> 5220 eminentscholar
#> 5221 eminentscholar
#> 5222 eminentscholar
#> 5223 eminentscholar
#> 5224 eminentscholar
#> 5225 eminentscholar
#> 5226 eminentscholar
#> 5227 eminentscholar
#> 5228 eminentscholar
#> 5229 eminentscholar
#> 5230 eminentscholar
#> 5231 eminentscholar
#> 5232 eminentscholar
#> 5233 eminentscholar
#> 5234 eminentscholar
#> 5235 eminentscholar
#> 5236 enforcement of foreign judgments act
#> 5237 enforcement of foreign judgments act
#> 5238 enforcement of foreign judgments act
#> 5239 enforcement of foreign judgments act
#> 5240 enforcement of foreign judgments act
#> 5241 enforcement of foreign judgments act
#> 5242 enforcement of foreign judgments act
#> 5243 enforcement of foreign judgments act
#> 5244 enforcement of foreign judgments act
#> 5245 enforcement of foreign judgments act
#> 5246 enforcement of foreign judgments act
#> 5247 enforcement of foreign judgments act
#> 5248 enforcement of foreign judgments act
#> 5249 enforcement of foreign judgments act
#> 5250 enforcement of foreign judgments act
#> 5251 enforcement of foreign judgments act
#> 5252 enforcement of foreign judgments act
#> 5253 enforcement of foreign judgments act
#> 5254 enforcement of foreign judgments act
#> 5255 enforcement of foreign judgments act
#> 5256 enforcement of foreign judgments act
#> 5257 enforcement of foreign judgments act
#> 5258 enforcement of foreign judgments act
#> 5259 enforcement of foreign judgments act
#> 5260 enforcement of foreign judgments act
#> 5261 enforcement of foreign judgments act
#> 5262 enforcement of foreign judgments act
#> 5263 enforcement of foreign judgments act
#> 5264 enforcement of foreign judgments act
#> 5265 enforcement of foreign judgments act
#> 5266 enforcement of foreign judgments act
#> 5267 enforcement of foreign judgments act
#> 5268 enforcement of foreign judgments act
#> 5269 enforcement of foreign judgments act
#> 5270 enforcement of foreign judgments act
#> 5271 enforcement of foreign judgments act
#> 5272 enforcement of foreign judgments act
#> 5273 enforcement of foreign judgments act
#> 5274 enforcement of foreign judgments act
#> 5275 enforcement of foreign judgments act
#> 5276 enforcement of foreign judgments act
#> 5277 enforcement of foreign judgments act
#> 5278 enforcement of foreign judgments act
#> 5279 enforcement of foreign judgments act
#> 5280 enforcement of foreign judgments act
#> 5281 enforcement of foreign judgments act
#> 5282 englic
#> 5283 englic
#> 5284 englic
#> 5285 englic
#> 5286 englic
#> 5287 englic
#> 5288 englic
#> 5289 englic
#> 5290 englic
#> 5291 englic
#> 5292 englic
#> 5293 englic
#> 5294 englic
#> 5295 englic
#> 5296 englic
#> 5297 englic
#> 5298 englic
#> 5299 englic
#> 5300 englic
#> 5301 englic
#> 5302 englic
#> 5303 englic
#> 5304 englic
#> 5305 englic
#> 5306 englic
#> 5307 englic
#> 5308 englic
#> 5309 englic
#> 5310 englic
#> 5311 englic
#> 5312 englic
#> 5313 englic
#> 5314 englic
#> 5315 englic
#> 5316 englic
#> 5317 englic
#> 5318 englic
#> 5319 englic
#> 5320 englic
#> 5321 englic
#> 5322 englic
#> 5323 englic
#> 5324 englic
#> 5325 englic
#> 5326 englic
#> 5327 englic
#> 5328 englic
#> 5329 englic
#> 5330 engonly
#> 5331 engonly
#> 5332 engonly
#> 5333 engonly
#> 5334 engonly
#> 5335 engonly
#> 5336 engonly
#> 5337 engonly
#> 5338 engonly
#> 5339 engonly
#> 5340 engonly
#> 5341 engonly
#> 5342 engonly
#> 5343 engonly
#> 5344 engonly
#> 5345 engonly
#> 5346 engonly
#> 5347 engonly
#> 5348 engonly
#> 5349 engonly
#> 5350 engonly
#> 5351 engonly
#> 5352 engonly
#> 5353 engonly
#> 5354 engonly
#> 5355 engonly
#> 5356 engonly
#> 5357 engonly
#> 5358 engonly
#> 5359 engonly
#> 5360 enterzone
#> 5361 enterzone
#> 5362 enterzone
#> 5363 enterzone
#> 5364 enterzone
#> 5365 enterzone
#> 5366 enterzone
#> 5367 enterzone
#> 5368 enterzone
#> 5369 enterzone
#> 5370 enterzone
#> 5371 enterzone
#> 5372 enterzone
#> 5373 enterzone
#> 5374 enterzone
#> 5375 enterzone
#> 5376 enterzone
#> 5377 enterzone
#> 5378 enterzone
#> 5379 enterzone
#> 5380 enterzone
#> 5381 enterzone
#> 5382 enterzone
#> 5383 enterzone
#> 5384 enterzone
#> 5385 enterzone
#> 5386 enterzone
#> 5387 enterzone
#> 5388 enterzone
#> 5389 enterzone
#> 5390 enterzone
#> 5391 enterzone
#> 5392 enterzone
#> 5393 enterzone
#> 5394 enterzone
#> 5395 enterzone
#> 5396 enterzone
#> 5397 enterzone
#> 5398 entity transactions act, model (2007) (last amended 2013)
#> 5399 entity transactions act, model (2007) (last amended 2013)
#> 5400 entity transactions act, model (2007) (last amended 2013)
#> 5401 entity transactions act, model (2007) (last amended 2013)
#> 5402 entity transactions act, model (2007) (last amended 2013)
#> 5403 entity transactions act, model (2007) (last amended 2013)
#> 5404 environ
#> 5405 environ
#> 5406 environ
#> 5407 environ
#> 5408 environ
#> 5409 environ
#> 5410 environ
#> 5411 environ
#> 5412 environ
#> 5413 environ
#> 5414 environ
#> 5415 environ
#> 5416 environ
#> 5417 environ
#> 5418 environment_air_pollution_contr
#> 5419 environment_air_pollution_contr
#> 5420 environment_air_pollution_contr
#> 5421 environment_air_pollution_contr
#> 5422 environment_air_pollution_contr
#> 5423 environment_air_pollution_contr
#> 5424 environment_air_pollution_contr
#> 5425 environment_air_pollution_contr
#> 5426 environment_air_pollution_contr
#> 5427 environment_air_pollution_contr
#> 5428 environment_air_pollution_contr
#> 5429 environment_air_pollution_contr
#> 5430 environment_air_pollution_contr
#> 5431 environment_air_pollution_contr
#> 5432 environment_air_pollution_contr
#> 5433 environment_air_pollution_contr
#> 5434 environment_air_pollution_contr
#> 5435 environment_air_pollution_contr
#> 5436 environment_air_pollution_contr
#> 5437 environment_air_pollution_contr
#> 5438 environment_air_pollution_contr
#> 5439 environment_air_pollution_contr
#> 5440 environment_air_pollution_contr
#> 5441 environment_air_pollution_contr
#> 5442 environment_air_pollution_contr
#> 5443 environment_air_pollution_contr
#> 5444 environment_air_pollution_contr
#> 5445 environment_air_pollution_contr
#> 5446 environment_air_pollution_contr
#> 5447 environment_bottlebil
#> 5448 environment_bottlebil
#> 5449 environment_bottlebil
#> 5450 environment_bottlebil
#> 5451 environment_bottlebil
#> 5452 environment_bottlebil
#> 5453 environment_bottlebil
#> 5454 environment_bottlebil
#> 5455 environment_bottlebil
#> 5456 environment_bottlebil
#> 5457 environment_bottlebil
#> 5458 environment_ca_car_emissions_st
#> 5459 environment_ca_car_emissions_st
#> 5460 environment_ca_car_emissions_st
#> 5461 environment_ca_car_emissions_st
#> 5462 environment_ca_car_emissions_st
#> 5463 environment_ca_car_emissions_st
#> 5464 environment_ca_car_emissions_st
#> 5465 environment_ca_car_emissions_st
#> 5466 environment_ca_car_emissions_st
#> 5467 environment_ca_car_emissions_st
#> 5468 environment_ca_car_emissions_st
#> 5469 environment_ca_car_emissions_st
#> 5470 environment_ca_car_emissions_st
#> 5471 environment_ca_car_emissions_st
#> 5472 environment_ca_car_emissions_st
#> 5473 environment_electronic_wast
#> 5474 environment_electronic_wast
#> 5475 environment_electronic_wast
#> 5476 environment_electronic_wast
#> 5477 environment_electronic_wast
#> 5478 environment_electronic_wast
#> 5479 environment_electronic_wast
#> 5480 environment_electronic_wast
#> 5481 environment_electronic_wast
#> 5482 environment_electronic_wast
#> 5483 environment_electronic_wast
#> 5484 environment_electronic_wast
#> 5485 environment_electronic_wast
#> 5486 environment_electronic_wast
#> 5487 environment_electronic_wast
#> 5488 environment_electronic_wast
#> 5489 environment_electronic_wast
#> 5490 environment_electronic_wast
#> 5491 environment_electronic_wast
#> 5492 environment_electronic_wast
#> 5493 environment_electronic_wast
#> 5494 environment_electronic_wast
#> 5495 environment_electronic_wast
#> 5496 environment_electronic_wast
#> 5497 environment_electronic_wast
#> 5498 environment_electronic_wast
#> 5499 environment_electronic_wast
#> 5500 environment_electronic_wast
#> 5501 environment_electronic_wast
#> 5502 environment_ghg_ca
#> 5503 environment_ghg_ca
#> 5504 environment_ghg_ca
#> 5505 environment_ghg_ca
#> 5506 environment_ghg_ca
#> 5507 environment_ghg_ca
#> 5508 environment_ghg_ca
#> 5509 environment_ghg_ca
#> 5510 environment_ghg_ca
#> 5511 environment_ghg_ca
#> 5512 environment_ghg_ca
#> 5513 environment_publicbenefit_fund
#> 5514 environment_publicbenefit_fund
#> 5515 environment_publicbenefit_fund
#> 5516 environment_publicbenefit_fund
#> 5517 environment_publicbenefit_fund
#> 5518 environment_publicbenefit_fund
#> 5519 environment_publicbenefit_fund
#> 5520 environment_publicbenefit_fund
#> 5521 environment_publicbenefit_fund
#> 5522 environment_publicbenefit_fund
#> 5523 environment_publicbenefit_fund
#> 5524 environment_publicbenefit_fund
#> 5525 environment_publicbenefit_fund
#> 5526 environment_publicbenefit_fund
#> 5527 environment_publicbenefit_fund
#> 5528 environment_publicbenefit_fund
#> 5529 environment_publicbenefit_fund
#> 5530 environment_publicbenefit_fund
#> 5531 environment_publicbenefit_fund
#> 5532 environment_publicbenefit_fund
#> 5533 environment_state_nepa
#> 5534 environment_state_nepa
#> 5535 environment_state_nepa
#> 5536 environment_state_nepa
#> 5537 environment_state_nepa
#> 5538 environment_state_nepa
#> 5539 environment_state_nepa
#> 5540 environment_state_nepa
#> 5541 environment_state_nepa
#> 5542 environment_state_nepa
#> 5543 environment_state_nepa
#> 5544 environment_state_nepa
#> 5545 environment_state_nepa
#> 5546 environment_state_nepa
#> 5547 environment_state_nepa
#> 5548 environmental covenants act
#> 5549 environmental covenants act
#> 5550 environmental covenants act
#> 5551 environmental covenants act
#> 5552 environmental covenants act
#> 5553 environmental covenants act
#> 5554 environmental covenants act
#> 5555 environmental covenants act
#> 5556 environmental covenants act
#> 5557 environmental covenants act
#> 5558 environmental covenants act
#> 5559 environmental covenants act
#> 5560 environmental covenants act
#> 5561 environmental covenants act
#> 5562 environmental covenants act
#> 5563 environmental covenants act
#> 5564 environmental covenants act
#> 5565 environmental covenants act
#> 5566 environmental covenants act
#> 5567 environmental covenants act
#> 5568 environmental covenants act
#> 5569 environmental covenants act
#> 5570 eqrightam
#> 5571 eqrightam
#> 5572 eqrightam
#> 5573 eqrightam
#> 5574 eqrightam
#> 5575 eqrightam
#> 5576 eqrightam
#> 5577 eqrightam
#> 5578 eqrightam
#> 5579 eqrightam
#> 5580 eqrightam
#> 5581 eqrightam
#> 5582 eqrightam
#> 5583 eqrightam
#> 5584 eqrightam
#> 5585 eqrightam
#> 5586 eqrightam
#> 5587 equalpay
#> 5588 equalpay
#> 5589 equalpay
#> 5590 equalpay
#> 5591 equalpay
#> 5592 equalpay
#> 5593 equalpay
#> 5594 equalpay
#> 5595 equalpay
#> 5596 equalpay
#> 5597 equalpay
#> 5598 equalpay
#> 5599 equalpay
#> 5600 equalpay
#> 5601 equalpay
#> 5602 equalpay
#> 5603 equalpay
#> 5604 equalpay
#> 5605 equalpay
#> 5606 equalpay
#> 5607 equalpay
#> 5608 equalpay
#> 5609 equalpay
#> 5610 equalpay
#> 5611 equalpay
#> 5612 equalpay
#> 5613 equalpay
#> 5614 estate tax apportionment and probate code 3-916
#> 5615 estate tax apportionment and probate code 3-916
#> 5616 estate tax apportionment and probate code 3-916
#> 5617 estate tax apportionment and probate code 3-916
#> 5618 estate tax apportionment and probate code 3-916
#> 5619 estate tax apportionment and probate code 3-916
#> 5620 estate tax apportionment and probate code 3-916
#> 5621 estate tax apportionment and probate code 3-916
#> 5622 estate tax apportionment and probate code 3-916
#> 5623 estate tax apportionment and probate code 3-916
#> 5624 estate_ta
#> 5625 estate_ta
#> 5626 estate_ta
#> 5627 estate_ta
#> 5628 estate_ta
#> 5629 estate_ta
#> 5630 estate_ta
#> 5631 estate_ta
#> 5632 estate_ta
#> 5633 estate_ta
#> 5634 estate_ta
#> 5635 estate_ta
#> 5636 estate_ta
#> 5637 estate_ta
#> 5638 estate_ta
#> 5639 estate_ta
#> 5640 estate_ta
#> 5641 estate_ta
#> 5642 estate_ta
#> 5643 estate_ta
#> 5644 estate_ta
#> 5645 estate_ta
#> 5646 ewaste
#> 5647 ewaste
#> 5648 ewaste
#> 5649 ewaste
#> 5650 ewaste
#> 5651 ewaste
#> 5652 ewaste
#> 5653 ewaste
#> 5654 ewaste
#> 5655 ewaste
#> 5656 ewaste
#> 5657 ewaste
#> 5658 ewaste
#> 5659 ewaste
#> 5660 ewaste
#> 5661 ewaste
#> 5662 ewaste
#> 5663 ewaste
#> 5664 ewaste
#> 5665 ewaste
#> 5666 ewaste
#> 5667 ewaste
#> 5668 ewaste
#> 5669 ewaste
#> 5670 ewaste
#> 5671 exemptions act, model
#> 5672 expsta
#> 5673 expsta
#> 5674 expsta
#> 5675 expsta
#> 5676 expsta
#> 5677 expsta
#> 5678 expsta
#> 5679 expsta
#> 5680 expsta
#> 5681 expsta
#> 5682 expsta
#> 5683 expsta
#> 5684 expsta
#> 5685 expsta
#> 5686 expsta
#> 5687 expsta
#> 5688 expsta
#> 5689 expsta
#> 5690 expsta
#> 5691 expsta
#> 5692 expsta
#> 5693 expsta
#> 5694 expsta
#> 5695 expsta
#> 5696 expsta
#> 5697 expsta
#> 5698 expsta
#> 5699 expsta
#> 5700 expsta
#> 5701 expsta
#> 5702 expsta
#> 5703 expsta
#> 5704 expsta
#> 5705 expsta
#> 5706 expsta
#> 5707 expsta
#> 5708 expsta
#> 5709 expsta
#> 5710 expsta
#> 5711 expsta
#> 5712 expsta
#> 5713 expsta
#> 5714 expsta
#> 5715 expsta
#> 5716 expsta
#> 5717 expsta
#> 5718 expsta
#> 5719 expsta
#> 5720 extradition and rendition act, model
#> 5721 facsimile signatures of public officials
#> 5722 facsimile signatures of public officials
#> 5723 facsimile signatures of public officials
#> 5724 facsimile signatures of public officials
#> 5725 facsimile signatures of public officials
#> 5726 facsimile signatures of public officials
#> 5727 facsimile signatures of public officials
#> 5728 facsimile signatures of public officials
#> 5729 facsimile signatures of public officials
#> 5730 facsimile signatures of public officials
#> 5731 facsimile signatures of public officials
#> 5732 facsimile signatures of public officials
#> 5733 facsimile signatures of public officials
#> 5734 facsimile signatures of public officials
#> 5735 facsimile signatures of public officials
#> 5736 facsimile signatures of public officials
#> 5737 facsimile signatures of public officials
#> 5738 facsimile signatures of public officials
#> 5739 facsimile signatures of public officials
#> 5740 facsimile signatures of public officials
#> 5741 fairemp
#> 5742 fairemp
#> 5743 fairemp
#> 5744 fairemp
#> 5745 fairemp
#> 5746 fairemp
#> 5747 fairemp
#> 5748 fairemp
#> 5749 fairemp
#> 5750 fairemp
#> 5751 fairemp
#> 5752 fairemp
#> 5753 fairemp
#> 5754 fairemp
#> 5755 fairemp
#> 5756 fairemp
#> 5757 fairemp
#> 5758 fairemp
#> 5759 fairemp
#> 5760 fairemp
#> 5761 fairemp
#> 5762 fairemp
#> 5763 fairemp
#> 5764 fairemp
#> 5765 fairemp
#> 5766 fairemp
#> 5767 fairtrade
#> 5768 fairtrade
#> 5769 fairtrade
#> 5770 fairtrade
#> 5771 fairtrade
#> 5772 fairtrade
#> 5773 fairtrade
#> 5774 fairtrade
#> 5775 fairtrade
#> 5776 fairtrade
#> 5777 fairtrade
#> 5778 fairtrade
#> 5779 fairtrade
#> 5780 fairtrade
#> 5781 fairtrade
#> 5782 fairtrade
#> 5783 fairtrade
#> 5784 fairtrade
#> 5785 fairtrade
#> 5786 fairtrade
#> 5787 fairtrade
#> 5788 fairtrade
#> 5789 fairtrade
#> 5790 fairtrade
#> 5791 fairtrade
#> 5792 fairtrade
#> 5793 fairtrade
#> 5794 fairtrade
#> 5795 fairtrade
#> 5796 fairtrade
#> 5797 fairtrade
#> 5798 fairtrade
#> 5799 fairtrade
#> 5800 fairtrade
#> 5801 fairtrade
#> 5802 fairtrade
#> 5803 fairtrade
#> 5804 fairtrade
#> 5805 fairtrade
#> 5806 fairtrade
#> 5807 fairtrade
#> 5808 fairtrade
#> 5809 fairtrade
#> 5810 fairtrade
#> 5811 faithful presidential electors act
#> 5812 faithful presidential electors act
#> 5813 faithful presidential electors act
#> 5814 faithful presidential electors act
#> 5815 famcap
#> 5816 famcap
#> 5817 famcap
#> 5818 famcap
#> 5819 famcap
#> 5820 famcap
#> 5821 famcap
#> 5822 famcap
#> 5823 famcap
#> 5824 famcap
#> 5825 famcap
#> 5826 famcap
#> 5827 famcap
#> 5828 famcap
#> 5829 famcap
#> 5830 famcap
#> 5831 famcap
#> 5832 famcap
#> 5833 famcap
#> 5834 famcap
#> 5835 famcap
#> 5836 famlim
#> 5837 famlim
#> 5838 famlim
#> 5839 famlim
#> 5840 famlim
#> 5841 famlim
#> 5842 famlim
#> 5843 famlim
#> 5844 famlim
#> 5845 famlim
#> 5846 famlim
#> 5847 famlim
#> 5848 famlim
#> 5849 famlim
#> 5850 famlim
#> 5851 famlim
#> 5852 famlim
#> 5853 famlim
#> 5854 famlim
#> 5855 famlim
#> 5856 famlim
#> 5857 famlim
#> 5858 famlim
#> 5859 famlim
#> 5860 famlim
#> 5861 famlim
#> 5862 famlim
#> 5863 famlim
#> 5864 famlim
#> 5865 famlim
#> 5866 famlim
#> 5867 famlim
#> 5868 famlim
#> 5869 famlim
#> 5870 famlim
#> 5871 famlim
#> 5872 famlim
#> 5873 famlim
#> 5874 famlim
#> 5875 famlim
#> 5876 famlim
#> 5877 famlim
#> 5878 famlim
#> 5879 famlim
#> 5880 famlim
#> 5881 famlim
#> 5882 famlim
#> 5883 famlim
#> 5884 famlim
#> 5885 famlim
#> 5886 federal lien registration act
#> 5887 federal lien registration act
#> 5888 federal lien registration act
#> 5889 federal lien registration act
#> 5890 federal lien registration act
#> 5891 federal lien registration act
#> 5892 federal lien registration act
#> 5893 federal lien registration act
#> 5894 federal lien registration act
#> 5895 federal lien registration act
#> 5896 federal lien registration act
#> 5897 federal lien registration act
#> 5898 federal lien registration act
#> 5899 federal lien registration act
#> 5900 federal lien registration act
#> 5901 federal lien registration act
#> 5902 federal lien registration act
#> 5903 federal lien registration act
#> 5904 federal lien registration act
#> 5905 federal lien registration act
#> 5906 federal lien registration act
#> 5907 federal lien registration act
#> 5908 federal lien registration act
#> 5909 federal lien registration act
#> 5910 federal lien registration act
#> 5911 federal lien registration act
#> 5912 federal lien registration act
#> 5913 federal lien registration act
#> 5914 federal lien registration act
#> 5915 federal lien registration act
#> 5916 federal lien registration act
#> 5917 federal lien registration act
#> 5918 federal lien registration act
#> 5919 federal lien registration act
#> 5920 federal lien registration act
#> 5921 federal lien registration act
#> 5922 federal lien registration act
#> 5923 fetaldispos
#> 5924 fetaldispos
#> 5925 fetaldispos
#> 5926 fetaldispos
#> 5927 fetaldispos
#> 5928 fetaldispos
#> 5929 fetaldispos
#> 5930 fetaldispos
#> 5931 fetaldispos
#> 5932 fetaldispos
#> 5933 fetaldispos
#> 5934 fetaldispos
#> 5935 fetaldispos
#> 5936 fetaldispos
#> 5937 fetaldispos
#> 5938 fetaldispos
#> 5939 fetaldispos
#> 5940 fetaldispos
#> 5941 fetaldispos
#> 5942 fetaldispos
#> 5943 fetaldispos
#> 5944 fetalheart
#> 5945 fetalheart
#> 5946 fetalhomic
#> 5947 fetalhomic
#> 5948 fetalhomic
#> 5949 fetalhomic
#> 5950 fetalhomic
#> 5951 fetalhomic
#> 5952 fetalhomic
#> 5953 fetalhomic
#> 5954 fetalhomic
#> 5955 fetalhomic
#> 5956 fetalhomic
#> 5957 fetalhomic
#> 5958 fetalhomic
#> 5959 fetalhomic
#> 5960 fetalhomic
#> 5961 fetalhomic
#> 5962 fetalhomic
#> 5963 fetalhomic
#> 5964 fetalhomic
#> 5965 fetalhomic
#> 5966 fetalhomic
#> 5967 fetalhomic
#> 5968 fetalhomic
#> 5969 fetalhomic
#> 5970 fetalhomic
#> 5971 fetalhomic
#> 5972 fetalhomic
#> 5973 fetalhomic
#> 5974 fetalhomic
#> 5975 fetalhomic
#> 5976 fetalhomic
#> 5977 fetalhomic
#> 5978 fetalhomic
#> 5979 fetalhomic
#> 5980 fetalhomic
#> 5981 fetalhomic
#> 5982 fetalpain
#> 5983 fetalpain
#> 5984 fetalpain
#> 5985 fetalpain
#> 5986 fetalpain
#> 5987 fetalpain
#> 5988 fetalpain
#> 5989 fetalpain
#> 5990 fetalpain
#> 5991 fetalpain
#> 5992 fhpriv
#> 5993 fhpriv
#> 5994 fhpriv
#> 5995 fhpriv
#> 5996 fhpriv
#> 5997 fhpriv
#> 5998 fhpriv
#> 5999 fhpriv
#> 6000 fhpriv
#> 6001 fhpriv
#> 6002 fhpriv
#> 6003 fiduciary access to digital assets act (2014)
#> 6004 fiduciary access to digital assets act, revised (2015)
#> 6005 fiduciary access to digital assets act, revised (2015)
#> 6006 fiduciary access to digital assets act, revised (2015)
#> 6007 fiduciary access to digital assets act, revised (2015)
#> 6008 fiduciary access to digital assets act, revised (2015)
#> 6009 fiduciary access to digital assets act, revised (2015)
#> 6010 fiduciary access to digital assets act, revised (2015)
#> 6011 fiduciary access to digital assets act, revised (2015)
#> 6012 fiduciary access to digital assets act, revised (2015)
#> 6013 fiduciary access to digital assets act, revised (2015)
#> 6014 fiduciary access to digital assets act, revised (2015)
#> 6015 fiduciary access to digital assets act, revised (2015)
#> 6016 fiduciary access to digital assets act, revised (2015)
#> 6017 fiduciary access to digital assets act, revised (2015)
#> 6018 fiduciary access to digital assets act, revised (2015)
#> 6019 fiduciary access to digital assets act, revised (2015)
#> 6020 fiduciary access to digital assets act, revised (2015)
#> 6021 fiduciary access to digital assets act, revised (2015)
#> 6022 fiduciary access to digital assets act, revised (2015)
#> 6023 fiduciary access to digital assets act, revised (2015)
#> 6024 fiduciary access to digital assets act, revised (2015)
#> 6025 fiduciary access to digital assets act, revised (2015)
#> 6026 fiduciary access to digital assets act, revised (2015)
#> 6027 fiduciary access to digital assets act, revised (2015)
#> 6028 fiduciary access to digital assets act, revised (2015)
#> 6029 fiduciary access to digital assets act, revised (2015)
#> 6030 fiduciary access to digital assets act, revised (2015)
#> 6031 fiduciary access to digital assets act, revised (2015)
#> 6032 fiduciary access to digital assets act, revised (2015)
#> 6033 filmtaxcredit
#> 6034 filmtaxcredit
#> 6035 filmtaxcredit
#> 6036 filmtaxcredit
#> 6037 filmtaxcredit
#> 6038 filmtaxcredit
#> 6039 filmtaxcredit
#> 6040 filmtaxcredit
#> 6041 filmtaxcredit
#> 6042 filmtaxcredit
#> 6043 filmtaxcredit
#> 6044 filmtaxcredit
#> 6045 filmtaxcredit
#> 6046 filmtaxcredit
#> 6047 filmtaxcredit
#> 6048 filmtaxcredit
#> 6049 filmtaxcredit
#> 6050 filmtaxcredit
#> 6051 filmtaxcredit
#> 6052 filmtaxcredit
#> 6053 filmtaxcredit
#> 6054 filmtaxcredit
#> 6055 filmtaxcredit
#> 6056 filmtaxcredit
#> 6057 filmtaxcredit
#> 6058 filmtaxcredit
#> 6059 filmtaxcredit
#> 6060 filmtaxcredit
#> 6061 filmtaxcredit
#> 6062 filmtaxcredit
#> 6063 filmtaxcredit
#> 6064 filmtaxcredit
#> 6065 filmtaxcredit
#> 6066 filmtaxcredit
#> 6067 filmtaxcredit
#> 6068 filmtaxcredit
#> 6069 filmtaxcredit
#> 6070 filmtaxcredit
#> 6071 filmtaxcredit
#> 6072 filmtaxcredit
#> 6073 filmtaxcredit
#> 6074 filmtaxcredit
#> 6075 filmtaxcredit
#> 6076 filmtaxcredit
#> 6077 fish
#> 6078 fish
#> 6079 fish
#> 6080 fish
#> 6081 fish
#> 6082 fish
#> 6083 fish
#> 6084 fish
#> 6085 fish
#> 6086 fish
#> 6087 fish
#> 6088 fish
#> 6089 fish
#> 6090 fish
#> 6091 fish
#> 6092 fish
#> 6093 fish
#> 6094 fish
#> 6095 fish
#> 6096 fish
#> 6097 fish
#> 6098 fish
#> 6099 fish
#> 6100 fish
#> 6101 fish
#> 6102 fish
#> 6103 fish
#> 6104 fish
#> 6105 fish
#> 6106 fish
#> 6107 fish
#> 6108 fish
#> 6109 fish
#> 6110 fish
#> 6111 fish
#> 6112 foca
#> 6113 foca
#> 6114 foca
#> 6115 foca
#> 6116 foca
#> 6117 foca
#> 6118 foca
#> 6119 foia
#> 6120 foia
#> 6121 foia
#> 6122 foia
#> 6123 foia
#> 6124 foia
#> 6125 foia
#> 6126 foia
#> 6127 foia
#> 6128 foia
#> 6129 foia
#> 6130 foia
#> 6131 foia
#> 6132 foia
#> 6133 foia
#> 6134 foia
#> 6135 foia
#> 6136 foia
#> 6137 foia
#> 6138 foia
#> 6139 foia
#> 6140 foia
#> 6141 foia
#> 6142 foia
#> 6143 foia
#> 6144 foia
#> 6145 foia
#> 6146 foia
#> 6147 foia
#> 6148 foia
#> 6149 foia
#> 6150 foia
#> 6151 foia
#> 6152 foia
#> 6153 foia
#> 6154 foia
#> 6155 foia
#> 6156 foia
#> 6157 foia
#> 6158 foia
#> 6159 foreign money claims act
#> 6160 foreign money claims act
#> 6161 foreign money claims act
#> 6162 foreign money claims act
#> 6163 foreign money claims act
#> 6164 foreign money claims act
#> 6165 foreign money claims act
#> 6166 foreign money claims act
#> 6167 foreign money claims act
#> 6168 foreign money claims act
#> 6169 foreign money claims act
#> 6170 foreign money claims act
#> 6171 foreign money claims act
#> 6172 foreign money claims act
#> 6173 foreign money claims act
#> 6174 foreign money claims act
#> 6175 foreign money claims act
#> 6176 foreign money claims act
#> 6177 foreign money claims act
#> 6178 foreign money claims act
#> 6179 foreign money judgments recognition act
#> 6180 foreign money judgments recognition act
#> 6181 foreign money judgments recognition act
#> 6182 foreign money judgments recognition act
#> 6183 foreign money judgments recognition act
#> 6184 foreign money judgments recognition act
#> 6185 foreign money judgments recognition act
#> 6186 foreign money judgments recognition act
#> 6187 foreign money judgments recognition act
#> 6188 foreign money judgments recognition act
#> 6189 foreign money judgments recognition act
#> 6190 foreign money judgments recognition act
#> 6191 foreign money judgments recognition act
#> 6192 foreign money judgments recognition act
#> 6193 foreign money judgments recognition act
#> 6194 foreign money judgments recognition act
#> 6195 foreign money judgments recognition act
#> 6196 foreign money judgments recognition act
#> 6197 foreign money judgments recognition act
#> 6198 foreign money judgments recognition act
#> 6199 foreign money judgments recognition act
#> 6200 foreign money judgments recognition act
#> 6201 foreign money judgments recognition act
#> 6202 foreign money judgments recognition act
#> 6203 foreign money judgments recognition act
#> 6204 foreign money judgments recognition act
#> 6205 foreign money judgments recognition act
#> 6206 foreign money judgments recognition act
#> 6207 foreign money judgments recognition act
#> 6208 foreign money judgments recognition act
#> 6209 foreign money judgments recognition act
#> 6210 foreign-country money judgments recognition act
#> 6211 foreign-country money judgments recognition act
#> 6212 foreign-country money judgments recognition act
#> 6213 foreign-country money judgments recognition act
#> 6214 foreign-country money judgments recognition act
#> 6215 foreign-country money judgments recognition act
#> 6216 foreign-country money judgments recognition act
#> 6217 foreign-country money judgments recognition act
#> 6218 foreign-country money judgments recognition act
#> 6219 foreign-country money judgments recognition act
#> 6220 foreign-country money judgments recognition act
#> 6221 foreign-country money judgments recognition act
#> 6222 foreign-country money judgments recognition act
#> 6223 foreign-country money judgments recognition act
#> 6224 foreign-country money judgments recognition act
#> 6225 foreign-country money judgments recognition act
#> 6226 foreign-country money judgments recognition act
#> 6227 foreign-country money judgments recognition act
#> 6228 foreign-country money judgments recognition act
#> 6229 foreign-country money judgments recognition act
#> 6230 foreign-country money judgments recognition act
#> 6231 foreign-country money judgments recognition act
#> 6232 forest
#> 6233 forest
#> 6234 forest
#> 6235 forest
#> 6236 forest
#> 6237 forest
#> 6238 forest
#> 6239 forest
#> 6240 forest
#> 6241 forest
#> 6242 forest
#> 6243 forest
#> 6244 forest
#> 6245 forest
#> 6246 forest
#> 6247 forest
#> 6248 forest
#> 6249 forest
#> 6250 forest
#> 6251 forest
#> 6252 forest
#> 6253 forest
#> 6254 forest
#> 6255 forest
#> 6256 forest
#> 6257 forest
#> 6258 forest
#> 6259 forest
#> 6260 forest
#> 6261 forest
#> 6262 forest
#> 6263 forest
#> 6264 forest
#> 6265 forest
#> 6266 forest
#> 6267 forest
#> 6268 forest
#> 6269 forest
#> 6270 forest
#> 6271 forest
#> 6272 forest
#> 6273 forest
#> 6274 forest
#> 6275 forest
#> 6276 fraudulent transfer act (1984)
#> 6277 fraudulent transfer act (1984)
#> 6278 fraudulent transfer act (1984)
#> 6279 fraudulent transfer act (1984)
#> 6280 fraudulent transfer act (1984)
#> 6281 fraudulent transfer act (1984)
#> 6282 fraudulent transfer act (1984)
#> 6283 fraudulent transfer act (1984)
#> 6284 fraudulent transfer act (1984)
#> 6285 fraudulent transfer act (1984)
#> 6286 fraudulent transfer act (1984)
#> 6287 fraudulent transfer act (1984)
#> 6288 fraudulent transfer act (1984)
#> 6289 fraudulent transfer act (1984)
#> 6290 fraudulent transfer act (1984)
#> 6291 fraudulent transfer act (1984)
#> 6292 fraudulent transfer act (1984)
#> 6293 fraudulent transfer act (1984)
#> 6294 fraudulent transfer act (1984)
#> 6295 fraudulent transfer act (1984)
#> 6296 fraudulent transfer act (1984)
#> 6297 fraudulent transfer act (1984)
#> 6298 fraudulent transfer act (1984)
#> 6299 fraudulent transfer act (1984)
#> 6300 fraudulent transfer act (1984)
#> 6301 fraudulent transfer act (1984)
#> 6302 fraudulent transfer act (1984)
#> 6303 fraudulent transfer act (1984)
#> 6304 fraudulent transfer act (1984)
#> 6305 fraudulent transfer act (1984)
#> 6306 fraudulent transfer act (1984)
#> 6307 fraudulent transfer act (1984)
#> 6308 fraudulent transfer act (1984)
#> 6309 fraudulent transfer act (1984)
#> 6310 fraudulent transfer act (1984)
#> 6311 fraudulent transfer act (1984)
#> 6312 fraudulent transfer act (1984)
#> 6313 fraudulent transfer act (1984)
#> 6314 fraudulent transfer act (1984)
#> 6315 fraudulent transfer act (1984)
#> 6316 fraudulent transfer act (1984)
#> 6317 fraudulent transfer act (1984)
#> 6318 fraudulent transfer act (1984)
#> 6319 frontpass_seatbelt
#> 6320 frontpass_seatbelt
#> 6321 frontpass_seatbelt
#> 6322 frontpass_seatbelt
#> 6323 frontpass_seatbelt
#> 6324 frontpass_seatbelt
#> 6325 frontpass_seatbelt
#> 6326 frontpass_seatbelt
#> 6327 frontpass_seatbelt
#> 6328 frontpass_seatbelt
#> 6329 frontpass_seatbelt
#> 6330 frontpass_seatbelt
#> 6331 frontpass_seatbelt
#> 6332 frontpass_seatbelt
#> 6333 frontpass_seatbelt
#> 6334 frontpass_seatbelt
#> 6335 frontpass_seatbelt
#> 6336 frontpass_seatbelt
#> 6337 frontpass_seatbelt
#> 6338 frontpass_seatbelt
#> 6339 frontpass_seatbelt
#> 6340 frontpass_seatbelt
#> 6341 frontpass_seatbelt
#> 6342 frontpass_seatbelt
#> 6343 frontpass_seatbelt
#> 6344 frontpass_seatbelt
#> 6345 funds_avail
#> 6346 funds_avail
#> 6347 funds_avail
#> 6348 funds_avail
#> 6349 funds_avail
#> 6350 funds_avail
#> 6351 fundslife
#> 6352 fundslife
#> 6353 fundslife
#> 6354 fundslife
#> 6355 fundslife
#> 6356 fundslife
#> 6357 fundslife
#> 6358 fundslife
#> 6359 fundslife
#> 6360 fundslife
#> 6361 fundslife
#> 6362 fundslife
#> 6363 fundslife
#> 6364 fundslife
#> 6365 fundslife
#> 6366 fundslife
#> 6367 fundslife
#> 6368 fundslife
#> 6369 fundslife
#> 6370 fundslife
#> 6371 fundslife
#> 6372 fundslife
#> 6373 fundslife
#> 6374 fundslife
#> 6375 fundslife
#> 6376 fundslife
#> 6377 fundslife
#> 6378 fundslife
#> 6379 fundslife
#> 6380 fundslife
#> 6381 fundslife
#> 6382 fundslife
#> 6383 fundslife
#> 6384 fundslife
#> 6385 fundslife
#> 6386 fundslife
#> 6387 fundslifehea
#> 6388 fundslifehea
#> 6389 fundslifehea
#> 6390 fundslifehea
#> 6391 fundslifehea
#> 6392 fundslifehea
#> 6393 fundslifehea
#> 6394 fundslifehea
#> 6395 fundslifehea
#> 6396 fundslifehea
#> 6397 fundslifehea
#> 6398 fundslifehea
#> 6399 fundslifehea
#> 6400 fundslifehea
#> 6401 fundslifehea
#> 6402 fundslifehea
#> 6403 fundslifehea
#> 6404 fundslifehea
#> 6405 fundslifehea
#> 6406 fundslifehea
#> 6407 fundslifehea
#> 6408 fundslifehea
#> 6409 fundslifehea
#> 6410 fundslifehea
#> 6411 fundslifehea
#> 6412 fundslifehea
#> 6413 fundslifehea
#> 6414 fundslifehea
#> 6415 fundslifehea
#> 6416 fundslifehea
#> 6417 fundslifehea
#> 6418 fundslifehea
#> 6419 fundslifehea
#> 6420 fundslifehea
#> 6421 fundslifehea
#> 6422 fundslifehea
#> 6423 fundslifehea
#> 6424 fundslifehea
#> 6425 fundslifehea
#> 6426 fundslifehea
#> 6427 fundslifehea
#> 6428 fundslifehea
#> 6429 furlough
#> 6430 furlough
#> 6431 furlough
#> 6432 furlough
#> 6433 furlough
#> 6434 furlough
#> 6435 furlough
#> 6436 furlough
#> 6437 furlough
#> 6438 furlough
#> 6439 furlough
#> 6440 furlough
#> 6441 furlough
#> 6442 furlough
#> 6443 furlough
#> 6444 furlough
#> 6445 furlough
#> 6446 furlough
#> 6447 furlough
#> 6448 furlough
#> 6449 furlough
#> 6450 furlough
#> 6451 furlough
#> 6452 furlough
#> 6453 furlough
#> 6454 furlough
#> 6455 furlough
#> 6456 furlough
#> 6457 furlough
#> 6458 furlough
#> 6459 furlough
#> 6460 furlough
#> 6461 furlough
#> 6462 furlough
#> 6463 furlough
#> 6464 furlough
#> 6465 furlough
#> 6466 furlough
#> 6467 furlough
#> 6468 furlough
#> 6469 furlough
#> 6470 furlough
#> 6471 furlough
#> 6472 furlough
#> 6473 furlough
#> 6474 furlough
#> 6475 furlough
#> 6476 furprog
#> 6477 furprog
#> 6478 furprog
#> 6479 furprog
#> 6480 furprog
#> 6481 furprog
#> 6482 furprog
#> 6483 furprog
#> 6484 furprog
#> 6485 furprog
#> 6486 furprog
#> 6487 furprog
#> 6488 furprog
#> 6489 furprog
#> 6490 furprog
#> 6491 furprog
#> 6492 furprog
#> 6493 furprog
#> 6494 furprog
#> 6495 furprog
#> 6496 furprog
#> 6497 furprog
#> 6498 furprog
#> 6499 furprog
#> 6500 furprog
#> 6501 furprog
#> 6502 furprog
#> 6503 furprog
#> 6504 furprog
#> 6505 gagrule
#> 6506 gagrule
#> 6507 gagrule
#> 6508 gagrule
#> 6509 gagrule
#> 6510 gagrule
#> 6511 gagrule
#> 6512 gagrule
#> 6513 gagrule
#> 6514 gagrule
#> 6515 gagrule
#> 6516 gagrule
#> 6517 gagrule
#> 6518 gagrule
#> 6519 gagrule
#> 6520 gagrule
#> 6521 gagrule
#> 6522 gagrule
#> 6523 gagrule
#> 6524 gagrule
#> 6525 gagrule
#> 6526 gambling_casino
#> 6527 gambling_casino
#> 6528 gambling_casino
#> 6529 gambling_casino
#> 6530 gambling_casino
#> 6531 gambling_casino
#> 6532 gambling_casino
#> 6533 gambling_casino
#> 6534 gambling_casino
#> 6535 gambling_casino
#> 6536 gambling_casino
#> 6537 gambling_casino
#> 6538 gambling_casino
#> 6539 gambling_casino
#> 6540 gambling_casino
#> 6541 gambling_casino
#> 6542 gambling_casino
#> 6543 gambling_casino
#> 6544 gambling_casino
#> 6545 gambling_casino
#> 6546 gambling_casino
#> 6547 gambling_casino
#> 6548 gambling_casino
#> 6549 gambling_lottery_adoptio
#> 6550 gambling_lottery_adoptio
#> 6551 gambling_lottery_adoptio
#> 6552 gambling_lottery_adoptio
#> 6553 gambling_lottery_adoptio
#> 6554 gambling_lottery_adoptio
#> 6555 gambling_lottery_adoptio
#> 6556 gambling_lottery_adoptio
#> 6557 gambling_lottery_adoptio
#> 6558 gambling_lottery_adoptio
#> 6559 gambling_lottery_adoptio
#> 6560 gambling_lottery_adoptio
#> 6561 gambling_lottery_adoptio
#> 6562 gambling_lottery_adoptio
#> 6563 gambling_lottery_adoptio
#> 6564 gambling_lottery_adoptio
#> 6565 gambling_lottery_adoptio
#> 6566 gambling_lottery_adoptio
#> 6567 gambling_lottery_adoptio
#> 6568 gambling_lottery_adoptio
#> 6569 gambling_lottery_adoptio
#> 6570 gambling_lottery_adoptio
#> 6571 gambling_lottery_adoptio
#> 6572 gambling_lottery_adoptio
#> 6573 gambling_lottery_adoptio
#> 6574 gambling_lottery_adoptio
#> 6575 gambling_lottery_adoptio
#> 6576 gambling_lottery_adoptio
#> 6577 gambling_lottery_adoptio
#> 6578 gambling_lottery_adoptio
#> 6579 gambling_lottery_adoptio
#> 6580 gambling_lottery_adoptio
#> 6581 gambling_lottery_adoptio
#> 6582 gambling_lottery_adoptio
#> 6583 gambling_lottery_adoptio
#> 6584 gambling_lottery_adoptio
#> 6585 gambling_lottery_adoptio
#> 6586 gambling_lottery_adoptio
#> 6587 gambling_lottery_adoptio
#> 6588 gambling_lottery_adoptio
#> 6589 gambling_lottery_adoptio
#> 6590 gambling_lottery_adoptio
#> 6591 gambling_lottery_adoptio
#> 6592 gambling_lottery_adoptio
#> 6593 gap
#> 6594 gap
#> 6595 gap
#> 6596 gap
#> 6597 gap
#> 6598 gap
#> 6599 gap
#> 6600 gastax
#> 6601 gastax
#> 6602 gastax
#> 6603 gastax
#> 6604 gastax
#> 6605 gastax
#> 6606 gastax
#> 6607 gastax
#> 6608 gastax
#> 6609 gastax
#> 6610 gastax
#> 6611 gastax
#> 6612 gastax
#> 6613 gastax
#> 6614 gastax
#> 6615 gastax
#> 6616 gastax
#> 6617 gastax
#> 6618 gastax
#> 6619 gastax
#> 6620 gastax
#> 6621 gastax
#> 6622 gastax
#> 6623 gastax
#> 6624 gastax
#> 6625 gastax
#> 6626 gastax
#> 6627 gastax
#> 6628 gastax
#> 6629 gastax
#> 6630 gastax
#> 6631 gastax
#> 6632 gastax
#> 6633 gastax
#> 6634 gastax
#> 6635 gastax
#> 6636 gastax
#> 6637 gastax
#> 6638 gastax
#> 6639 gastax
#> 6640 gastax
#> 6641 gastax
#> 6642 gastax
#> 6643 gastax
#> 6644 gastax
#> 6645 gastax
#> 6646 gastax
#> 6647 gastax
#> 6648 gay_employment_discrim_genderi
#> 6649 gay_employment_discrim_genderi
#> 6650 gay_employment_discrim_genderi
#> 6651 gay_employment_discrim_genderi
#> 6652 gay_employment_discrim_genderi
#> 6653 gay_employment_discrim_genderi
#> 6654 gay_employment_discrim_genderi
#> 6655 gay_employment_discrim_genderi
#> 6656 gay_employment_discrim_genderi
#> 6657 gay_employment_discrim_genderi
#> 6658 gay_employment_discrim_genderi
#> 6659 gay_employment_discrim_genderi
#> 6660 gay_employment_discrim_genderi
#> 6661 gay_employment_discrim_genderi
#> 6662 gay_employment_discrim_genderi
#> 6663 gay_employment_discrim_genderi
#> 6664 gay_employment_discrim_genderi
#> 6665 gay_employment_discrim_genderi
#> 6666 gayhate
#> 6667 gayhate
#> 6668 gayhate
#> 6669 gayhate
#> 6670 gayhate
#> 6671 gayhate
#> 6672 gayhate
#> 6673 gayhate
#> 6674 gayhate
#> 6675 gayhate
#> 6676 gayhate
#> 6677 gayhate
#> 6678 gayhate
#> 6679 gayhate
#> 6680 gayhate
#> 6681 gayhate
#> 6682 gayhate
#> 6683 gayhate
#> 6684 gayhate
#> 6685 gayhate
#> 6686 gayhate
#> 6687 gayhate
#> 6688 gayhate
#> 6689 gayhate
#> 6690 gayhate
#> 6691 gayhate
#> 6692 gayhate
#> 6693 gayhate
#> 6694 gayhate
#> 6695 gayhate
#> 6696 gayhate
#> 6697 gaymarban
#> 6698 gaymarban
#> 6699 gaymarban
#> 6700 gaymarban
#> 6701 gaymarban
#> 6702 gaymarban
#> 6703 gaymarban
#> 6704 gaymarban
#> 6705 gaymarban
#> 6706 gaymarban
#> 6707 gaymarban
#> 6708 gaymarban
#> 6709 gaymarban
#> 6710 gaymarban
#> 6711 gaymarban
#> 6712 gaymarban
#> 6713 gaymarban
#> 6714 gaymarban
#> 6715 gaymarban
#> 6716 gaymarban
#> 6717 gaymarban
#> 6718 gaymarban
#> 6719 gaymarban
#> 6720 gaymarban
#> 6721 gaymarban
#> 6722 gaymarban
#> 6723 gaymarban
#> 6724 gaymarban
#> 6725 gaymarban
#> 6726 gaymarban
#> 6727 gaymarban
#> 6728 gaymarban
#> 6729 gaymarban
#> 6730 gayrights_ban_sodom
#> 6731 gayrights_ban_sodom
#> 6732 gayrights_ban_sodom
#> 6733 gayrights_ban_sodom
#> 6734 gayrights_ban_sodom
#> 6735 gayrights_ban_sodom
#> 6736 gayrights_ban_sodom
#> 6737 gayrights_ban_sodom
#> 6738 gayrights_ban_sodom
#> 6739 gayrights_ban_sodom
#> 6740 gayrights_ban_sodom
#> 6741 gayrights_ban_sodom
#> 6742 gayrights_ban_sodom
#> 6743 gayrights_ban_sodom
#> 6744 gayrights_ban_sodom
#> 6745 gayrights_ban_sodom
#> 6746 gayrights_ban_sodom
#> 6747 gayrights_ban_sodom
#> 6748 gayrights_ban_sodom
#> 6749 gayrights_ban_sodom
#> 6750 gayrights_ban_sodom
#> 6751 gayrights_ban_sodom
#> 6752 gayrights_ban_sodom
#> 6753 gayrights_ban_sodom
#> 6754 gayrights_ban_sodom
#> 6755 gayrights_ban_sodom
#> 6756 gayrights_ban_sodom
#> 6757 gayrights_ban_sodom
#> 6758 gayrights_ban_sodom
#> 6759 gayrights_ban_sodom
#> 6760 gayrights_ban_sodom
#> 6761 gayrights_ban_sodom
#> 6762 gayrights_ban_sodom
#> 6763 gayrights_ban_sodom
#> 6764 gayrights_ban_sodom
#> 6765 gayrights_ban_sodom
#> 6766 gayrights_ban_sodom
#> 6767 gayrights_ban_sodom
#> 6768 gayrights_ban_sodom
#> 6769 gayrights_ban_sodom
#> 6770 gayrights_ban_sodom
#> 6771 gayrights_ban_sodom
#> 6772 gayrights_ban_sodom
#> 6773 gayrights_ban_sodom
#> 6774 gayrights_ban_sodom
#> 6775 gayrights_ban_sodom
#> 6776 gayrights_ban_sodom
#> 6777 gayrights_ban_sodom
#> 6778 gayrights_ban_sodom
#> 6779 gayrights_civilunion
#> 6780 gayrights_civilunion
#> 6781 gayrights_civilunion
#> 6782 gayrights_civilunion
#> 6783 gayrights_civilunion
#> 6784 gayrights_civilunion
#> 6785 gayrights_civilunion
#> 6786 gayrights_civilunion
#> 6787 gayrights_civilunion
#> 6788 gayrights_civilunion
#> 6789 gayrights_civilunion
#> 6790 gayrights_civilunion
#> 6791 gayrights_hatecrime
#> 6792 gayrights_hatecrime
#> 6793 gayrights_hatecrime
#> 6794 gayrights_hatecrime
#> 6795 gayrights_hatecrime
#> 6796 gayrights_hatecrime
#> 6797 gayrights_hatecrime
#> 6798 gayrights_hatecrime
#> 6799 gayrights_hatecrime
#> 6800 gayrights_hatecrime
#> 6801 gayrights_hatecrime
#> 6802 gayrights_hatecrime
#> 6803 gayrights_hatecrime
#> 6804 gayrights_hatecrime
#> 6805 gayrights_hatecrime
#> 6806 gayrights_hatecrime
#> 6807 gayrights_hatecrime
#> 6808 gayrights_hatecrime
#> 6809 gayrights_hatecrime
#> 6810 gayrights_hatecrime
#> 6811 gayrights_hatecrime
#> 6812 gayrights_hatecrime
#> 6813 gayrights_hatecrime
#> 6814 gayrights_hatecrime
#> 6815 gayrights_hatecrime
#> 6816 gayrights_hatecrime
#> 6817 gayrights_hatecrime
#> 6818 gayrights_hatecrime
#> 6819 gayrights_hatecrime
#> 6820 gayrights_hatecrime
#> 6821 gayrights_marriag
#> 6822 gayrights_marriag
#> 6823 gayrights_marriag
#> 6824 gayrights_marriag
#> 6825 gayrights_marriag
#> 6826 gayrights_marriag
#> 6827 gayrights_marriag
#> 6828 gdl
#> 6829 gdl
#> 6830 gdl
#> 6831 gdl
#> 6832 gdl
#> 6833 gdl
#> 6834 gdl
#> 6835 gdl
#> 6836 gdl
#> 6837 gdl
#> 6838 gdl
#> 6839 gdl
#> 6840 gdl
#> 6841 gdl
#> 6842 gdl
#> 6843 gdl
#> 6844 gdl
#> 6845 gdl
#> 6846 gdl
#> 6847 gdl
#> 6848 gdl
#> 6849 gdl
#> 6850 gdl
#> 6851 gdl
#> 6852 gdl
#> 6853 gdl
#> 6854 gdl
#> 6855 gdl
#> 6856 gdl
#> 6857 gdl
#> 6858 gdl
#> 6859 gdl
#> 6860 gdl
#> 6861 gdl
#> 6862 gdl
#> 6863 gdl
#> 6864 gdl
#> 6865 gdl
#> 6866 gdl
#> 6867 gdl
#> 6868 gdl
#> 6869 gdl
#> 6870 gdl
#> 6871 gdl
#> 6872 gdl
#> 6873 gdl
#> 6874 gdl
#> 6875 gdl
#> 6876 gdl
#> 6877 gender_disc_laws_post196
#> 6878 gender_disc_laws_post196
#> 6879 gender_disc_laws_post196
#> 6880 gender_disc_laws_post196
#> 6881 gender_disc_laws_post196
#> 6882 gender_disc_laws_post196
#> 6883 gender_disc_laws_post196
#> 6884 gender_disc_laws_post196
#> 6885 gender_disc_laws_post196
#> 6886 gender_disc_laws_post196
#> 6887 gender_disc_laws_post196
#> 6888 gender_disc_laws_post196
#> 6889 gender_disc_laws_post196
#> 6890 gender_disc_laws_post196
#> 6891 gender_disc_laws_post196
#> 6892 gender_disc_laws_post196
#> 6893 gender_disc_laws_post196
#> 6894 gender_disc_laws_post196
#> 6895 gender_disc_laws_post196
#> 6896 gender_disc_laws_post196
#> 6897 gender_disc_laws_post196
#> 6898 gender_disc_laws_post196
#> 6899 gender_disc_laws_post196
#> 6900 gender_disc_laws_post196
#> 6901 gender_disc_laws_post196
#> 6902 gender_disc_laws_post196
#> 6903 gender_disc_laws_post196
#> 6904 gender_disc_laws_post196
#> 6905 gender_disc_laws_post196
#> 6906 gender_disc_laws_post196
#> 6907 gender_disc_laws_post196
#> 6908 gender_disc_laws_post196
#> 6909 gender_disc_laws_post196
#> 6910 gender_disc_laws_post196
#> 6911 gender_disc_laws_post196
#> 6912 gender_disc_laws_post196
#> 6913 gender_disc_laws_post196
#> 6914 gender_disc_laws_post196
#> 6915 gender_disc_laws_post196
#> 6916 gender_disc_laws_post196
#> 6917 gender_disc_laws_post196
#> 6918 gender_disc_laws_post196
#> 6919 gender_disc_laws_post196
#> 6920 genderrights_era_ratificatio
#> 6921 genderrights_era_ratificatio
#> 6922 genderrights_era_ratificatio
#> 6923 genderrights_era_ratificatio
#> 6924 genderrights_era_ratificatio
#> 6925 genderrights_era_ratificatio
#> 6926 genderrights_era_ratificatio
#> 6927 genderrights_era_ratificatio
#> 6928 genderrights_era_ratificatio
#> 6929 genderrights_era_ratificatio
#> 6930 genderrights_era_ratificatio
#> 6931 genderrights_era_ratificatio
#> 6932 genderrights_era_ratificatio
#> 6933 genderrights_era_ratificatio
#> 6934 genderrights_era_ratificatio
#> 6935 genderrights_era_ratificatio
#> 6936 genderrights_era_ratificatio
#> 6937 genderrights_era_ratificatio
#> 6938 genderrights_era_ratificatio
#> 6939 genderrights_era_ratificatio
#> 6940 genderrights_era_ratificatio
#> 6941 genderrights_era_ratificatio
#> 6942 genderrights_era_ratificatio
#> 6943 genderrights_era_ratificatio
#> 6944 genderrights_era_ratificatio
#> 6945 genderrights_era_ratificatio
#> 6946 genderrights_era_ratificatio
#> 6947 genderrights_era_ratificatio
#> 6948 genderrights_era_ratificatio
#> 6949 genderrights_era_ratificatio
#> 6950 genderrights_era_ratificatio
#> 6951 genderrights_era_ratificatio
#> 6952 genderrights_era_ratificatio
#> 6953 genderrights_era_ratificatio
#> 6954 genderrights_gender_discriminat
#> 6955 genderrights_gender_discriminat
#> 6956 genderrights_gender_discriminat
#> 6957 genderrights_gender_equal_pa
#> 6958 genderrights_gender_equal_pa
#> 6959 genderrights_gender_equal_pa
#> 6960 genderrights_gender_equal_pa
#> 6961 genderrights_gender_equal_pa
#> 6962 genderrights_gender_equal_pa
#> 6963 genderrights_gender_equal_pa
#> 6964 genderrights_gender_equal_pa
#> 6965 genderrights_gender_equal_pa
#> 6966 genderrights_gender_equal_pa
#> 6967 genderrights_gender_equal_pa
#> 6968 genderrights_gender_equal_pa
#> 6969 genderrights_gender_equal_pa
#> 6970 genderrights_gender_equal_pa
#> 6971 genderrights_gender_equal_pa
#> 6972 genderrights_gender_equal_pa
#> 6973 genderrights_gender_equal_pa
#> 6974 genderrights_gender_equal_pa
#> 6975 genderrights_gender_equal_pa
#> 6976 genderrights_gender_equal_pa
#> 6977 genderrights_gender_equal_pa
#> 6978 genderrights_gender_equal_pa
#> 6979 genderrights_gender_equal_pa
#> 6980 genderrights_gender_equal_pa
#> 6981 genderrights_gender_equal_pa
#> 6982 genderrights_gender_equal_pa
#> 6983 genderrights_gender_equal_pa
#> 6984 genderrights_gender_equal_pa
#> 6985 genderrights_gender_equal_pa
#> 6986 genderrights_gender_equal_pa
#> 6987 genderrights_gender_equal_pa
#> 6988 genderrights_gender_equal_pa
#> 6989 genderrights_gender_equal_pa
#> 6990 genderrights_gender_equal_pa
#> 6991 genderrights_gender_equal_pa
#> 6992 genderrights_gender_equal_pa
#> 6993 genderrights_gender_equal_pa
#> 6994 genderrights_gender_equal_pa
#> 6995 genderrights_gender_equal_pa
#> 6996 genderrights_gender_equal_pa
#> 6997 genderrights_nofault_divorc
#> 6998 genderrights_nofault_divorc
#> 6999 genderrights_nofault_divorc
#> 7000 genderrights_nofault_divorc
#> 7001 genderrights_nofault_divorc
#> 7002 genderrights_nofault_divorc
#> 7003 genderrights_nofault_divorc
#> 7004 genderrights_nofault_divorc
#> 7005 genderrights_nofault_divorc
#> 7006 genderrights_nofault_divorc
#> 7007 genderrights_nofault_divorc
#> 7008 genderrights_nofault_divorc
#> 7009 genderrights_nofault_divorc
#> 7010 genderrights_nofault_divorc
#> 7011 genderrights_nofault_divorc
#> 7012 genderrights_nofault_divorc
#> 7013 genderrights_nofault_divorc
#> 7014 genderrights_nofault_divorc
#> 7015 genderrights_nofault_divorc
#> 7016 genderrights_nofault_divorc
#> 7017 genderrights_nofault_divorc
#> 7018 genderrights_nofault_divorc
#> 7019 genderrights_nofault_divorc
#> 7020 genderrights_nofault_divorc
#> 7021 genderrights_nofault_divorc
#> 7022 genderrights_nofault_divorc
#> 7023 genderrights_nofault_divorc
#> 7024 genderrights_nofault_divorc
#> 7025 genderrights_nofault_divorc
#> 7026 genderrights_nofault_divorc
#> 7027 genderrights_nofault_divorc
#> 7028 genderrights_nofault_divorc
#> 7029 genderrights_nofault_divorc
#> 7030 genderrights_nofault_divorc
#> 7031 genderrights_nofault_divorc
#> 7032 genderrights_nofault_divorc
#> 7033 genderrights_nofault_divorc
#> 7034 genderrights_nofault_divorc
#> 7035 genderrights_nofault_divorc
#> 7036 genderrights_nofault_divorc
#> 7037 genderrights_nofault_divorc
#> 7038 genderrights_nofault_divorc
#> 7039 genderrights_nofault_divorc
#> 7040 genderrights_nofault_divorc
#> 7041 genderrights_nofault_divorc
#> 7042 genderrights_nofault_divorc
#> 7043 genderrights_nofault_divorc
#> 7044 genderrights_nofault_divorc
#> 7045 genderrights_nofault_divorc
#> 7046 genderrights_nofault_divorc
#> 7047 genderrights_state_era
#> 7048 genderrights_state_era
#> 7049 genderrights_state_era
#> 7050 genderrights_state_era
#> 7051 genderrights_state_era
#> 7052 genderrights_state_era
#> 7053 genderrights_state_era
#> 7054 genderrights_state_era
#> 7055 genderrights_state_era
#> 7056 genderrights_state_era
#> 7057 genderrights_state_era
#> 7058 genderrights_state_era
#> 7059 genderrights_state_era
#> 7060 genderrights_state_era
#> 7061 genderrights_state_era
#> 7062 genderrights_state_era
#> 7063 genderrights_state_era
#> 7064 genderrights_state_era
#> 7065 genderrights_state_era
#> 7066 genderrights_state_era
#> 7067 genderrights_state_era
#> 7068 genderrights_state_era
#> 7069 giexorder
#> 7070 giexorder
#> 7071 giexorder
#> 7072 giexorder
#> 7073 giexorder
#> 7074 giexorder
#> 7075 giexorder
#> 7076 giexorder
#> 7077 giexorder
#> 7078 giexorder
#> 7079 giexorder
#> 7080 gilaw
#> 7081 gilaw
#> 7082 gilaw
#> 7083 gilaw
#> 7084 gilaw
#> 7085 gilaw
#> 7086 gilaw
#> 7087 gilaw
#> 7088 gilaw
#> 7089 gilaw
#> 7090 gilaw
#> 7091 gilaw
#> 7092 gilaw
#> 7093 gilaw
#> 7094 gilaw
#> 7095 gilaw
#> 7096 gilaw
#> 7097 goodsam911
#> 7098 goodsam911
#> 7099 goodsam911
#> 7100 goodsam911
#> 7101 goodsam911
#> 7102 goodsam911
#> 7103 goodsam911
#> 7104 goodsam911
#> 7105 goodsam911
#> 7106 goodsam911
#> 7107 goodsam911
#> 7108 goodsam911
#> 7109 goodsam911
#> 7110 goodsam911
#> 7111 governance_reform
#> 7112 governance_reform
#> 7113 governance_reform
#> 7114 governance_reform
#> 7115 governance_reform
#> 7116 governance_reform
#> 7117 governance_reform
#> 7118 governance_reform
#> 7119 governance_reform
#> 7120 governance_reform
#> 7121 governance_reform
#> 7122 governance_reform
#> 7123 governance_reform
#> 7124 governance_reform
#> 7125 governance_reform
#> 7126 governance_reform
#> 7127 governance_reform
#> 7128 governance_reform
#> 7129 governance_reform
#> 7130 governance_reform
#> 7131 governance_reform
#> 7132 governance_reform
#> 7133 governance_reform
#> 7134 guardianship and protective proceedings act (1997)
#> 7135 guardianship and protective proceedings act (1997)
#> 7136 guardianship and protective proceedings act (1997)
#> 7137 guardianship and protective proceedings act (1997)
#> 7138 guardianship and protective proceedings act (1997)
#> 7139 guncontrl_bc_private_handgu
#> 7140 guncontrl_bc_private_handgu
#> 7141 guncontrl_bc_private_handgu
#> 7142 guncontrl_bc_private_handgu
#> 7143 guncontrl_bc_private_handgu
#> 7144 guncontrl_bc_private_handgu
#> 7145 guncontrl_bc_private_handgu
#> 7146 guncontrl_bc_private_handgu
#> 7147 guncontrl_bc_private_handgu
#> 7148 guncontrl_bc_private_handgu
#> 7149 guncontrl_bc_private_handgu
#> 7150 guncontrl_bc_private_handgu
#> 7151 guncontrl_bc_private_handgu
#> 7152 guncontrl_bc_private_handgu
#> 7153 guncontrl_bc_private_rifl
#> 7154 guncontrl_bc_private_rifl
#> 7155 guncontrl_bc_private_rifl
#> 7156 guncontrl_bc_private_rifl
#> 7157 guncontrl_bc_private_rifl
#> 7158 guncontrl_bc_private_rifl
#> 7159 guncontrl_bc_private_rifl
#> 7160 guncontrl_bc_private_rifl
#> 7161 guncontrl_bc_private_rifl
#> 7162 guncontrl_bc_private_rifl
#> 7163 guncontrl_waitperiod_handgu
#> 7164 guncontrl_waitperiod_handgu
#> 7165 guncontrl_waitperiod_handgu
#> 7166 guncontrl_waitperiod_handgu
#> 7167 guncontrl_waitperiod_handgu
#> 7168 guncontrl_waitperiod_handgu
#> 7169 guncontrl_waitperiod_handgu
#> 7170 guncontrl_waitperiod_handgu
#> 7171 guncontrl_waitperiod_handgu
#> 7172 guncontrl_waitperiod_handgu
#> 7173 guncontrl_waitperiod_handgu
#> 7174 guncontrl_waitperiod_handgu
#> 7175 guncontrl_waitperiod_handgu
#> 7176 guncontrol_assaultweapon_ba
#> 7177 guncontrol_assaultweapon_ba
#> 7178 guncontrol_assaultweapon_ba
#> 7179 guncontrol_assaultweapon_ba
#> 7180 guncontrol_assaultweapon_ba
#> 7181 guncontrol_assaultweapon_ba
#> 7182 guncontrol_assaultweapon_ba
#> 7183 guncontrol_licenses_dealer
#> 7184 guncontrol_licenses_dealer
#> 7185 guncontrol_licenses_dealer
#> 7186 guncontrol_licenses_dealer
#> 7187 guncontrol_licenses_dealer
#> 7188 guncontrol_licenses_dealer
#> 7189 guncontrol_licenses_dealer
#> 7190 guncontrol_licenses_dealer
#> 7191 guncontrol_licenses_dealer
#> 7192 guncontrol_licenses_dealer
#> 7193 guncontrol_licenses_dealer
#> 7194 guncontrol_licenses_dealer
#> 7195 guncontrol_licenses_dealer
#> 7196 guncontrol_licenses_dealer
#> 7197 guncontrol_licenses_dealer
#> 7198 guncontrol_licenses_dealer
#> 7199 guncontrol_licenses_dealer
#> 7200 guncontrol_licenses_dealer
#> 7201 guncontrol_licenses_dealer
#> 7202 guncontrol_licenses_dealer
#> 7203 guncontrol_opencarr
#> 7204 guncontrol_opencarr
#> 7205 guncontrol_opencarr
#> 7206 guncontrol_opencarr
#> 7207 guncontrol_opencarr
#> 7208 guncontrol_opencarr
#> 7209 guncontrol_opencarr
#> 7210 guncontrol_opencarr
#> 7211 guncontrol_opencarr
#> 7212 guncontrol_opencarr
#> 7213 guncontrol_opencarr
#> 7214 guncontrol_opencarr
#> 7215 guncontrol_opencarr
#> 7216 guncontrol_opencarr
#> 7217 guncontrol_opencarr
#> 7218 guncontrol_opencarr
#> 7219 guncontrol_opencarr
#> 7220 guncontrol_opencarr
#> 7221 guncontrol_opencarr
#> 7222 guncontrol_opencarr
#> 7223 guncontrol_opencarr
#> 7224 guncontrol_opencarr
#> 7225 guncontrol_opencarr
#> 7226 guncontrol_opencarr
#> 7227 guncontrol_opencarr
#> 7228 guncontrol_opencarr
#> 7229 guncontrol_opencarr
#> 7230 guncontrol_opencarr
#> 7231 guncontrol_opencarr
#> 7232 guncontrol_opencarr
#> 7233 guncontrol_opencarr
#> 7234 guncontrol_opencarr
#> 7235 guncontrol_opencarr
#> 7236 guncontrol_opencarr
#> 7237 guncontrol_opencarr
#> 7238 guncontrol_opencarr
#> 7239 guncontrol_opencarr
#> 7240 guncontrol_opencarr
#> 7241 guncontrol_opencarr
#> 7242 guncontrol_opencarr
#> 7243 guncontrol_opencarr
#> 7244 guncontrol_opencarr
#> 7245 guncontrol_satnightspecial_ba
#> 7246 guncontrol_satnightspecial_ba
#> 7247 guncontrol_satnightspecial_ba
#> 7248 guncontrol_satnightspecial_ba
#> 7249 guncontrol_satnightspecial_ba
#> 7250 guncontrol_satnightspecial_ba
#> 7251 guncontrol_satnightspecial_ba
#> 7252 guncontrol_satnightspecial_ba
#> 7253 harass
#> 7254 harass
#> 7255 harass
#> 7256 harass
#> 7257 harass
#> 7258 harass
#> 7259 harass
#> 7260 harass
#> 7261 harass
#> 7262 harass
#> 7263 harass
#> 7264 hate crimes
#> 7265 hate crimes
#> 7266 hate crimes
#> 7267 hate crimes
#> 7268 hate crimes
#> 7269 hate crimes
#> 7270 hate crimes
#> 7271 hate crimes
#> 7272 hate crimes
#> 7273 hate crimes
#> 7274 hate crimes
#> 7275 hate crimes
#> 7276 hate crimes
#> 7277 hate crimes
#> 7278 hate crimes
#> 7279 hate crimes
#> 7280 hate crimes
#> 7281 hate crimes
#> 7282 hate crimes
#> 7283 hate crimes
#> 7284 hate crimes
#> 7285 hate crimes
#> 7286 hate crimes
#> 7287 hate crimes
#> 7288 hate crimes
#> 7289 hate crimes
#> 7290 hate crimes
#> 7291 hate crimes
#> 7292 hate crimes
#> 7293 hate crimes
#> 7294 hate crimes
#> 7295 hate crimes
#> 7296 hate crimes
#> 7297 hate crimes
#> 7298 hate crimes
#> 7299 hate crimes
#> 7300 hate crimes
#> 7301 hate crimes
#> 7302 hate crimes
#> 7303 hate crimes
#> 7304 hate crimes
#> 7305 hate crimes
#> 7306 hatecrime
#> 7307 hatecrime
#> 7308 hatecrime
#> 7309 hatecrime
#> 7310 hatecrime
#> 7311 hatecrime
#> 7312 hatecrime
#> 7313 hatecrime
#> 7314 hatecrime
#> 7315 hatecrime
#> 7316 hatecrime
#> 7317 hatecrime
#> 7318 hatecrime
#> 7319 hatecrime
#> 7320 hatecrime
#> 7321 hatecrime
#> 7322 hatecrime
#> 7323 hatecrime
#> 7324 hatecrime
#> 7325 hatecrime
#> 7326 hatecrime
#> 7327 hatecrime
#> 7328 hatecrime
#> 7329 hatecrime
#> 7330 hatecrime
#> 7331 hatecrime
#> 7332 hatecrime
#> 7333 hatecrime
#> 7334 hatecrime
#> 7335 hatecrime
#> 7336 hatecrime
#> 7337 hatecrime
#> 7338 hatecrime
#> 7339 hatecrime
#> 7340 hatecrime
#> 7341 hatecrime
#> 7342 hatecrime
#> 7343 hatecrime
#> 7344 hatecrime
#> 7345 hatecrime
#> 7346 hatecrime
#> 7347 hatecrime
#> 7348 hatecrime
#> 7349 hatecrime
#> 7350 hatecrime
#> 7351 hatecrime
#> 7352 hazing
#> 7353 hazing
#> 7354 hazing
#> 7355 hazing
#> 7356 hazing
#> 7357 hazing
#> 7358 hazing
#> 7359 hazing
#> 7360 hazing
#> 7361 hazing
#> 7362 hazing
#> 7363 hazing
#> 7364 hazing
#> 7365 hazing
#> 7366 hazing
#> 7367 hazing
#> 7368 hazing
#> 7369 hazing
#> 7370 hazing
#> 7371 hazing
#> 7372 hazing
#> 7373 hazing
#> 7374 hazing
#> 7375 hazing
#> 7376 hazing
#> 7377 hazing
#> 7378 hazing
#> 7379 hazing
#> 7380 hazing
#> 7381 hazing
#> 7382 hazing
#> 7383 hazing
#> 7384 hazing
#> 7385 hazing
#> 7386 hazing
#> 7387 hazing
#> 7388 hazing
#> 7389 hazing
#> 7390 hazing
#> 7391 hazing
#> 7392 hazing
#> 7393 hazing
#> 7394 hazing
#> 7395 health
#> 7396 health
#> 7397 health
#> 7398 health
#> 7399 health
#> 7400 health
#> 7401 health
#> 7402 health
#> 7403 health
#> 7404 health
#> 7405 health
#> 7406 health
#> 7407 health
#> 7408 health
#> 7409 health
#> 7410 health
#> 7411 health
#> 7412 health
#> 7413 health
#> 7414 health
#> 7415 health
#> 7416 health
#> 7417 health
#> 7418 health care compact
#> 7419 health care compact
#> 7420 health care compact
#> 7421 health care compact
#> 7422 health care compact
#> 7423 health care compact
#> 7424 health care compact
#> 7425 health care compact
#> 7426 health care compact
#> 7427 health-care decisions act
#> 7428 health-care decisions act
#> 7429 health-care decisions act
#> 7430 health-care decisions act
#> 7431 health-care decisions act
#> 7432 health-care decisions act
#> 7433 health-care decisions act
#> 7434 health-care information act
#> 7435 health-care information act
#> 7436 helmetlaw_17
#> 7437 helmetlaw_17
#> 7438 helmetlaw_17
#> 7439 helmetlaw_17
#> 7440 helmetlaw_17
#> 7441 helmetlaw_17
#> 7442 helmetlaw_17
#> 7443 helmetlaw_17
#> 7444 helmetlaw_17
#> 7445 helmetlaw_17
#> 7446 helmetlaw_17
#> 7447 helmetlaw_17
#> 7448 helmetlaw_17
#> 7449 helmetlaw_17
#> 7450 helmetlaw_17
#> 7451 helmetlaw_17
#> 7452 helmetlaw_17
#> 7453 helmetlaw_17
#> 7454 helmetlaw_17
#> 7455 helmetlaw_17
#> 7456 helmetlaw_17
#> 7457 helmetlaw_17
#> 7458 helmetlaw_17
#> 7459 helmetlaw_17
#> 7460 helmetlaw_17
#> 7461 helmetlaw_17
#> 7462 helmetlaw_17
#> 7463 helmetlaw_17
#> 7464 helmetlaw_17
#> 7465 helmetlaw_17
#> 7466 helmetlaw_17
#> 7467 helmetlaw_17
#> 7468 helmetlaw_17
#> 7469 helmetlaw_17
#> 7470 helmetlaw_17
#> 7471 helmetlaw_17
#> 7472 helmetlaw_17
#> 7473 helmetlaw_17
#> 7474 helmetlaw_17
#> 7475 helmetlaw_17
#> 7476 helmetlaw_17
#> 7477 helmetlaw_17
#> 7478 helmetlaw_17
#> 7479 helmetlaw_17
#> 7480 helmetlaw_17
#> 7481 helmetlaw_17
#> 7482 helmetlaw_17
#> 7483 helmetlaw_17
#> 7484 helmetlaw_learn
#> 7485 helmetlaw_learn
#> 7486 helmetlaw_learn
#> 7487 helmetlaw_learn
#> 7488 helmetlaw_learn
#> 7489 helmetlaw_learn
#> 7490 helmetlaw_learn
#> 7491 helmetlaw_learn
#> 7492 helmetlaw_learn
#> 7493 helmetlaw_learn
#> 7494 helmetlaw_learn
#> 7495 helmetlaw_learn
#> 7496 helmetlaw_learn
#> 7497 helmetlaw_learn
#> 7498 helmetlaw_learn
#> 7499 helmetlaw_learn
#> 7500 helmetlaw_learn
#> 7501 helmetlaw_learn
#> 7502 helmetlaw_learn
#> 7503 helmetlaw_learn
#> 7504 helmetlaw_learn
#> 7505 helmetlaw_learn
#> 7506 helmetlaw_learn
#> 7507 helmetlaw_learn
#> 7508 helmetlaw_learn
#> 7509 helmetlaw_learn
#> 7510 helmetlaw_learn
#> 7511 helmetlaw_learn
#> 7512 helmetlaw_pass
#> 7513 helmetlaw_pass
#> 7514 helmetlaw_pass
#> 7515 helmetlaw_pass
#> 7516 helmetlaw_pass
#> 7517 helmetlaw_pass
#> 7518 helmetlaw_pass
#> 7519 helmetlaw_pass
#> 7520 helmetlaw_pass
#> 7521 helmetlaw_pass
#> 7522 helmetlaw_pass
#> 7523 helmetlaw_pass
#> 7524 helmetlaw_pass
#> 7525 helmetlaw_pass
#> 7526 helmetlaw_pass
#> 7527 helmetlaw_pass
#> 7528 helmetlaw_pass
#> 7529 helmetlaw_pass
#> 7530 helmetlaw_pass
#> 7531 helmetlaw_pass
#> 7532 helmetlaw_pass
#> 7533 helmetlaw_pass
#> 7534 helmetlaw_pass
#> 7535 helmetlaw_pass
#> 7536 helmetlaw_pass
#> 7537 helmetlaw_pass
#> 7538 helmetlaw_pass
#> 7539 helmetlaw_pass
#> 7540 higissue
#> 7541 higissue
#> 7542 higissue
#> 7543 higissue
#> 7544 higissue
#> 7545 higissue
#> 7546 higissue
#> 7547 higissue
#> 7548 higissue
#> 7549 higissue
#> 7550 higissue
#> 7551 higissue
#> 7552 higissue
#> 7553 higissue
#> 7554 higissue
#> 7555 higissue
#> 7556 higissue
#> 7557 higissue
#> 7558 higissue
#> 7559 higissue
#> 7560 higissue
#> 7561 higissue
#> 7562 higissue
#> 7563 higissue
#> 7564 higissue
#> 7565 higissue
#> 7566 higissue
#> 7567 higissue
#> 7568 higissue
#> 7569 higissue
#> 7570 higissue
#> 7571 higissue
#> 7572 higissue
#> 7573 higissue
#> 7574 higissue
#> 7575 higissue
#> 7576 higrenew
#> 7577 higrenew
#> 7578 higrenew
#> 7579 higrenew
#> 7580 higrenew
#> 7581 higrenew
#> 7582 higrenew
#> 7583 higrenew
#> 7584 higrenew
#> 7585 higrenew
#> 7586 higrenew
#> 7587 higrenew
#> 7588 higrenew
#> 7589 higrenew
#> 7590 higrenew
#> 7591 higrenew
#> 7592 higrenew
#> 7593 higrenew
#> 7594 higrenew
#> 7595 higrenew
#> 7596 higrenew
#> 7597 higrenew
#> 7598 higrenew
#> 7599 higrenew
#> 7600 higrenew
#> 7601 higrenew
#> 7602 higrenew
#> 7603 higrenew
#> 7604 higrenew
#> 7605 higrenew
#> 7606 higrenew
#> 7607 higrenew
#> 7608 higrenew
#> 7609 higrenew
#> 7610 higrenew
#> 7611 higrenew
#> 7612 higrenew
#> 7613 higrenew
#> 7614 higrenew
#> 7615 higrenew
#> 7616 higrenew
#> 7617 higrenew
#> 7618 higrenew
#> 7619 higrenew
#> 7620 higrenew
#> 7621 hiport
#> 7622 hiport
#> 7623 hiport
#> 7624 hiport
#> 7625 hiport
#> 7626 hiport
#> 7627 hiport
#> 7628 hiport
#> 7629 hiport
#> 7630 hiport
#> 7631 hiport
#> 7632 hiport
#> 7633 hiport
#> 7634 hiport
#> 7635 hiport
#> 7636 hiport
#> 7637 hiport
#> 7638 hiport
#> 7639 hiport
#> 7640 hiport
#> 7641 hiport
#> 7642 hiport
#> 7643 hiport
#> 7644 hiport
#> 7645 hiport
#> 7646 hiport
#> 7647 hiport
#> 7648 hiport
#> 7649 hiport
#> 7650 hiport
#> 7651 hiport
#> 7652 hiport
#> 7653 hiport
#> 7654 hiport
#> 7655 hiport
#> 7656 hiport
#> 7657 hiport
#> 7658 hiport
#> 7659 hiport
#> 7660 hiport
#> 7661 hiport
#> 7662 hiport
#> 7663 hiport
#> 7664 hiprecon
#> 7665 hiprecon
#> 7666 hiprecon
#> 7667 hiprecon
#> 7668 hiprecon
#> 7669 hiprecon
#> 7670 hiprecon
#> 7671 hiprecon
#> 7672 hiprecon
#> 7673 hiprecon
#> 7674 hiprecon
#> 7675 hiprecon
#> 7676 hiprecon
#> 7677 hiprecon
#> 7678 hiprecon
#> 7679 hiprecon
#> 7680 hiprecon
#> 7681 hiprecon
#> 7682 hiprecon
#> 7683 hiprecon
#> 7684 hiprecon
#> 7685 hiprecon
#> 7686 hiprecon
#> 7687 hiprecon
#> 7688 hiprecon
#> 7689 hiprecon
#> 7690 hiprecon
#> 7691 hiprecon
#> 7692 hiprecon
#> 7693 hiprecon
#> 7694 hiprecon
#> 7695 hiprecon
#> 7696 hiprecon
#> 7697 hiprecon
#> 7698 hiprecon
#> 7699 hiprecon
#> 7700 hiprecon
#> 7701 hiprecon
#> 7702 hiprecon
#> 7703 hmomod1
#> 7704 hmomod1
#> 7705 hmomod1
#> 7706 hmomod1
#> 7707 hmomod1
#> 7708 hmomod1
#> 7709 hmomod1
#> 7710 hmomod1
#> 7711 hmomod1
#> 7712 hmomod1
#> 7713 hmomod1
#> 7714 hmomod1
#> 7715 hmomod1
#> 7716 hmomod1
#> 7717 hmomod1
#> 7718 hmomod1
#> 7719 hmomod1
#> 7720 hmomod1
#> 7721 hmomod1
#> 7722 hmomod1
#> 7723 hmomod1
#> 7724 hmomod1
#> 7725 hmomod1
#> 7726 hmomod2
#> 7727 hmomod2
#> 7728 hmomod2
#> 7729 hmomod2
#> 7730 hmomod2
#> 7731 hmomod2
#> 7732 hmomod2
#> 7733 hmomod2
#> 7734 hmomod2
#> 7735 hmomod2
#> 7736 hmomod2
#> 7737 hmomod2
#> 7738 hmomod2
#> 7739 hmomod2
#> 7740 hmomod2
#> 7741 hmomod2
#> 7742 hmomod2
#> 7743 hmomod2
#> 7744 hmomod2
#> 7745 hmomod2
#> 7746 hmomod2
#> 7747 hmomod2
#> 7748 hostliability
#> 7749 hostliability
#> 7750 hostliability
#> 7751 hostliability
#> 7752 hostliability
#> 7753 hostliability
#> 7754 hostliability
#> 7755 hostliability
#> 7756 hostliability
#> 7757 hostliability
#> 7758 hostliability
#> 7759 hostliability
#> 7760 hostliability
#> 7761 hostliability
#> 7762 hostliability
#> 7763 hostliability
#> 7764 hostliability
#> 7765 hostliability
#> 7766 hostliability
#> 7767 hostliability
#> 7768 hostliability
#> 7769 hostliability
#> 7770 hostliability
#> 7771 hostliability
#> 7772 hostliability
#> 7773 hostliability
#> 7774 hostliability
#> 7775 hsexit
#> 7776 hsexit
#> 7777 hsexit
#> 7778 hsexit
#> 7779 hsexit
#> 7780 hsexit
#> 7781 hsexit
#> 7782 hsexit
#> 7783 hsexit
#> 7784 hsexit
#> 7785 hsexit
#> 7786 hsexit
#> 7787 hsexit
#> 7788 hsexit
#> 7789 hsexit
#> 7790 hsexit
#> 7791 hsexit
#> 7792 hsexit
#> 7793 hsexit
#> 7794 hsexit
#> 7795 hsexit
#> 7796 hsexit
#> 7797 hsexit
#> 7798 hsexit
#> 7799 hsexit
#> 7800 hsexit
#> 7801 humantraffic
#> 7802 humantraffic
#> 7803 humantraffic
#> 7804 humantraffic
#> 7805 humantraffic
#> 7806 humantraffic
#> 7807 humantraffic
#> 7808 humantraffic
#> 7809 humantraffic
#> 7810 humantraffic
#> 7811 humantraffic
#> 7812 humantraffic
#> 7813 humantraffic
#> 7814 humantraffic
#> 7815 humantraffic
#> 7816 humantraffic
#> 7817 humantraffic
#> 7818 humantraffic
#> 7819 humantraffic
#> 7820 humantraffic
#> 7821 humantraffic
#> 7822 humantraffic
#> 7823 humantraffic
#> 7824 humantraffic
#> 7825 humantraffic
#> 7826 humantraffic
#> 7827 humantraffic
#> 7828 humantraffic
#> 7829 humantraffic
#> 7830 humantraffic
#> 7831 humantraffic
#> 7832 humantraffic
#> 7833 humantraffic
#> 7834 humantraffic
#> 7835 humantraffic
#> 7836 humantraffic
#> 7837 humantraffic
#> 7838 humantraffic
#> 7839 humantraffic
#> 7840 humrel
#> 7841 humrel
#> 7842 humrel
#> 7843 humrel
#> 7844 humrel
#> 7845 humrel
#> 7846 humrel
#> 7847 humrel
#> 7848 humrel
#> 7849 humrel
#> 7850 humrel
#> 7851 humrel
#> 7852 humrel
#> 7853 humrel
#> 7854 humrel
#> 7855 humrel
#> 7856 humrel
#> 7857 humrel
#> 7858 humrel
#> 7859 humrel
#> 7860 humrel
#> 7861 humrel
#> 7862 hwyagen
#> 7863 hwyagen
#> 7864 hwyagen
#> 7865 hwyagen
#> 7866 hwyagen
#> 7867 hwyagen
#> 7868 hwyagen
#> 7869 hwyagen
#> 7870 hwyagen
#> 7871 hwyagen
#> 7872 hwyagen
#> 7873 hwyagen
#> 7874 hwyagen
#> 7875 hwyagen
#> 7876 hwyagen
#> 7877 hwyagen
#> 7878 hwyagen
#> 7879 hwyagen
#> 7880 hwyagen
#> 7881 hwyagen
#> 7882 hwyagen
#> 7883 hwyagen
#> 7884 hwyagen
#> 7885 hwyagen
#> 7886 hwyagen
#> 7887 hwyagen
#> 7888 hwyagen
#> 7889 hwyagen
#> 7890 hwyagen
#> 7891 hwyagen
#> 7892 hwyagen
#> 7893 hwyagen
#> 7894 hwyagen
#> 7895 hwyagen
#> 7896 hwyagen
#> 7897 hwyagen
#> 7898 hwyagen
#> 7899 hwyagen
#> 7900 hwyagen
#> 7901 hwyagen
#> 7902 hwyagen
#> 7903 hwyagen
#> 7904 hwyagen
#> 7905 hwyagen
#> 7906 hwyagen
#> 7907 hwyagen
#> 7908 hwyagen
#> 7909 hwyagen
#> 7910 idas
#> 7911 idas
#> 7912 idas
#> 7913 idas
#> 7914 idas
#> 7915 idas
#> 7916 idas
#> 7917 idas
#> 7918 idas
#> 7919 idas
#> 7920 idas
#> 7921 idas
#> 7922 idas
#> 7923 idas
#> 7924 idas
#> 7925 idas
#> 7926 idas
#> 7927 idas
#> 7928 idas
#> 7929 idas
#> 7930 idas
#> 7931 idas
#> 7932 idas
#> 7933 idas
#> 7934 idas
#> 7935 idas
#> 7936 idas
#> 7937 idas
#> 7938 idas
#> 7939 idas
#> 7940 idas
#> 7941 idas
#> 7942 idas
#> 7943 idas
#> 7944 idas
#> 7945 ide
#> 7946 ide
#> 7947 ide
#> 7948 ide
#> 7949 ide
#> 7950 ide
#> 7951 ide
#> 7952 ide
#> 7953 ide
#> 7954 ide
#> 7955 ide
#> 7956 ide
#> 7957 ide
#> 7958 ide
#> 7959 ide
#> 7960 ide
#> 7961 ide
#> 7962 ide
#> 7963 ide
#> 7964 ide
#> 7965 ide
#> 7966 ide
#> 7967 ide
#> 7968 ide
#> 7969 ide
#> 7970 ide
#> 7971 ide
#> 7972 ide
#> 7973 ide
#> 7974 ide
#> 7975 ide
#> 7976 idtheft
#> 7977 idtheft
#> 7978 idtheft
#> 7979 idtheft
#> 7980 idtheft
#> 7981 idtheft
#> 7982 idtheft
#> 7983 idtheft
#> 7984 idtheft
#> 7985 idtheft
#> 7986 idtheft
#> 7987 idtheft
#> 7988 idtheft
#> 7989 idtheft
#> 7990 idtheft
#> 7991 idtheft
#> 7992 idtheft
#> 7993 idtheft
#> 7994 idtheft
#> 7995 idtheft
#> 7996 idtheft
#> 7997 idtheft
#> 7998 idtheft
#> 7999 idtheft
#> 8000 idtheft
#> 8001 idtheft
#> 8002 idtheft
#> 8003 idtheft
#> 8004 idtheft
#> 8005 idtheft
#> 8006 idtheft
#> 8007 idtheft
#> 8008 idtheft
#> 8009 idtheft
#> 8010 idtheft
#> 8011 idtheft
#> 8012 idtheft
#> 8013 idtheft
#> 8014 idtheft
#> 8015 idtheft
#> 8016 idtheft
#> 8017 idtheft
#> 8018 idtheft
#> 8019 idtheft
#> 8020 idtheft
#> 8021 idtheft
#> 8022 idtheft
#> 8023 idtheft
#> 8024 idtheft
#> 8025 idtheft
#> 8026 imitcontsub
#> 8027 imitcontsub
#> 8028 imitcontsub
#> 8029 imitcontsub
#> 8030 imitcontsub
#> 8031 imitcontsub
#> 8032 imitcontsub
#> 8033 imitcontsub
#> 8034 imitcontsub
#> 8035 imitcontsub
#> 8036 imitcontsub
#> 8037 imitcontsub
#> 8038 imitcontsub
#> 8039 imitcontsub
#> 8040 imitcontsub
#> 8041 imitcontsub
#> 8042 imitcontsub
#> 8043 imitcontsub
#> 8044 imitcontsub
#> 8045 imitcontsub
#> 8046 imitcontsub
#> 8047 imitcontsub
#> 8048 imitcontsub
#> 8049 imitcontsub
#> 8050 imitcontsub
#> 8051 imitcontsub
#> 8052 imitcontsub
#> 8053 imitcontsub
#> 8054 imitcontsub
#> 8055 imitcontsub
#> 8056 imitcontsub
#> 8057 imitcontsub
#> 8058 imitcontsub
#> 8059 imitcontsub
#> 8060 imitcontsub
#> 8061 imitcontsub
#> 8062 imitcontsub
#> 8063 imitcontsub
#> 8064 imitcontsub
#> 8065 imitcontsub
#> 8066 imitcontsub
#> 8067 imitcontsub
#> 8068 imitcontsub
#> 8069 imitcontsub
#> 8070 imitcontsub
#> 8071 imitcontsub
#> 8072 imitcontsub
#> 8073 imitcontsub
#> 8074 imitcontsub
#> 8075 imitcontsub
#> 8076 immigration_english_languag
#> 8077 immigration_english_languag
#> 8078 immigration_english_languag
#> 8079 immigration_english_languag
#> 8080 immigration_english_languag
#> 8081 immigration_english_languag
#> 8082 immigration_english_languag
#> 8083 immigration_english_languag
#> 8084 immigration_english_languag
#> 8085 immigration_english_languag
#> 8086 immigration_english_languag
#> 8087 immigration_english_languag
#> 8088 immigration_english_languag
#> 8089 immigration_english_languag
#> 8090 immigration_english_languag
#> 8091 immigration_english_languag
#> 8092 immigration_english_languag
#> 8093 immigration_english_languag
#> 8094 immigration_english_languag
#> 8095 immigration_english_languag
#> 8096 immigration_english_languag
#> 8097 immigration_english_languag
#> 8098 immigration_english_languag
#> 8099 immigration_english_languag
#> 8100 immigration_english_languag
#> 8101 immigration_english_languag
#> 8102 immigration_english_languag
#> 8103 immigration_english_languag
#> 8104 immigration_english_languag
#> 8105 immigration_english_languag
#> 8106 immigration_english_languag
#> 8107 immigration_instate_tuition_ill
#> 8108 immigration_instate_tuition_ill
#> 8109 immigration_instate_tuition_ill
#> 8110 immigration_instate_tuition_ill
#> 8111 immigration_instate_tuition_ill
#> 8112 immigration_instate_tuition_ill
#> 8113 immigration_instate_tuition_ill
#> 8114 immigration_instate_tuition_ill
#> 8115 immigration_instate_tuition_ill
#> 8116 immigration_instate_tuition_ill
#> 8117 immigration_instate_tuition_ill
#> 8118 immigration_instate_tuition_ill
#> 8119 immigration_instate_tuition_ill
#> 8120 immigration_instate_tuition_ill
#> 8121 immigration_instate_tuition_ill
#> 8122 immigration_instate_tuition_ill
#> 8123 immigration_instate_tuition_ill
#> 8124 immigration_instate_tuition_ill
#> 8125 inctax
#> 8126 inctax
#> 8127 inctax
#> 8128 inctax
#> 8129 inctax
#> 8130 inctax
#> 8131 inctax
#> 8132 inctax
#> 8133 inctax
#> 8134 inctax
#> 8135 inctax
#> 8136 inctax
#> 8137 inctax
#> 8138 inctax
#> 8139 inctax
#> 8140 inctax
#> 8141 inctax
#> 8142 inctax
#> 8143 inctax
#> 8144 inctax
#> 8145 inctax
#> 8146 inctax
#> 8147 inctax
#> 8148 inctax
#> 8149 inctax
#> 8150 inctax
#> 8151 inctax
#> 8152 inctax
#> 8153 indgaming
#> 8154 indgaming
#> 8155 indgaming
#> 8156 indgaming
#> 8157 indgaming
#> 8158 indgaming
#> 8159 indgaming
#> 8160 indgaming
#> 8161 indgaming
#> 8162 indgaming
#> 8163 indgaming
#> 8164 indgaming
#> 8165 indgaming
#> 8166 indgaming
#> 8167 indgaming
#> 8168 indgaming
#> 8169 indgaming
#> 8170 indgaming
#> 8171 indgaming
#> 8172 indgaming
#> 8173 indgaming
#> 8174 indgaming
#> 8175 indgaming
#> 8176 indgaming
#> 8177 indlimit
#> 8178 indlimit
#> 8179 indlimit
#> 8180 indlimit
#> 8181 indlimit
#> 8182 indlimit
#> 8183 indlimit
#> 8184 indlimit
#> 8185 indlimit
#> 8186 indlimit
#> 8187 indlimit
#> 8188 indlimit
#> 8189 indlimit
#> 8190 indlimit
#> 8191 indlimit
#> 8192 indlimit
#> 8193 indlimit
#> 8194 indlimit
#> 8195 indlimit
#> 8196 indlimit
#> 8197 indlimit
#> 8198 indlimit
#> 8199 indlimit
#> 8200 indlimit
#> 8201 indlimit
#> 8202 indlimit
#> 8203 indlimit
#> 8204 indlimit
#> 8205 indlimit
#> 8206 indlimit
#> 8207 indlimit
#> 8208 indlimit
#> 8209 indlimit
#> 8210 indlimit
#> 8211 indlimit
#> 8212 indlimit
#> 8213 indlimit
#> 8214 indlimit
#> 8215 indlimit
#> 8216 indlimit
#> 8217 indlimit
#> 8218 indlimit
#> 8219 indlimit
#> 8220 indlimit
#> 8221 indlimit
#> 8222 indlimit
#> 8223 indlimit
#> 8224 indlimit
#> 8225 indlimit
#> 8226 indlimit
#> 8227 indorgris
#> 8228 indorgris
#> 8229 indorgris
#> 8230 indorgris
#> 8231 indorgris
#> 8232 indorgris
#> 8233 indorgris
#> 8234 indorgris
#> 8235 indorgris
#> 8236 indorgris
#> 8237 indorgris
#> 8238 indorgris
#> 8239 indorgris
#> 8240 indorgris
#> 8241 infanthear
#> 8242 infanthear
#> 8243 infanthear
#> 8244 infanthear
#> 8245 infanthear
#> 8246 infanthear
#> 8247 infanthear
#> 8248 infanthear
#> 8249 infanthear
#> 8250 infanthear
#> 8251 infanthear
#> 8252 infanthear
#> 8253 infanthear
#> 8254 infanthear
#> 8255 infanthear
#> 8256 infanthear
#> 8257 infanthear
#> 8258 infanthear
#> 8259 infanthear
#> 8260 infanthear
#> 8261 infanthear
#> 8262 infanthear
#> 8263 infanthear
#> 8264 infanthear
#> 8265 infanthear
#> 8266 infanthear
#> 8267 infanthear
#> 8268 infanthear
#> 8269 infanthear
#> 8270 infanthear
#> 8271 infanthear
#> 8272 infanthear
#> 8273 infanthear
#> 8274 infanthear
#> 8275 infanthear
#> 8276 infanthear
#> 8277 infanthear
#> 8278 infanthear
#> 8279 infanthear
#> 8280 infanthear
#> 8281 infanthear
#> 8282 infanthear
#> 8283 infanthear
#> 8284 infconsent
#> 8285 infconsent
#> 8286 infconsent
#> 8287 infconsent
#> 8288 infconsent
#> 8289 infconsent
#> 8290 infconsent
#> 8291 infconsent
#> 8292 infconsent
#> 8293 infconsent
#> 8294 infconsent
#> 8295 infconsent
#> 8296 infconsent
#> 8297 infconsent
#> 8298 infconsent
#> 8299 infconsent
#> 8300 infconsent
#> 8301 infconsent
#> 8302 infconsent
#> 8303 infconsent
#> 8304 infconsent
#> 8305 infconsent
#> 8306 infconsent
#> 8307 infconsent
#> 8308 infconsent
#> 8309 infconsent
#> 8310 infconsent
#> 8311 infconsent
#> 8312 infconsent
#> 8313 infconsent
#> 8314 infconsent
#> 8315 infconsent
#> 8316 infconsent
#> 8317 infconsent
#> 8318 infconsent
#> 8319 infconsent
#> 8320 infconsent
#> 8321 infconsent
#> 8322 infconsent
#> 8323 infconsent
#> 8324 infertility
#> 8325 infertility
#> 8326 infertility
#> 8327 infertility
#> 8328 infertility
#> 8329 infertility
#> 8330 infertility
#> 8331 infertility
#> 8332 infertility
#> 8333 infertility
#> 8334 infertility
#> 8335 infertility
#> 8336 infertility
#> 8337 infertility
#> 8338 information practices code
#> 8339 initiative
#> 8340 initiative
#> 8341 initiative
#> 8342 initiative
#> 8343 initiative
#> 8344 initiative
#> 8345 initiative
#> 8346 initiative
#> 8347 initiative
#> 8348 initiative
#> 8349 initiative
#> 8350 initiative
#> 8351 initiative
#> 8352 initiative
#> 8353 initiative
#> 8354 initiative
#> 8355 initiative
#> 8356 initiative
#> 8357 initiative
#> 8358 initiative
#> 8359 ins_stateexch
#> 8360 ins_stateexch
#> 8361 ins_stateexch
#> 8362 ins_stateexch
#> 8363 ins_stateexch
#> 8364 ins_stateexch
#> 8365 ins_stateexch
#> 8366 ins_stateexch
#> 8367 ins_stateexch
#> 8368 ins_stateexch
#> 8369 ins_stateexch
#> 8370 ins_stateexch
#> 8371 ins_stateexch
#> 8372 ins_stateexch
#> 8373 ins_stateexch
#> 8374 ins_stateexch
#> 8375 ins_stateexch
#> 8376 ins_stateexch
#> 8377 ins_stateexch
#> 8378 ins_stateexch
#> 8379 ins_stateexch
#> 8380 ins_stateexch
#> 8381 insandefref
#> 8382 insandefref
#> 8383 insandefref
#> 8384 insandefref
#> 8385 insandefref
#> 8386 insandefref
#> 8387 insandefref
#> 8388 insandefref
#> 8389 insandefref
#> 8390 insandefref
#> 8391 insandefref
#> 8392 insandefref
#> 8393 insandefref
#> 8394 insandefref
#> 8395 insandefref
#> 8396 insandefref
#> 8397 insandefref
#> 8398 insandefref
#> 8399 insandefref
#> 8400 insandefref
#> 8401 insandefref
#> 8402 insandefref
#> 8403 insandefref
#> 8404 insandefref
#> 8405 insandefref
#> 8406 insandefref
#> 8407 insandefref
#> 8408 insandefref
#> 8409 insandefref
#> 8410 insandefref
#> 8411 insandefref
#> 8412 insandefref
#> 8413 insandefref
#> 8414 insandefref
#> 8415 insanity
#> 8416 insanity
#> 8417 insanity
#> 8418 insanity
#> 8419 insanity
#> 8420 insanity
#> 8421 insanity
#> 8422 insanity
#> 8423 insanity
#> 8424 insanity
#> 8425 insanity
#> 8426 insanity
#> 8427 insanity
#> 8428 insanity
#> 8429 insanity
#> 8430 insanity
#> 8431 insanity
#> 8432 insanity
#> 8433 insanity
#> 8434 insanity
#> 8435 insanity
#> 8436 insanity
#> 8437 insanity
#> 8438 insanity
#> 8439 insanity
#> 8440 insanity
#> 8441 insanity
#> 8442 insanity
#> 8443 insanity
#> 8444 insanity
#> 8445 insanity
#> 8446 insanity
#> 8447 insanity
#> 8448 insanity
#> 8449 insanity
#> 8450 insanity
#> 8451 insanity
#> 8452 insanity defense and post-trial disposition
#> 8453 insprivate
#> 8454 insprivate
#> 8455 insprivate
#> 8456 insprivate
#> 8457 insprivate
#> 8458 insprivate
#> 8459 insprivate
#> 8460 insprivate
#> 8461 insprivate
#> 8462 insprivate
#> 8463 insprivate
#> 8464 insprivate
#> 8465 insprivate
#> 8466 insprivate
#> 8467 insprivate
#> 8468 insprivate
#> 8469 insprivate
#> 8470 insprivate
#> 8471 insprivate
#> 8472 insprivate
#> 8473 insprivate
#> 8474 insprivate
#> 8475 insprivate
#> 8476 insprivate
#> 8477 inspublic
#> 8478 inspublic
#> 8479 inspublic
#> 8480 inspublic
#> 8481 inspublic
#> 8482 inspublic
#> 8483 inspublic
#> 8484 inspublic
#> 8485 inspublic
#> 8486 inspublic
#> 8487 inspublic
#> 8488 inspublic
#> 8489 inspublic
#> 8490 inspublic
#> 8491 inspublic
#> 8492 inspublic
#> 8493 inspublic
#> 8494 inspublic
#> 8495 inspublic
#> 8496 inspublic
#> 8497 inspublic
#> 8498 inst_tu_und
#> 8499 inst_tu_und
#> 8500 inst_tu_und
#> 8501 inst_tu_und
#> 8502 inst_tu_und
#> 8503 inst_tu_und
#> 8504 inst_tu_und
#> 8505 inst_tu_und
#> 8506 inst_tu_und
#> 8507 inst_tu_und
#> 8508 inst_tu_und
#> 8509 inst_tu_vet
#> 8510 inst_tu_vet
#> 8511 inst_tu_vet
#> 8512 inst_tu_vet
#> 8513 inst_tu_vet
#> 8514 inst_tu_vet
#> 8515 inst_tu_vet
#> 8516 inst_tu_vet
#> 8517 insurable interest amendment to the uniform trust code
#> 8518 insurable interest amendment to the uniform trust code
#> 8519 insurable interest amendment to the uniform trust code
#> 8520 insurable interest amendment to the uniform trust code
#> 8521 insurable interest amendment to the uniform trust code
#> 8522 insurable interest amendment to the uniform trust code
#> 8523 insurable interest amendment to the uniform trust code
#> 8524 inswaiver
#> 8525 inswaiver
#> 8526 inswaiver
#> 8527 inswaiver
#> 8528 inswaiver
#> 8529 intbar
#> 8530 intbar
#> 8531 intbar
#> 8532 intbar
#> 8533 intbar
#> 8534 intbar
#> 8535 intbar
#> 8536 intbar
#> 8537 intbar
#> 8538 intbar
#> 8539 intbar
#> 8540 intbar
#> 8541 intbar
#> 8542 intbar
#> 8543 intbar
#> 8544 intbar
#> 8545 intbar
#> 8546 intbar
#> 8547 intbar
#> 8548 intbar
#> 8549 intbar
#> 8550 intbar
#> 8551 intbar
#> 8552 intbar
#> 8553 intbar
#> 8554 intbar
#> 8555 interpleader compact
#> 8556 interpleader compact
#> 8557 interpleader compact
#> 8558 interpleader compact
#> 8559 interpleader compact
#> 8560 interreg
#> 8561 interreg
#> 8562 interreg
#> 8563 interreg
#> 8564 interreg
#> 8565 interreg
#> 8566 interreg
#> 8567 interreg
#> 8568 interreg
#> 8569 interreg
#> 8570 interreg
#> 8571 interreg
#> 8572 interreg
#> 8573 interreg
#> 8574 interreg
#> 8575 interstate compact for adult offender supervision
#> 8576 interstate compact for adult offender supervision
#> 8577 interstate compact for adult offender supervision
#> 8578 interstate compact for adult offender supervision
#> 8579 interstate compact for adult offender supervision
#> 8580 interstate compact for adult offender supervision
#> 8581 interstate compact for adult offender supervision
#> 8582 interstate compact for adult offender supervision
#> 8583 interstate compact for adult offender supervision
#> 8584 interstate compact for adult offender supervision
#> 8585 interstate compact for adult offender supervision
#> 8586 interstate compact for adult offender supervision
#> 8587 interstate compact for adult offender supervision
#> 8588 interstate compact for adult offender supervision
#> 8589 interstate compact for adult offender supervision
#> 8590 interstate compact for adult offender supervision
#> 8591 interstate compact for adult offender supervision
#> 8592 interstate compact for adult offender supervision
#> 8593 interstate compact for adult offender supervision
#> 8594 interstate compact for adult offender supervision
#> 8595 interstate compact for adult offender supervision
#> 8596 interstate compact for adult offender supervision
#> 8597 interstate compact for adult offender supervision
#> 8598 interstate compact for adult offender supervision
#> 8599 interstate compact for adult offender supervision
#> 8600 interstate compact for adult offender supervision
#> 8601 interstate compact for adult offender supervision
#> 8602 interstate compact for adult offender supervision
#> 8603 interstate compact for adult offender supervision
#> 8604 interstate compact for adult offender supervision
#> 8605 interstate compact for adult offender supervision
#> 8606 interstate compact for adult offender supervision
#> 8607 interstate compact for adult offender supervision
#> 8608 interstate compact for adult offender supervision
#> 8609 interstate compact for adult offender supervision
#> 8610 interstate compact for adult offender supervision
#> 8611 interstate compact for adult offender supervision
#> 8612 interstate compact for adult offender supervision
#> 8613 interstate compact for adult offender supervision
#> 8614 interstate compact for adult offender supervision
#> 8615 interstate compact for adult offender supervision
#> 8616 interstate compact for adult offender supervision
#> 8617 interstate compact for adult offender supervision
#> 8618 interstate compact for adult offender supervision
#> 8619 interstate compact for adult offender supervision
#> 8620 interstate compact for adult offender supervision
#> 8621 interstate compact for adult offender supervision
#> 8622 interstate compact for adult offender supervision
#> 8623 interstate compact for adult offender supervision
#> 8624 interstate compact for juveniles
#> 8625 interstate compact for juveniles
#> 8626 interstate compact for juveniles
#> 8627 interstate compact for juveniles
#> 8628 interstate compact for juveniles
#> 8629 interstate compact for juveniles
#> 8630 interstate compact for juveniles
#> 8631 interstate compact for juveniles
#> 8632 interstate compact for juveniles
#> 8633 interstate compact for juveniles
#> 8634 interstate compact for juveniles
#> 8635 interstate compact for juveniles
#> 8636 interstate compact for juveniles
#> 8637 interstate compact for juveniles
#> 8638 interstate compact for juveniles
#> 8639 interstate compact for juveniles
#> 8640 interstate compact for juveniles
#> 8641 interstate compact for juveniles
#> 8642 interstate compact for juveniles
#> 8643 interstate compact for juveniles
#> 8644 interstate compact for juveniles
#> 8645 interstate compact for juveniles
#> 8646 interstate compact for juveniles
#> 8647 interstate compact for juveniles
#> 8648 interstate compact for juveniles
#> 8649 interstate compact for juveniles
#> 8650 interstate compact for juveniles
#> 8651 interstate compact for juveniles
#> 8652 interstate compact for juveniles
#> 8653 interstate compact for juveniles
#> 8654 interstate compact for juveniles
#> 8655 interstate compact for juveniles
#> 8656 interstate compact for juveniles
#> 8657 interstate compact for juveniles
#> 8658 interstate compact for juveniles
#> 8659 interstate compact for juveniles
#> 8660 interstate compact for juveniles
#> 8661 interstate compact for juveniles
#> 8662 interstate compact for juveniles
#> 8663 interstate compact for juveniles
#> 8664 interstate compact for juveniles
#> 8665 interstate compact for juveniles
#> 8666 interstate compact for juveniles
#> 8667 interstate compact for juveniles
#> 8668 interstate compact for juveniles
#> 8669 interstate compact for juveniles
#> 8670 interstate compact for juveniles
#> 8671 interstate compact for juveniles
#> 8672 interstate compact for juveniles
#> 8673 interstate compact for mutual military aid in an emergency
#> 8674 interstate compact for mutual military aid in an emergency
#> 8675 interstate compact for mutual military aid in an emergency
#> 8676 interstate compact on adoption and medical assistance
#> 8677 interstate compact on adoption and medical assistance
#> 8678 interstate compact on adoption and medical assistance
#> 8679 interstate compact on adoption and medical assistance
#> 8680 interstate compact on adoption and medical assistance
#> 8681 interstate compact on adoption and medical assistance
#> 8682 interstate compact on adoption and medical assistance
#> 8683 interstate compact on adoption and medical assistance
#> 8684 interstate compact on adoption and medical assistance
#> 8685 interstate compact on adoption and medical assistance
#> 8686 interstate compact on agricultural grain marketing
#> 8687 interstate compact on agricultural grain marketing
#> 8688 interstate compact on educational opportunity for military children
#> 8689 interstate compact on educational opportunity for military children
#> 8690 interstate compact on educational opportunity for military children
#> 8691 interstate compact on educational opportunity for military children
#> 8692 interstate compact on educational opportunity for military children
#> 8693 interstate compact on educational opportunity for military children
#> 8694 interstate compact on educational opportunity for military children
#> 8695 interstate compact on educational opportunity for military children
#> 8696 interstate compact on educational opportunity for military children
#> 8697 interstate compact on educational opportunity for military children
#> 8698 interstate compact on educational opportunity for military children
#> 8699 interstate compact on educational opportunity for military children
#> 8700 interstate compact on educational opportunity for military children
#> 8701 interstate compact on educational opportunity for military children
#> 8702 interstate compact on educational opportunity for military children
#> 8703 interstate compact on educational opportunity for military children
#> 8704 interstate compact on educational opportunity for military children
#> 8705 interstate compact on educational opportunity for military children
#> 8706 interstate compact on educational opportunity for military children
#> 8707 interstate compact on educational opportunity for military children
#> 8708 interstate compact on educational opportunity for military children
#> 8709 interstate compact on educational opportunity for military children
#> 8710 interstate compact on educational opportunity for military children
#> 8711 interstate compact on educational opportunity for military children
#> 8712 interstate compact on educational opportunity for military children
#> 8713 interstate compact on educational opportunity for military children
#> 8714 interstate compact on educational opportunity for military children
#> 8715 interstate compact on educational opportunity for military children
#> 8716 interstate compact on educational opportunity for military children
#> 8717 interstate compact on educational opportunity for military children
#> 8718 interstate compact on educational opportunity for military children
#> 8719 interstate compact on educational opportunity for military children
#> 8720 interstate compact on educational opportunity for military children
#> 8721 interstate compact on educational opportunity for military children
#> 8722 interstate compact on educational opportunity for military children
#> 8723 interstate compact on educational opportunity for military children
#> 8724 interstate compact on educational opportunity for military children
#> 8725 interstate compact on educational opportunity for military children
#> 8726 interstate compact on educational opportunity for military children
#> 8727 interstate compact on educational opportunity for military children
#> 8728 interstate compact on educational opportunity for military children
#> 8729 interstate compact on educational opportunity for military children
#> 8730 interstate compact on educational opportunity for military children
#> 8731 interstate compact on educational opportunity for military children
#> 8732 interstate compact on educational opportunity for military children
#> 8733 interstate compact on educational opportunity for military children
#> 8734 interstate compact on educational opportunity for military children
#> 8735 interstate compact on educational opportunity for military children
#> 8736 interstate compact on educational opportunity for military children
#> 8737 interstate compact on industrialized/modular buildings
#> 8738 interstate compact on industrialized/modular buildings
#> 8739 interstate compact on industrialized/modular buildings
#> 8740 interstate compact on industrialized/modular buildings
#> 8741 interstate compact on licensure of participants in horse racing with pari-mutuel wagering
#> 8742 interstate compact on licensure of participants in horse racing with pari-mutuel wagering
#> 8743 interstate compact on licensure of participants in horse racing with pari-mutuel wagering
#> 8744 interstate compact on licensure of participants in horse racing with pari-mutuel wagering
#> 8745 interstate compact on licensure of participants in horse racing with pari-mutuel wagering
#> 8746 interstate compact on licensure of participants in horse racing with pari-mutuel wagering
#> 8747 interstate compact on licensure of participants in horse racing with pari-mutuel wagering
#> 8748 interstate compact on licensure of participants in horse racing with pari-mutuel wagering
#> 8749 interstate compact on licensure of participants in horse racing with pari-mutuel wagering
#> 8750 interstate compact on licensure of participants in horse racing with pari-mutuel wagering
#> 8751 interstate compact on licensure of participants in horse racing with pari-mutuel wagering
#> 8752 interstate compact on licensure of participants in horse racing with pari-mutuel wagering
#> 8753 interstate compact on licensure of participants in horse racing with pari-mutuel wagering
#> 8754 interstate compact on licensure of participants in horse racing with pari-mutuel wagering
#> 8755 interstate compact on mentally disordered offenders
#> 8756 interstate compact on mentally disordered offenders
#> 8757 interstate compact on mentally disordered offenders
#> 8758 interstate compact on mentally disordered offenders
#> 8759 interstate compact on mentally disordered offenders
#> 8760 interstate compact on mentally disordered offenders
#> 8761 interstate compact on mentally disordered offenders
#> 8762 interstate compact on mentally disordered offenders
#> 8763 interstate compact on the placement of children
#> 8764 interstate compact to conserve oil and gas
#> 8765 interstate compact to conserve oil and gas
#> 8766 interstate compact to conserve oil and gas
#> 8767 interstate compact to conserve oil and gas
#> 8768 interstate compact to conserve oil and gas
#> 8769 interstate compact to conserve oil and gas
#> 8770 interstate compact to conserve oil and gas
#> 8771 interstate compact to conserve oil and gas
#> 8772 interstate compact to conserve oil and gas
#> 8773 interstate compact to conserve oil and gas
#> 8774 interstate compact to conserve oil and gas
#> 8775 interstate compact to conserve oil and gas
#> 8776 interstate compact to conserve oil and gas
#> 8777 interstate compact to conserve oil and gas
#> 8778 interstate compact to conserve oil and gas
#> 8779 interstate compact to conserve oil and gas
#> 8780 interstate compact to conserve oil and gas
#> 8781 interstate compact to conserve oil and gas
#> 8782 interstate compact to conserve oil and gas
#> 8783 interstate compact to conserve oil and gas
#> 8784 interstate compact to conserve oil and gas
#> 8785 interstate compact to conserve oil and gas
#> 8786 interstate compact to conserve oil and gas
#> 8787 interstate compact to conserve oil and gas
#> 8788 interstate compact to conserve oil and gas
#> 8789 interstate compact to conserve oil and gas
#> 8790 interstate compact to conserve oil and gas
#> 8791 interstate compact to conserve oil and gas
#> 8792 interstate compact to conserve oil and gas
#> 8793 interstate corrections compact
#> 8794 interstate corrections compact
#> 8795 interstate corrections compact
#> 8796 interstate corrections compact
#> 8797 interstate corrections compact
#> 8798 interstate corrections compact
#> 8799 interstate corrections compact
#> 8800 interstate corrections compact
#> 8801 interstate corrections compact
#> 8802 interstate corrections compact
#> 8803 interstate corrections compact
#> 8804 interstate corrections compact
#> 8805 interstate corrections compact
#> 8806 interstate corrections compact
#> 8807 interstate corrections compact
#> 8808 interstate corrections compact
#> 8809 interstate corrections compact
#> 8810 interstate corrections compact
#> 8811 interstate corrections compact
#> 8812 interstate corrections compact
#> 8813 interstate corrections compact
#> 8814 interstate corrections compact
#> 8815 interstate corrections compact
#> 8816 interstate corrections compact
#> 8817 interstate corrections compact
#> 8818 interstate corrections compact
#> 8819 interstate corrections compact
#> 8820 interstate corrections compact
#> 8821 interstate corrections compact
#> 8822 interstate corrections compact
#> 8823 interstate corrections compact
#> 8824 interstate corrections compact
#> 8825 interstate corrections compact
#> 8826 interstate corrections compact
#> 8827 interstate corrections compact
#> 8828 interstate corrections compact
#> 8829 interstate corrections compact
#> 8830 interstate corrections compact
#> 8831 interstate depositions and discovery act
#> 8832 interstate depositions and discovery act
#> 8833 interstate depositions and discovery act
#> 8834 interstate depositions and discovery act
#> 8835 interstate depositions and discovery act
#> 8836 interstate depositions and discovery act
#> 8837 interstate depositions and discovery act
#> 8838 interstate depositions and discovery act
#> 8839 interstate depositions and discovery act
#> 8840 interstate depositions and discovery act
#> 8841 interstate depositions and discovery act
#> 8842 interstate depositions and discovery act
#> 8843 interstate depositions and discovery act
#> 8844 interstate depositions and discovery act
#> 8845 interstate depositions and discovery act
#> 8846 interstate depositions and discovery act
#> 8847 interstate depositions and discovery act
#> 8848 interstate depositions and discovery act
#> 8849 interstate depositions and discovery act
#> 8850 interstate depositions and discovery act
#> 8851 interstate depositions and discovery act
#> 8852 interstate depositions and discovery act
#> 8853 interstate depositions and discovery act
#> 8854 interstate depositions and discovery act
#> 8855 interstate depositions and discovery act
#> 8856 interstate depositions and discovery act
#> 8857 interstate depositions and discovery act
#> 8858 interstate depositions and discovery act
#> 8859 interstate depositions and discovery act
#> 8860 interstate depositions and discovery act
#> 8861 interstate depositions and discovery act
#> 8862 interstate depositions and discovery act
#> 8863 interstate depositions and discovery act
#> 8864 interstate depositions and discovery act
#> 8865 interstate depositions and discovery act
#> 8866 interstate depositions and discovery act
#> 8867 interstate depositions and discovery act
#> 8868 interstate earthquake emergency compact
#> 8869 interstate earthquake emergency compact
#> 8870 interstate earthquake emergency compact
#> 8871 interstate earthquake emergency compact
#> 8872 interstate enforcement of domestic violence protection orders act
#> 8873 interstate enforcement of domestic violence protection orders act
#> 8874 interstate enforcement of domestic violence protection orders act
#> 8875 interstate enforcement of domestic violence protection orders act
#> 8876 interstate enforcement of domestic violence protection orders act
#> 8877 interstate enforcement of domestic violence protection orders act
#> 8878 interstate enforcement of domestic violence protection orders act
#> 8879 interstate enforcement of domestic violence protection orders act
#> 8880 interstate enforcement of domestic violence protection orders act
#> 8881 interstate enforcement of domestic violence protection orders act
#> 8882 interstate enforcement of domestic violence protection orders act
#> 8883 interstate enforcement of domestic violence protection orders act
#> 8884 interstate enforcement of domestic violence protection orders act
#> 8885 interstate enforcement of domestic violence protection orders act
#> 8886 interstate enforcement of domestic violence protection orders act
#> 8887 interstate enforcement of domestic violence protection orders act
#> 8888 interstate enforcement of domestic violence protection orders act
#> 8889 interstate enforcement of domestic violence protection orders act
#> 8890 interstate family support act (1992)(1996)
#> 8891 interstate family support act (1992)(1996)
#> 8892 interstate family support act (1992)(1996)
#> 8893 interstate family support act (1992)(1996)
#> 8894 interstate family support act (1992)(1996)
#> 8895 interstate family support act (1992)(1996)
#> 8896 interstate family support act (1992)(1996)
#> 8897 interstate family support act (1992)(1996)
#> 8898 interstate family support act (1992)(1996)
#> 8899 interstate family support act (1992)(1996)
#> 8900 interstate family support act (1992)(1996)
#> 8901 interstate family support act (1992)(1996)
#> 8902 interstate family support act (1992)(1996)
#> 8903 interstate family support act (1992)(1996)
#> 8904 interstate family support act (1992)(1996)
#> 8905 interstate family support act (1992)(1996)
#> 8906 interstate family support act (1992)(1996)
#> 8907 interstate family support act (1992)(1996)
#> 8908 interstate family support act (1992)(1996)
#> 8909 interstate family support act (1992)(1996)
#> 8910 interstate family support act (1992)(1996)
#> 8911 interstate family support act (1992)(1996)
#> 8912 interstate family support act (1992)(1996)
#> 8913 interstate family support act (1992)(1996)
#> 8914 interstate family support act (1992)(1996)
#> 8915 interstate family support act (1992)(1996)
#> 8916 interstate family support act (1992)(1996)
#> 8917 interstate family support act (1992)(1996)
#> 8918 interstate family support act (1992)(1996)
#> 8919 interstate family support act (1992)(1996)
#> 8920 interstate family support act (1992)(1996)
#> 8921 interstate family support act (1992)(1996)
#> 8922 interstate family support act (1992)(1996)
#> 8923 interstate family support act (1992)(1996)
#> 8924 interstate family support act (1992)(1996)
#> 8925 interstate family support act (1992)(1996)
#> 8926 interstate family support act (1992)(1996)
#> 8927 interstate family support act (1992)(1996)
#> 8928 interstate family support act (1992)(1996)
#> 8929 interstate family support act (1992)(1996)
#> 8930 interstate family support act (1992)(1996)
#> 8931 interstate family support act (1992)(1996)
#> 8932 interstate family support act (1992)(1996)
#> 8933 interstate family support act (1992)(1996)
#> 8934 interstate family support act (1992)(1996)
#> 8935 interstate family support act (1992)(1996)
#> 8936 interstate family support act (1992)(1996)
#> 8937 interstate family support act (1992)(1996)
#> 8938 interstate family support act (1992)(1996)
#> 8939 interstate family support act (2001)
#> 8940 interstate family support act (2001)
#> 8941 interstate family support act (2001)
#> 8942 interstate family support act (2001)
#> 8943 interstate family support act (2001)
#> 8944 interstate family support act (2001)
#> 8945 interstate family support act (2001)
#> 8946 interstate family support act (2001)
#> 8947 interstate family support act (2001)
#> 8948 interstate family support act (2001)
#> 8949 interstate family support act (2001)
#> 8950 interstate family support act (2001)
#> 8951 interstate family support act (2001)
#> 8952 interstate family support act (2001)
#> 8953 interstate family support act (2001)
#> 8954 interstate family support act (2001)
#> 8955 interstate family support act (2001)
#> 8956 interstate family support act (2001)
#> 8957 interstate family support act (2001)
#> 8958 interstate family support act (2001)
#> 8959 interstate family support act amendments (2008)
#> 8960 interstate family support act amendments (2008)
#> 8961 interstate family support act amendments (2008)
#> 8962 interstate family support act amendments (2008)
#> 8963 interstate family support act amendments (2008)
#> 8964 interstate family support act amendments (2008)
#> 8965 interstate family support act amendments (2008)
#> 8966 interstate family support act amendments (2008)
#> 8967 interstate family support act amendments (2008)
#> 8968 interstate family support act amendments (2008)
#> 8969 interstate family support act amendments (2008)
#> 8970 interstate family support act amendments (2008)
#> 8971 interstate family support act amendments (2008)
#> 8972 interstate family support act amendments (2008)
#> 8973 interstate family support act amendments (2008)
#> 8974 interstate family support act amendments (2008)
#> 8975 interstate family support act amendments (2008)
#> 8976 interstate family support act amendments (2008)
#> 8977 interstate family support act amendments (2008)
#> 8978 interstate family support act amendments (2008)
#> 8979 interstate family support act amendments (2008)
#> 8980 interstate family support act amendments (2008)
#> 8981 interstate family support act amendments (2008)
#> 8982 interstate family support act amendments (2008)
#> 8983 interstate family support act amendments (2008)
#> 8984 interstate family support act amendments (2008)
#> 8985 interstate family support act amendments (2008)
#> 8986 interstate family support act amendments (2008)
#> 8987 interstate family support act amendments (2008)
#> 8988 interstate family support act amendments (2008)
#> 8989 interstate family support act amendments (2008)
#> 8990 interstate family support act amendments (2008)
#> 8991 interstate family support act amendments (2008)
#> 8992 interstate family support act amendments (2008)
#> 8993 interstate family support act amendments (2008)
#> 8994 interstate family support act amendments (2008)
#> 8995 interstate family support act amendments (2008)
#> 8996 interstate family support act amendments (2008)
#> 8997 interstate family support act amendments (2008)
#> 8998 interstate family support act amendments (2008)
#> 8999 interstate family support act amendments (2008)
#> 9000 interstate family support act amendments (2008)
#> 9001 interstate family support act amendments (2008)
#> 9002 interstate family support act amendments (2008)
#> 9003 interstate family support act amendments (2008)
#> 9004 interstate family support act amendments (2008)
#> 9005 interstate family support act amendments (2008)
#> 9006 interstate family support act amendments (2008)
#> 9007 interstate family support act amendments (2008)
#> 9008 interstate forest fire suppression compact
#> 9009 interstate forest fire suppression compact
#> 9010 interstate forest fire suppression compact
#> 9011 interstate high speed rail network compact
#> 9012 interstate high speed rail network compact
#> 9013 interstate high speed rail network compact
#> 9014 interstate high speed rail network compact
#> 9015 interstate high speed rail network compact
#> 9016 interstate high speed rail network compact
#> 9017 interstate insurance product regulation compact
#> 9018 interstate insurance product regulation compact
#> 9019 interstate insurance product regulation compact
#> 9020 interstate insurance product regulation compact
#> 9021 interstate insurance product regulation compact
#> 9022 interstate insurance product regulation compact
#> 9023 interstate insurance product regulation compact
#> 9024 interstate insurance product regulation compact
#> 9025 interstate insurance product regulation compact
#> 9026 interstate insurance product regulation compact
#> 9027 interstate insurance product regulation compact
#> 9028 interstate insurance product regulation compact
#> 9029 interstate insurance product regulation compact
#> 9030 interstate insurance product regulation compact
#> 9031 interstate insurance product regulation compact
#> 9032 interstate insurance product regulation compact
#> 9033 interstate insurance product regulation compact
#> 9034 interstate insurance product regulation compact
#> 9035 interstate insurance product regulation compact
#> 9036 interstate insurance product regulation compact
#> 9037 interstate insurance product regulation compact
#> 9038 interstate insurance product regulation compact
#> 9039 interstate insurance product regulation compact
#> 9040 interstate insurance product regulation compact
#> 9041 interstate insurance product regulation compact
#> 9042 interstate insurance product regulation compact
#> 9043 interstate insurance product regulation compact
#> 9044 interstate insurance product regulation compact
#> 9045 interstate insurance product regulation compact
#> 9046 interstate insurance product regulation compact
#> 9047 interstate insurance product regulation compact
#> 9048 interstate insurance product regulation compact
#> 9049 interstate insurance product regulation compact
#> 9050 interstate insurance product regulation compact
#> 9051 interstate insurance product regulation compact
#> 9052 interstate insurance product regulation compact
#> 9053 interstate insurance product regulation compact
#> 9054 interstate insurance product regulation compact
#> 9055 interstate insurance product regulation compact
#> 9056 interstate insurance product regulation compact
#> 9057 interstate insurance product regulation compact
#> 9058 interstate insurance product regulation compact
#> 9059 interstate insurance receivership compact
#> 9060 interstate insurance receivership compact
#> 9061 interstate insurance receivership compact
#> 9062 interstate library compact
#> 9063 interstate library compact
#> 9064 interstate library compact
#> 9065 interstate library compact
#> 9066 interstate library compact
#> 9067 interstate library compact
#> 9068 interstate library compact
#> 9069 interstate library compact
#> 9070 interstate library compact
#> 9071 interstate library compact
#> 9072 interstate library compact
#> 9073 interstate library compact
#> 9074 interstate library compact
#> 9075 interstate library compact
#> 9076 interstate library compact
#> 9077 interstate library compact
#> 9078 interstate library compact
#> 9079 interstate library compact
#> 9080 interstate library compact
#> 9081 interstate library compact
#> 9082 interstate library compact
#> 9083 interstate library compact
#> 9084 interstate library compact
#> 9085 interstate library compact
#> 9086 interstate library compact
#> 9087 interstate library compact
#> 9088 interstate library compact
#> 9089 interstate library compact
#> 9090 interstate library compact
#> 9091 interstate library compact
#> 9092 interstate library compact
#> 9093 interstate library compact
#> 9094 interstate library compact
#> 9095 interstate medical licensure compact
#> 9096 interstate medical licensure compact
#> 9097 interstate medical licensure compact
#> 9098 interstate medical licensure compact
#> 9099 interstate medical licensure compact
#> 9100 interstate medical licensure compact
#> 9101 interstate medical licensure compact
#> 9102 interstate medical licensure compact
#> 9103 interstate medical licensure compact
#> 9104 interstate medical licensure compact
#> 9105 interstate medical licensure compact
#> 9106 interstate medical licensure compact
#> 9107 interstate medical licensure compact
#> 9108 interstate medical licensure compact
#> 9109 interstate medical licensure compact
#> 9110 interstate medical licensure compact
#> 9111 interstate medical licensure compact
#> 9112 interstate mining compact
#> 9113 interstate mining compact
#> 9114 interstate mining compact
#> 9115 interstate mining compact
#> 9116 interstate mining compact
#> 9117 interstate mining compact
#> 9118 interstate mining compact
#> 9119 interstate mining compact
#> 9120 interstate mutual aid compact
#> 9121 interstate mutual aid compact
#> 9122 interstate rail passenger network compact
#> 9123 interstate rail passenger network compact
#> 9124 interstate rail passenger network compact
#> 9125 interstate rail passenger network compact
#> 9126 interstate rail passenger network compact
#> 9127 interstate rail passenger network compact
#> 9128 interstate rail passenger network compact
#> 9129 intestacy, wills, and donative transfers act
#> 9130 intestacy, wills, and donative transfers act
#> 9131 intestacy, wills, and donative transfers act
#> 9132 intestacy, wills, and donative transfers act
#> 9133 jucoen
#> 9134 jucoen
#> 9135 jucoen
#> 9136 jucoen
#> 9137 jucoen
#> 9138 jucoen
#> 9139 jucoen
#> 9140 jucoen
#> 9141 jucoen
#> 9142 jucoen
#> 9143 jucoen
#> 9144 jucoen
#> 9145 jucoen
#> 9146 jucoen
#> 9147 jucoen
#> 9148 jucoen
#> 9149 jucoen
#> 9150 jucoen
#> 9151 jucoen
#> 9152 jucoen
#> 9153 jucoen
#> 9154 jucoen
#> 9155 jucoen
#> 9156 jucoen
#> 9157 jucoen
#> 9158 jucoen
#> 9159 jucoen
#> 9160 jucoen
#> 9161 jucoen
#> 9162 jucoen
#> 9163 jucoen
#> 9164 juvct
#> 9165 juvct
#> 9166 juvct
#> 9167 juvct
#> 9168 juvct
#> 9169 juvct
#> 9170 juvct
#> 9171 juvct
#> 9172 juvct
#> 9173 juvct
#> 9174 juvct
#> 9175 juvct
#> 9176 juvct
#> 9177 juvct
#> 9178 juvct
#> 9179 juvct
#> 9180 juvct
#> 9181 juvct
#> 9182 juvct
#> 9183 juvct
#> 9184 juvct
#> 9185 juvct
#> 9186 juvct
#> 9187 juvct
#> 9188 juvct
#> 9189 juvct
#> 9190 juvct
#> 9191 juvct
#> 9192 juvct
#> 9193 juvct
#> 9194 juvct
#> 9195 juvct
#> 9196 juvct
#> 9197 juvct
#> 9198 juvct
#> 9199 juvct
#> 9200 juvct
#> 9201 juvct
#> 9202 juvct
#> 9203 juvct
#> 9204 juvct
#> 9205 juvct
#> 9206 juvct
#> 9207 juvct
#> 9208 juvct
#> 9209 juvct
#> 9210 juvct
#> 9211 juvct
#> 9212 juvisup
#> 9213 juvisup
#> 9214 juvisup
#> 9215 juvisup
#> 9216 juvisup
#> 9217 juvisup
#> 9218 juvisup
#> 9219 juvisup
#> 9220 juvisup
#> 9221 juvisup
#> 9222 juvisup
#> 9223 juvisup
#> 9224 juvisup
#> 9225 juvisup
#> 9226 juvisup
#> 9227 juvisup
#> 9228 juvisup
#> 9229 juvisup
#> 9230 juvisup
#> 9231 juvisup
#> 9232 juvisup
#> 9233 juvisup
#> 9234 juvisup
#> 9235 juvisup
#> 9236 juvisup
#> 9237 juvisup
#> 9238 juvisup
#> 9239 juvisup
#> 9240 juvisup
#> 9241 juvisup
#> 9242 juvisup
#> 9243 juvisup
#> 9244 juvisup
#> 9245 juvisup
#> 9246 juvisup
#> 9247 juvisup
#> 9248 juvisup
#> 9249 juvisup
#> 9250 juvisup
#> 9251 juvisup
#> 9252 juvisup
#> 9253 keg_reg
#> 9254 keg_reg
#> 9255 keg_reg
#> 9256 keg_reg
#> 9257 keg_reg
#> 9258 keg_reg
#> 9259 keg_reg
#> 9260 keg_reg
#> 9261 keg_reg
#> 9262 keg_reg
#> 9263 keg_reg
#> 9264 keg_reg
#> 9265 keg_reg
#> 9266 keg_reg
#> 9267 keg_reg
#> 9268 keg_reg
#> 9269 keg_reg
#> 9270 keg_reg
#> 9271 keg_reg
#> 9272 keg_reg
#> 9273 keg_reg
#> 9274 keg_reg
#> 9275 keg_reg
#> 9276 keg_reg
#> 9277 keg_reg
#> 9278 keg_reg
#> 9279 keg_reg
#> 9280 keg_reg
#> 9281 keg_reg
#> 9282 keg_reg
#> 9283 keg_reg
#> 9284 kinship
#> 9285 kinship
#> 9286 kinship
#> 9287 kinship
#> 9288 kinship
#> 9289 kinship
#> 9290 kinship
#> 9291 kinship
#> 9292 kinship
#> 9293 kinship
#> 9294 kinship
#> 9295 kinship
#> 9296 kinship
#> 9297 kinship
#> 9298 kinship
#> 9299 kinship
#> 9300 kinship
#> 9301 kinship
#> 9302 kinship
#> 9303 kinship
#> 9304 kinship
#> 9305 kinship
#> 9306 kinship
#> 9307 kinship
#> 9308 kinship
#> 9309 kinship
#> 9310 labor_age_discriminatio
#> 9311 labor_age_discriminatio
#> 9312 labor_age_discriminatio
#> 9313 labor_age_discriminatio
#> 9314 labor_age_discriminatio
#> 9315 labor_age_discriminatio
#> 9316 labor_age_discriminatio
#> 9317 labor_age_discriminatio
#> 9318 labor_age_discriminatio
#> 9319 labor_age_discriminatio
#> 9320 labor_age_discriminatio
#> 9321 labor_age_discriminatio
#> 9322 labor_age_discriminatio
#> 9323 labor_age_discriminatio
#> 9324 labor_age_discriminatio
#> 9325 labor_age_discriminatio
#> 9326 labor_age_discriminatio
#> 9327 labor_age_discriminatio
#> 9328 labor_age_discriminatio
#> 9329 labor_age_discriminatio
#> 9330 labor_age_discriminatio
#> 9331 labor_age_discriminatio
#> 9332 labor_age_discriminatio
#> 9333 labor_age_discriminatio
#> 9334 labor_age_discriminatio
#> 9335 labor_age_discriminatio
#> 9336 labor_age_discriminatio
#> 9337 labor_age_discriminatio
#> 9338 labor_age_discriminatio
#> 9339 labor_age_discriminatio
#> 9340 labor_age_discriminatio
#> 9341 labor_age_discriminatio
#> 9342 labor_age_discriminatio
#> 9343 labor_age_discriminatio
#> 9344 labor_age_discriminatio
#> 9345 labor_age_discriminatio
#> 9346 labor_age_discriminatio
#> 9347 labor_age_discriminatio
#> 9348 labor_age_discriminatio
#> 9349 labor_age_discriminatio
#> 9350 labor_age_discriminatio
#> 9351 labor_age_discriminatio
#> 9352 labor_age_discriminatio
#> 9353 labor_age_discriminatio
#> 9354 labor_age_discriminatio
#> 9355 labor_age_discriminatio
#> 9356 labor_age_discriminatio
#> 9357 labor_age_discriminatio
#> 9358 labor_collective_bargaining_sta
#> 9359 labor_collective_bargaining_sta
#> 9360 labor_collective_bargaining_sta
#> 9361 labor_collective_bargaining_sta
#> 9362 labor_collective_bargaining_sta
#> 9363 labor_collective_bargaining_sta
#> 9364 labor_collective_bargaining_sta
#> 9365 labor_collective_bargaining_sta
#> 9366 labor_collective_bargaining_sta
#> 9367 labor_collective_bargaining_sta
#> 9368 labor_collective_bargaining_sta
#> 9369 labor_collective_bargaining_sta
#> 9370 labor_collective_bargaining_sta
#> 9371 labor_collective_bargaining_sta
#> 9372 labor_collective_bargaining_sta
#> 9373 labor_collective_bargaining_sta
#> 9374 labor_collective_bargaining_sta
#> 9375 labor_collective_bargaining_sta
#> 9376 labor_collective_bargaining_sta
#> 9377 labor_collective_bargaining_sta
#> 9378 labor_collective_bargaining_sta
#> 9379 labor_collective_bargaining_sta
#> 9380 labor_collective_bargaining_sta
#> 9381 labor_collective_bargaining_sta
#> 9382 labor_collective_bargaining_sta
#> 9383 labor_collective_bargaining_sta
#> 9384 labor_collective_bargaining_tea
#> 9385 labor_collective_bargaining_tea
#> 9386 labor_collective_bargaining_tea
#> 9387 labor_collective_bargaining_tea
#> 9388 labor_collective_bargaining_tea
#> 9389 labor_collective_bargaining_tea
#> 9390 labor_collective_bargaining_tea
#> 9391 labor_collective_bargaining_tea
#> 9392 labor_collective_bargaining_tea
#> 9393 labor_collective_bargaining_tea
#> 9394 labor_collective_bargaining_tea
#> 9395 labor_collective_bargaining_tea
#> 9396 labor_collective_bargaining_tea
#> 9397 labor_collective_bargaining_tea
#> 9398 labor_collective_bargaining_tea
#> 9399 labor_collective_bargaining_tea
#> 9400 labor_collective_bargaining_tea
#> 9401 labor_collective_bargaining_tea
#> 9402 labor_collective_bargaining_tea
#> 9403 labor_collective_bargaining_tea
#> 9404 labor_collective_bargaining_tea
#> 9405 labor_collective_bargaining_tea
#> 9406 labor_collective_bargaining_tea
#> 9407 labor_collective_bargaining_tea
#> 9408 labor_collective_bargaining_tea
#> 9409 labor_collective_bargaining_tea
#> 9410 labor_collective_bargaining_tea
#> 9411 labor_collective_bargaining_tea
#> 9412 labor_collective_bargaining_tea
#> 9413 labor_collective_bargaining_tea
#> 9414 labor_collective_bargaining_tea
#> 9415 labor_collective_bargaining_tea
#> 9416 labor_collective_bargaining_tea
#> 9417 labor_minimumwage_me
#> 9418 labor_minimumwage_me
#> 9419 labor_minimumwage_me
#> 9420 labor_minimumwage_me
#> 9421 labor_minimumwage_me
#> 9422 labor_minimumwage_me
#> 9423 labor_minimumwage_me
#> 9424 labor_minimumwage_me
#> 9425 labor_minimumwage_me
#> 9426 labor_minimumwage_me
#> 9427 labor_minimumwage_me
#> 9428 labor_minimumwage_me
#> 9429 labor_minimumwage_me
#> 9430 labor_minimumwage_me
#> 9431 labor_minimumwage_me
#> 9432 labor_minimumwage_me
#> 9433 labor_minimumwage_me
#> 9434 labor_minimumwage_me
#> 9435 labor_minimumwage_me
#> 9436 labor_minimumwage_me
#> 9437 labor_minimumwage_me
#> 9438 labor_minimumwage_me
#> 9439 labor_minimumwage_me
#> 9440 labor_minimumwage_me
#> 9441 labor_minimumwage_me
#> 9442 labor_minimumwage_me
#> 9443 labor_minimumwage_me
#> 9444 labor_minimumwage_me
#> 9445 labor_minwage_abovefe
#> 9446 labor_minwage_abovefe
#> 9447 labor_minwage_abovefe
#> 9448 labor_minwage_abovefe
#> 9449 labor_minwage_abovefe
#> 9450 labor_minwage_abovefe
#> 9451 labor_minwage_abovefe
#> 9452 labor_minwage_abovefe
#> 9453 labor_minwage_abovefe
#> 9454 labor_minwage_abovefe
#> 9455 labor_minwage_abovefe
#> 9456 labor_minwage_abovefe
#> 9457 labor_minwage_abovefe
#> 9458 labor_minwage_abovefe
#> 9459 labor_minwage_abovefe
#> 9460 labor_minwage_abovefe
#> 9461 labor_minwage_abovefe
#> 9462 labor_minwage_abovefe
#> 9463 labor_minwage_abovefe
#> 9464 labor_minwage_abovefe
#> 9465 labor_minwage_abovefe
#> 9466 labor_minwage_abovefe
#> 9467 labor_minwage_abovefe
#> 9468 labor_minwage_abovefe
#> 9469 labor_minwage_abovefe
#> 9470 labor_minwage_abovefe
#> 9471 labor_minwage_abovefe
#> 9472 labor_minwage_abovefe
#> 9473 labor_minwage_abovefe
#> 9474 labor_minwage_abovefe
#> 9475 labor_prevailing_wage_la
#> 9476 labor_prevailing_wage_la
#> 9477 labor_prevailing_wage_la
#> 9478 labor_prevailing_wage_la
#> 9479 labor_prevailing_wage_la
#> 9480 labor_prevailing_wage_la
#> 9481 labor_prevailing_wage_la
#> 9482 labor_prevailing_wage_la
#> 9483 labor_prevailing_wage_la
#> 9484 labor_prevailing_wage_la
#> 9485 labor_prevailing_wage_la
#> 9486 labor_prevailing_wage_la
#> 9487 labor_prevailing_wage_la
#> 9488 labor_prevailing_wage_la
#> 9489 labor_prevailing_wage_la
#> 9490 labor_prevailing_wage_la
#> 9491 labor_prevailing_wage_la
#> 9492 labor_prevailing_wage_la
#> 9493 labor_prevailing_wage_la
#> 9494 labor_prevailing_wage_la
#> 9495 labor_prevailing_wage_la
#> 9496 labor_prevailing_wage_la
#> 9497 labor_prevailing_wage_la
#> 9498 labor_prevailing_wage_la
#> 9499 labor_prevailing_wage_la
#> 9500 labor_prevailing_wage_la
#> 9501 labor_prevailing_wage_la
#> 9502 labor_prevailing_wage_la
#> 9503 labor_prevailing_wage_la
#> 9504 labor_prevailing_wage_la
#> 9505 labor_prevailing_wage_la
#> 9506 labor_prevailing_wage_la
#> 9507 labor_prevailing_wage_la
#> 9508 labor_prevailing_wage_la
#> 9509 labor_prevailing_wage_la
#> 9510 labor_prevailing_wage_la
#> 9511 labor_prevailing_wage_la
#> 9512 labor_prevailing_wage_la
#> 9513 labor_prevailing_wage_la
#> 9514 labor_prevailing_wage_la
#> 9515 labor_prevailing_wage_la
#> 9516 labor_relations_tafthar
#> 9517 labor_relations_tafthar
#> 9518 labor_relations_tafthar
#> 9519 labor_relations_tafthar
#> 9520 labor_relations_tafthar
#> 9521 labor_relations_tafthar
#> 9522 labor_relations_tafthar
#> 9523 labor_relations_tafthar
#> 9524 labor_relations_wagne
#> 9525 labor_relations_wagne
#> 9526 labor_relations_wagne
#> 9527 labor_relations_wagne
#> 9528 labor_relations_wagne
#> 9529 labor_relations_wagne
#> 9530 labor_relations_wagne
#> 9531 labor_right_to_wor
#> 9532 labor_right_to_wor
#> 9533 labor_right_to_wor
#> 9534 labor_right_to_wor
#> 9535 labor_right_to_wor
#> 9536 labor_right_to_wor
#> 9537 labor_right_to_wor
#> 9538 labor_right_to_wor
#> 9539 labor_right_to_wor
#> 9540 labor_right_to_wor
#> 9541 labor_right_to_wor
#> 9542 labor_right_to_wor
#> 9543 labor_right_to_wor
#> 9544 labor_right_to_wor
#> 9545 labor_right_to_wor
#> 9546 labor_right_to_wor
#> 9547 labor_right_to_wor
#> 9548 labor_right_to_wor
#> 9549 labor_right_to_wor
#> 9550 labor_right_to_wor
#> 9551 labor_right_to_wor
#> 9552 labor_right_to_wor
#> 9553 labor_right_to_wor
#> 9554 labor_right_to_wor
#> 9555 labor_right_to_wor
#> 9556 labor_right_to_wor
#> 9557 labor_state_ada_accomodat
#> 9558 labor_state_ada_accomodat
#> 9559 labor_state_ada_accomodat
#> 9560 labor_state_ada_accomodat
#> 9561 labor_state_ada_accomodat
#> 9562 labor_state_ada_accomodat
#> 9563 labor_state_ada_accomodat
#> 9564 labor_state_ada_accomodat
#> 9565 labor_state_ada_accomodat
#> 9566 labor_state_ada_accomodat
#> 9567 labor_state_ada_accomodat
#> 9568 labor_state_ada_accomodat
#> 9569 labor_state_ada_accomodat
#> 9570 labor_state_ada_accomodat
#> 9571 labor_state_ada_accomodat
#> 9572 labor_state_ada_accomodat
#> 9573 labor_state_ada_accomodat
#> 9574 labor_state_ada_accomodat
#> 9575 labor_state_ada_antidiscri
#> 9576 labor_state_ada_antidiscri
#> 9577 labor_state_ada_antidiscri
#> 9578 labor_state_ada_antidiscri
#> 9579 labor_state_ada_antidiscri
#> 9580 labor_state_ada_antidiscri
#> 9581 labor_state_ada_antidiscri
#> 9582 labor_state_ada_antidiscri
#> 9583 labor_state_ada_antidiscri
#> 9584 labor_state_ada_antidiscri
#> 9585 labor_state_ada_antidiscri
#> 9586 labor_state_ada_antidiscri
#> 9587 labor_state_ada_antidiscri
#> 9588 labor_state_ada_antidiscri
#> 9589 labor_state_ada_antidiscri
#> 9590 labor_state_ada_antidiscri
#> 9591 labor_state_ada_antidiscri
#> 9592 labor_state_ada_antidiscri
#> 9593 labor_state_ada_antidiscri
#> 9594 labor_state_ada_antidiscri
#> 9595 labor_state_ada_antidiscri
#> 9596 labor_state_ada_antidiscri
#> 9597 labor_state_ada_antidiscri
#> 9598 labor_state_ada_antidiscri
#> 9599 labor_state_ada_antidiscri
#> 9600 labor_state_ada_antidiscri
#> 9601 labor_state_ada_antidiscri
#> 9602 labor_state_ada_antidiscri
#> 9603 labor_state_ada_antidiscri
#> 9604 labor_state_ada_antidiscri
#> 9605 labor_state_ada_antidiscri
#> 9606 labor_state_ada_antidiscri
#> 9607 labor_state_ada_antidiscri
#> 9608 labor_state_ada_antidiscri
#> 9609 labor_state_ada_antidiscri
#> 9610 labor_state_ada_antidiscri
#> 9611 labor_state_ada_antidiscri
#> 9612 labor_state_ada_antidiscri
#> 9613 labor_state_ada_antidiscri
#> 9614 labor_state_ada_antidiscri
#> 9615 labor_state_ada_antidiscri
#> 9616 labor_state_disability_insuranc
#> 9617 labor_state_disability_insuranc
#> 9618 labor_state_disability_insuranc
#> 9619 labor_state_disability_insuranc
#> 9620 labor_state_disability_insuranc
#> 9621 labor_state_retirement_syste
#> 9622 labor_state_retirement_syste
#> 9623 labor_state_retirement_syste
#> 9624 labor_state_retirement_syste
#> 9625 labor_state_retirement_syste
#> 9626 labor_state_retirement_syste
#> 9627 labor_state_retirement_syste
#> 9628 labor_state_retirement_syste
#> 9629 labor_state_retirement_syste
#> 9630 labor_state_retirement_syste
#> 9631 labor_state_retirement_syste
#> 9632 labor_state_retirement_syste
#> 9633 labor_state_retirement_syste
#> 9634 labor_state_retirement_syste
#> 9635 labor_state_retirement_syste
#> 9636 labor_state_retirement_syste
#> 9637 labor_state_retirement_syste
#> 9638 labor_state_retirement_syste
#> 9639 labor_state_retirement_syste
#> 9640 labor_state_retirement_syste
#> 9641 labor_state_retirement_syste
#> 9642 labor_state_retirement_syste
#> 9643 labor_state_retirement_syste
#> 9644 labor_state_retirement_syste
#> 9645 labor_state_retirement_syste
#> 9646 labor_state_retirement_syste
#> 9647 labor_state_retirement_syste
#> 9648 labor_state_retirement_syste
#> 9649 labor_state_retirement_syste
#> 9650 labor_state_retirement_syste
#> 9651 labor_state_retirement_syste
#> 9652 labor_state_retirement_syste
#> 9653 labor_state_retirement_syste
#> 9654 labor_state_retirement_syste
#> 9655 labor_state_retirement_syste
#> 9656 labor_state_retirement_syste
#> 9657 labor_state_retirement_syste
#> 9658 labor_state_retirement_syste
#> 9659 labor_state_retirement_syste
#> 9660 labor_state_retirement_syste
#> 9661 labor_state_retirement_syste
#> 9662 labor_state_retirement_syste
#> 9663 labor_state_retirement_syste
#> 9664 labor_state_retirement_syste
#> 9665 labor_state_retirement_syste
#> 9666 labor_state_retirement_syste
#> 9667 laborag
#> 9668 laborag
#> 9669 laborag
#> 9670 laborag
#> 9671 laborag
#> 9672 laborag
#> 9673 laborag
#> 9674 laborag
#> 9675 laborag
#> 9676 laborag
#> 9677 laborag
#> 9678 laborag
#> 9679 laborag
#> 9680 laborag
#> 9681 laborag
#> 9682 laborag
#> 9683 laborag
#> 9684 laborag
#> 9685 laborag
#> 9686 laborag
#> 9687 laborag
#> 9688 laborag
#> 9689 laborag
#> 9690 laborag
#> 9691 laborag
#> 9692 laborag
#> 9693 laborag
#> 9694 laborag
#> 9695 laborag
#> 9696 laborag
#> 9697 laborag
#> 9698 laborag
#> 9699 laborag
#> 9700 laborag
#> 9701 laborag
#> 9702 laborag
#> 9703 laborag
#> 9704 laborag
#> 9705 laborag
#> 9706 laborag
#> 9707 land sales practices
#> 9708 land sales practices
#> 9709 land sales practices
#> 9710 land sales practices
#> 9711 land sales practices
#> 9712 land sales practices
#> 9713 land sales practices
#> 9714 land sales practices
#> 9715 land sales practices
#> 9716 law on notarial acts, revised
#> 9717 law on notarial acts, revised
#> 9718 law on notarial acts, revised
#> 9719 law on notarial acts, revised
#> 9720 law on notarial acts, revised
#> 9721 law on notarial acts, revised
#> 9722 legpre
#> 9723 legpre
#> 9724 legpre
#> 9725 legpre
#> 9726 legpre
#> 9727 legpre
#> 9728 legpre
#> 9729 legpre
#> 9730 legpre
#> 9731 legpre
#> 9732 legpre
#> 9733 legpre
#> 9734 legpre
#> 9735 legpre
#> 9736 legpre
#> 9737 legpre
#> 9738 legpre
#> 9739 legpre
#> 9740 legpre
#> 9741 legpre
#> 9742 legpre
#> 9743 legpre
#> 9744 legpre
#> 9745 legpre
#> 9746 legpre
#> 9747 legpre
#> 9748 legpre
#> 9749 legpre
#> 9750 legpre
#> 9751 legpre
#> 9752 legresea
#> 9753 legresea
#> 9754 legresea
#> 9755 legresea
#> 9756 legresea
#> 9757 legresea
#> 9758 legresea
#> 9759 legresea
#> 9760 legresea
#> 9761 legresea
#> 9762 legresea
#> 9763 legresea
#> 9764 legresea
#> 9765 legresea
#> 9766 legresea
#> 9767 legresea
#> 9768 legresea
#> 9769 legresea
#> 9770 legresea
#> 9771 legresea
#> 9772 legresea
#> 9773 legresea
#> 9774 legresea
#> 9775 legresea
#> 9776 legresea
#> 9777 legresea
#> 9778 legresea
#> 9779 legresea
#> 9780 legresea
#> 9781 legresea
#> 9782 legresea
#> 9783 legresea
#> 9784 legresea
#> 9785 legresea
#> 9786 legresea
#> 9787 legresea
#> 9788 legresea
#> 9789 legresea
#> 9790 legresea
#> 9791 legresea
#> 9792 legresea
#> 9793 legresea
#> 9794 legresea
#> 9795 legresea
#> 9796 legresea
#> 9797 legresea
#> 9798 legresea
#> 9799 legresea
#> 9800 lemon
#> 9801 lemon
#> 9802 lemon
#> 9803 lemon
#> 9804 lemon
#> 9805 lemon
#> 9806 lemon
#> 9807 lemon
#> 9808 lemon
#> 9809 lemon
#> 9810 lemon
#> 9811 lemon
#> 9812 lemon
#> 9813 lemon
#> 9814 lemon
#> 9815 lemon
#> 9816 lemon
#> 9817 lemon
#> 9818 lemon
#> 9819 lemon
#> 9820 lemon
#> 9821 lemon
#> 9822 lemon
#> 9823 lemon
#> 9824 lemon
#> 9825 lemon
#> 9826 lemon
#> 9827 lemon
#> 9828 lemon
#> 9829 libext
#> 9830 libext
#> 9831 libext
#> 9832 libext
#> 9833 libext
#> 9834 libext
#> 9835 libext
#> 9836 libext
#> 9837 libext
#> 9838 libext
#> 9839 libext
#> 9840 libext
#> 9841 libext
#> 9842 libext
#> 9843 libext
#> 9844 libext
#> 9845 libext
#> 9846 libext
#> 9847 libext
#> 9848 libext
#> 9849 libext
#> 9850 libext
#> 9851 libext
#> 9852 libext
#> 9853 libext
#> 9854 libext
#> 9855 libext
#> 9856 libext
#> 9857 libext
#> 9858 libext
#> 9859 libext
#> 9860 libext
#> 9861 libext
#> 9862 libext
#> 9863 libext
#> 9864 libext
#> 9865 libext
#> 9866 libext
#> 9867 libext
#> 9868 libext
#> 9869 libext
#> 9870 libext
#> 9871 libext
#> 9872 libext
#> 9873 libext
#> 9874 libext
#> 9875 libext
#> 9876 libext
#> 9877 license_plates
#> 9878 license_plates
#> 9879 license_plates
#> 9880 license_plates
#> 9881 licenseplate
#> 9882 licenseplate
#> 9883 licenseplate
#> 9884 licenseplate
#> 9885 licenseplate
#> 9886 licenseplate
#> 9887 licenseplate
#> 9888 licenseplate
#> 9889 licenseplate
#> 9890 licenseplate
#> 9891 licenseplate
#> 9892 licenseplate
#> 9893 licenseplate
#> 9894 licenseplate
#> 9895 licenseplate
#> 9896 licenseplate
#> 9897 licenseplate
#> 9898 licenseplate
#> 9899 licenseplate
#> 9900 licenseplate
#> 9901 licenseplate
#> 9902 licenseplate
#> 9903 licenseplate
#> 9904 licenseplate
#> 9905 licenseplate
#> 9906 licenseplate
#> 9907 licenseplate
#> 9908 licenseplate
#> 9909 licenseplate
#> 9910 licenseplate
#> 9911 licenseplate
#> 9912 licenseplate
#> 9913 licenseplate
#> 9914 licenses_accountant
#> 9915 licenses_accountant
#> 9916 licenses_accountant
#> 9917 licenses_accountant
#> 9918 licenses_accountant
#> 9919 licenses_accountant
#> 9920 licenses_accountant
#> 9921 licenses_accountant
#> 9922 licenses_accountant
#> 9923 licenses_accountant
#> 9924 licenses_accountant
#> 9925 licenses_accountant
#> 9926 licenses_accountant
#> 9927 licenses_accountant
#> 9928 licenses_accountant
#> 9929 licenses_accountant
#> 9930 licenses_accountant
#> 9931 licenses_accountant
#> 9932 licenses_accountant
#> 9933 licenses_accountant
#> 9934 licenses_accountant
#> 9935 licenses_accountant
#> 9936 licenses_accountant
#> 9937 licenses_accountant
#> 9938 licenses_accountant
#> 9939 licenses_accountant
#> 9940 licenses_accountant
#> 9941 licenses_accountant
#> 9942 licenses_accountant
#> 9943 licenses_accountant
#> 9944 licenses_accountant
#> 9945 licenses_accountant
#> 9946 licenses_accountant
#> 9947 licenses_accountant
#> 9948 licenses_accountant
#> 9949 licenses_accountant
#> 9950 licenses_accountant
#> 9951 licenses_accountant
#> 9952 licenses_accountant
#> 9953 licenses_accountant
#> 9954 licenses_accountant
#> 9955 licenses_accountant
#> 9956 licenses_accountant
#> 9957 licenses_accountant
#> 9958 licenses_accountant
#> 9959 licenses_accountant
#> 9960 licenses_accountant
#> 9961 licenses_accountant
#> 9962 limited cooperative association act (2007) (last amended 2013)
#> 9963 limited cooperative association act (2007) (last amended 2013)
#> 9964 limited cooperative association act (2007) (last amended 2013)
#> 9965 limited cooperative association act (2007) (last amended 2013)
#> 9966 limited cooperative association act (2007) (last amended 2013)
#> 9967 limited cooperative association act (2007) (last amended 2013)
#> 9968 limited liability company (1995)(1996)
#> 9969 limited liability company (1995)(1996)
#> 9970 limited liability company (1995)(1996)
#> 9971 limited liability company (1995)(1996)
#> 9972 limited liability company (1995)(1996)
#> 9973 limited liability company (2006) (last amended 2013)
#> 9974 limited liability company (2006) (last amended 2013)
#> 9975 limited liability company (2006) (last amended 2013)
#> 9976 limited liability company (2006) (last amended 2013)
#> 9977 limited liability company (2006) (last amended 2013)
#> 9978 limited liability company (2006) (last amended 2013)
#> 9979 limited liability company (2006) (last amended 2013)
#> 9980 limited liability company (2006) (last amended 2013)
#> 9981 limited liability company (2006) (last amended 2013)
#> 9982 limited liability company (2006) (last amended 2013)
#> 9983 limited liability company (2006) (last amended 2013)
#> 9984 limited liability company (2006) (last amended 2013)
#> 9985 limited liability company (2006) (last amended 2013)
#> 9986 limited liability company (2006) (last amended 2013)
#> 9987 limited liability company (2006) (last amended 2013)
#> 9988 limited liability company (2006) (last amended 2013)
#> 9989 limited liability company (2006) (last amended 2013)
#> 9990 limited partnership (1976)
#> 9991 limited partnership (1976)
#> 9992 limited partnership (1976)
#> 9993 limited partnership (1976)
#> 9994 limited partnership (1976)
#> 9995 limited partnership (1976)
#> 9996 limited partnership (1976)
#> 9997 limited partnership (1976)
#> 9998 limited partnership (1976)
#> 9999 limited partnership (1976)
#> 10000 limited partnership (1976)
#> 10001 limited partnership (1976)
#> 10002 limited partnership (1976)
#> 10003 limited partnership (1976)
#> 10004 limited partnership (1976)
#> 10005 limited partnership (1976)
#> 10006 limited partnership (1976)
#> 10007 limited partnership (1976)
#> 10008 limited partnership (1976)
#> 10009 limited partnership (1976)
#> 10010 limited partnership (1976)
#> 10011 limited partnership (1976)
#> 10012 limited partnership (1976)
#> 10013 limited partnership (1976)
#> 10014 limited partnership (1976)
#> 10015 limited partnership (1976)
#> 10016 limited partnership (1976)
#> 10017 limited partnership (1976)
#> 10018 limited partnership (1976)
#> 10019 limited partnership (1976)
#> 10020 limited partnership (1976)
#> 10021 limited partnership (1976)
#> 10022 limited partnership (1976)
#> 10023 limited partnership (1976)
#> 10024 limited partnership (1976)
#> 10025 limited partnership (1976)
#> 10026 limited partnership (1976)
#> 10027 limited partnership (1976)
#> 10028 limited partnership (1976)
#> 10029 limited partnership (1976)
#> 10030 limited partnership (1976)
#> 10031 limited partnership (1976)
#> 10032 limited partnership (1976)
#> 10033 limited partnership act (1916)
#> 10034 limited partnership act (1916)
#> 10035 limited partnership act (1916)
#> 10036 limited partnership act (1916)
#> 10037 limited partnership act (2001) (last amended 2013)
#> 10038 limited partnership act (2001) (last amended 2013)
#> 10039 limited partnership act (2001) (last amended 2013)
#> 10040 limited partnership act (2001) (last amended 2013)
#> 10041 limited partnership act (2001) (last amended 2013)
#> 10042 limited partnership act (2001) (last amended 2013)
#> 10043 limited partnership act (2001) (last amended 2013)
#> 10044 limited partnership act (2001) (last amended 2013)
#> 10045 limited partnership act (2001) (last amended 2013)
#> 10046 limited partnership act (2001) (last amended 2013)
#> 10047 limited partnership act (2001) (last amended 2013)
#> 10048 limited partnership act (2001) (last amended 2013)
#> 10049 limited partnership act (2001) (last amended 2013)
#> 10050 limited partnership act (2001) (last amended 2013)
#> 10051 limited partnership act (2001) (last amended 2013)
#> 10052 limited partnership act (2001) (last amended 2013)
#> 10053 limited partnership act (2001) (last amended 2013)
#> 10054 limited partnership act (2001) (last amended 2013)
#> 10055 limited partnership act (2001) (last amended 2013)
#> 10056 limited partnership act (2001) (last amended 2013)
#> 10057 lott
#> 10058 lott
#> 10059 lott
#> 10060 lott
#> 10061 lott
#> 10062 lott
#> 10063 lott
#> 10064 lott
#> 10065 lott
#> 10066 lott
#> 10067 lott
#> 10068 lott
#> 10069 lott
#> 10070 lott
#> 10071 lott
#> 10072 lott
#> 10073 lott
#> 10074 lott
#> 10075 lott
#> 10076 lott
#> 10077 lott
#> 10078 lott
#> 10079 lott
#> 10080 lott
#> 10081 lott
#> 10082 lott
#> 10083 lott
#> 10084 lott
#> 10085 lott
#> 10086 lott
#> 10087 lott
#> 10088 lott
#> 10089 lott
#> 10090 lott
#> 10091 lott
#> 10092 lott
#> 10093 mailreg
#> 10094 mailreg
#> 10095 mailreg
#> 10096 mailreg
#> 10097 mailreg
#> 10098 mailreg
#> 10099 mailreg
#> 10100 mailreg
#> 10101 mailreg
#> 10102 mailreg
#> 10103 mailreg
#> 10104 mailreg
#> 10105 mailreg
#> 10106 mailreg
#> 10107 mailreg
#> 10108 mailreg
#> 10109 mailreg
#> 10110 mailreg
#> 10111 mailreg
#> 10112 mailreg
#> 10113 mailreg
#> 10114 mailreg
#> 10115 mailreg
#> 10116 mailreg
#> 10117 mailreg
#> 10118 mailreg
#> 10119 mailreg
#> 10120 mailreg
#> 10121 mailreg
#> 10122 mailreg
#> 10123 mailreg
#> 10124 mailreg
#> 10125 mailreg
#> 10126 mailreg
#> 10127 mailreg
#> 10128 mailreg
#> 10129 mailreg
#> 10130 mailreg
#> 10131 mailreg
#> 10132 mailreg
#> 10133 mailreg
#> 10134 mailreg
#> 10135 mailreg
#> 10136 mailreg
#> 10137 mailreg
#> 10138 mailreg
#> 10139 mailreg
#> 10140 mailreg
#> 10141 mailreg
#> 10142 manaccess
#> 10143 manaccess
#> 10144 manaccess
#> 10145 manaccess
#> 10146 manaccess
#> 10147 manaccess
#> 10148 manaccess
#> 10149 manaccess
#> 10150 manaccess
#> 10151 manaccess
#> 10152 manaccess
#> 10153 manaccess
#> 10154 manaccess
#> 10155 management of institutional funds act
#> 10156 management of institutional funds act
#> 10157 management of institutional funds act
#> 10158 management of institutional funds act
#> 10159 management of institutional funds act
#> 10160 management of institutional funds act
#> 10161 management of institutional funds act
#> 10162 management of institutional funds act
#> 10163 management of institutional funds act
#> 10164 management of institutional funds act
#> 10165 management of institutional funds act
#> 10166 management of institutional funds act
#> 10167 management of institutional funds act
#> 10168 management of institutional funds act
#> 10169 management of institutional funds act
#> 10170 management of institutional funds act
#> 10171 management of institutional funds act
#> 10172 management of institutional funds act
#> 10173 management of institutional funds act
#> 10174 management of institutional funds act
#> 10175 management of institutional funds act
#> 10176 management of institutional funds act
#> 10177 management of institutional funds act
#> 10178 management of institutional funds act
#> 10179 management of institutional funds act
#> 10180 management of institutional funds act
#> 10181 management of institutional funds act
#> 10182 management of institutional funds act
#> 10183 management of institutional funds act
#> 10184 management of institutional funds act
#> 10185 management of institutional funds act
#> 10186 management of institutional funds act
#> 10187 management of institutional funds act
#> 10188 management of institutional funds act
#> 10189 management of public employee retirement systems act
#> 10190 management of public employee retirement systems act
#> 10191 manclin
#> 10192 manclin
#> 10193 manclin
#> 10194 manclin
#> 10195 manclin
#> 10196 manclin
#> 10197 manclin
#> 10198 manclin
#> 10199 manclin
#> 10200 manclin
#> 10201 manclin
#> 10202 manclin
#> 10203 manclin
#> 10204 manclin
#> 10205 manclin
#> 10206 manclin
#> 10207 manclin
#> 10208 manclin
#> 10209 manclin
#> 10210 manclin
#> 10211 manclin
#> 10212 manclin
#> 10213 manclin
#> 10214 mandatory disposition of detainers
#> 10215 mandatory disposition of detainers
#> 10216 mandatory disposition of detainers
#> 10217 mandatory disposition of detainers
#> 10218 mandatory disposition of detainers
#> 10219 mandatory disposition of detainers
#> 10220 mandatory disposition of detainers
#> 10221 mandatory disposition of detainers
#> 10222 mandnot
#> 10223 mandnot
#> 10224 mandnot
#> 10225 mandnot
#> 10226 mandnot
#> 10227 mandnot
#> 10228 mandnot
#> 10229 mandnot
#> 10230 mandnot
#> 10231 mandnot
#> 10232 mandnot
#> 10233 mandnot
#> 10234 marital property act
#> 10235 marriage and divorce act, model
#> 10236 marriage and divorce act, model
#> 10237 marriage and divorce act, model
#> 10238 marriage and divorce act, model
#> 10239 marriage and divorce act, model
#> 10240 marriage and divorce act, model
#> 10241 medianot
#> 10242 medianot
#> 10243 medianot
#> 10244 medianot
#> 10245 medianot
#> 10246 mediation act
#> 10247 mediation act
#> 10248 mediation act
#> 10249 mediation act
#> 10250 mediation act
#> 10251 mediation act
#> 10252 mediation act
#> 10253 mediation act
#> 10254 mediation act
#> 10255 mediation act
#> 10256 mediation act
#> 10257 medicaid_stateadoptio
#> 10258 medicaid_stateadoptio
#> 10259 medicaid_stateadoptio
#> 10260 medicaid_stateadoptio
#> 10261 medicaid_stateadoptio
#> 10262 medicaid_stateadoptio
#> 10263 medicaid_stateadoptio
#> 10264 medicaid_stateadoptio
#> 10265 medicaid_stateadoptio
#> 10266 medicaid_stateadoptio
#> 10267 medicaid_stateadoptio
#> 10268 medicaid_stateadoptio
#> 10269 medicaid_stateadoptio
#> 10270 medicaid_stateadoptio
#> 10271 medicaid_stateadoptio
#> 10272 medicaid_stateadoptio
#> 10273 medicaid_stateadoptio
#> 10274 medicaid_stateadoptio
#> 10275 medicaid_stateadoptio
#> 10276 medicaid_stateadoptio
#> 10277 medicaid_stateadoptio
#> 10278 medicaid_stateadoptio
#> 10279 medicaid_stateadoptio
#> 10280 medicaid_stateadoptio
#> 10281 medicaid_stateadoptio
#> 10282 medicaid_stateadoptio
#> 10283 medicaid_stateadoptio
#> 10284 medicaid_stateadoptio
#> 10285 medicaid_stateadoptio
#> 10286 medicaid_stateadoptio
#> 10287 medicaid_stateadoptio
#> 10288 medicaid_stateadoptio
#> 10289 medicaid_stateadoptio
#> 10290 medicaid_stateadoptio
#> 10291 medicaid_stateadoptio
#> 10292 medicaid_stateadoptio
#> 10293 medicaid_stateadoptio
#> 10294 medicaid_stateadoptio
#> 10295 medicaid_stateadoptio
#> 10296 medicaid_stateadoptio
#> 10297 medicaid_stateadoptio
#> 10298 medicaid_stateadoptio
#> 10299 medicaid_stateadoptio
#> 10300 medicaid_stateadoptio
#> 10301 medicaid_stateadoptio
#> 10302 medicaid_stateadoptio
#> 10303 medicaid_stateadoptio
#> 10304 medicaid_stateadoptio
#> 10305 medicaid_stateadoptio
#> 10306 medicalrest
#> 10307 medicalrest
#> 10308 medicalrest
#> 10309 medicalrest
#> 10310 medicalrest
#> 10311 medicalrest
#> 10312 medicalrest
#> 10313 medicalrest
#> 10314 medicalrest
#> 10315 medicalrest
#> 10316 medicalrest
#> 10317 medicalrest
#> 10318 medicalrest
#> 10319 medicalrest
#> 10320 medicalrest
#> 10321 medicalrest
#> 10322 medicalrest
#> 10323 medicalrest
#> 10324 medmar
#> 10325 medmar
#> 10326 medmar
#> 10327 medmar
#> 10328 medmar
#> 10329 medmar
#> 10330 medmar
#> 10331 medmar
#> 10332 medmar
#> 10333 medmar
#> 10334 medmar
#> 10335 medmar
#> 10336 medmar
#> 10337 medmar
#> 10338 medmar
#> 10339 medmar
#> 10340 medmar
#> 10341 medmar
#> 10342 medmar
#> 10343 medmar
#> 10344 medmar
#> 10345 medmar
#> 10346 medmar
#> 10347 medmar
#> 10348 medmar
#> 10349 medmar
#> 10350 medmar
#> 10351 medmar
#> 10352 medmar
#> 10353 medmar
#> 10354 medmar
#> 10355 meganslaw
#> 10356 meganslaw
#> 10357 meganslaw
#> 10358 meganslaw
#> 10359 meganslaw
#> 10360 meganslaw
#> 10361 meganslaw
#> 10362 meganslaw
#> 10363 meganslaw
#> 10364 meganslaw
#> 10365 meganslaw
#> 10366 meganslaw
#> 10367 meganslaw
#> 10368 meganslaw
#> 10369 meganslaw
#> 10370 meganslaw
#> 10371 meganslaw
#> 10372 meganslaw
#> 10373 meganslaw
#> 10374 meganslaw
#> 10375 meganslaw
#> 10376 meganslaw
#> 10377 meganslaw
#> 10378 meganslaw
#> 10379 meganslaw
#> 10380 meganslaw
#> 10381 meganslaw
#> 10382 meganslaw
#> 10383 meganslaw
#> 10384 meganslaw
#> 10385 meganslaw
#> 10386 meganslaw
#> 10387 meganslaw
#> 10388 meganslaw
#> 10389 meganslaw
#> 10390 meganslaw
#> 10391 meganslaw
#> 10392 meganslaw
#> 10393 meganslaw
#> 10394 meganslaw
#> 10395 meganslaw
#> 10396 meganslaw
#> 10397 meganslaw
#> 10398 meganslaw
#> 10399 meganslaw
#> 10400 meganslaw
#> 10401 meganslaw
#> 10402 meganslaw
#> 10403 meganslaw
#> 10404 meganslaw
#> 10405 mendeapen
#> 10406 mendeapen
#> 10407 mendeapen
#> 10408 mendeapen
#> 10409 mendeapen
#> 10410 mendeapen
#> 10411 mendeapen
#> 10412 mendeapen
#> 10413 mendeapen
#> 10414 mendeapen
#> 10415 mendeapen
#> 10416 mendeapen
#> 10417 mendeapen
#> 10418 mendeapen
#> 10419 mendeapen
#> 10420 mendeapen
#> 10421 merit
#> 10422 merit
#> 10423 merit
#> 10424 merit
#> 10425 merit
#> 10426 merit
#> 10427 merit
#> 10428 merit
#> 10429 merit
#> 10430 merit
#> 10431 merit
#> 10432 merit
#> 10433 merit
#> 10434 merit
#> 10435 merit
#> 10436 merit
#> 10437 merit
#> 10438 merit
#> 10439 merit
#> 10440 merit
#> 10441 merit
#> 10442 merit
#> 10443 merit
#> 10444 merit
#> 10445 merit
#> 10446 merit
#> 10447 merit
#> 10448 merit
#> 10449 merit
#> 10450 merit
#> 10451 merit
#> 10452 merit
#> 10453 merit
#> 10454 merit
#> 10455 merit
#> 10456 merit
#> 10457 merit
#> 10458 merit
#> 10459 merit
#> 10460 merit
#> 10461 merit
#> 10462 merit
#> 10463 merit
#> 10464 merit
#> 10465 merit
#> 10466 merit
#> 10467 merit
#> 10468 merit
#> 10469 meritaid
#> 10470 meritaid
#> 10471 meritaid
#> 10472 meritaid
#> 10473 meritaid
#> 10474 meritaid
#> 10475 meritaid
#> 10476 meritaid
#> 10477 meritaid
#> 10478 meritaid
#> 10479 meritaid
#> 10480 meritaid
#> 10481 meritstateadmin
#> 10482 meritstateadmin
#> 10483 meritstateadmin
#> 10484 meritstateadmin
#> 10485 meritstateadmin
#> 10486 meritstateadmin
#> 10487 meritstateadmin
#> 10488 meritstateadmin
#> 10489 meritstateadmin
#> 10490 meritstateadmin
#> 10491 meritstateadmin
#> 10492 methpre
#> 10493 methpre
#> 10494 methpre
#> 10495 methpre
#> 10496 methpre
#> 10497 methpre
#> 10498 methpre
#> 10499 methpre
#> 10500 methpre
#> 10501 methpre
#> 10502 methpre
#> 10503 methpre
#> 10504 methpre
#> 10505 methpre
#> 10506 methpre
#> 10507 methpre
#> 10508 methpre
#> 10509 methpre
#> 10510 methpre
#> 10511 methpre
#> 10512 methpre
#> 10513 methpre
#> 10514 methpre
#> 10515 methpre
#> 10516 methpre
#> 10517 miglab
#> 10518 miglab
#> 10519 miglab
#> 10520 miglab
#> 10521 miglab
#> 10522 miglab
#> 10523 miglab
#> 10524 miglab
#> 10525 miglab
#> 10526 miglab
#> 10527 miglab
#> 10528 miglab
#> 10529 miglab
#> 10530 miglab
#> 10531 miglab
#> 10532 miglab
#> 10533 miglab
#> 10534 miglab
#> 10535 miglab
#> 10536 miglab
#> 10537 miglab
#> 10538 miglab
#> 10539 miglab
#> 10540 miglab
#> 10541 miglab
#> 10542 miglab
#> 10543 miglab
#> 10544 miglab
#> 10545 military and overseas voters act
#> 10546 military and overseas voters act
#> 10547 military and overseas voters act
#> 10548 military and overseas voters act
#> 10549 military and overseas voters act
#> 10550 military and overseas voters act
#> 10551 military and overseas voters act
#> 10552 military and overseas voters act
#> 10553 military and overseas voters act
#> 10554 military and overseas voters act
#> 10555 military and overseas voters act
#> 10556 military and overseas voters act
#> 10557 military and overseas voters act
#> 10558 military and overseas voters act
#> 10559 military and overseas voters act
#> 10560 minfine
#> 10561 minfine
#> 10562 minfine
#> 10563 minfine
#> 10564 minfine
#> 10565 minfine
#> 10566 minfine
#> 10567 minfine
#> 10568 minfine
#> 10569 minfine
#> 10570 minfine
#> 10571 minfine
#> 10572 minfine
#> 10573 minfine
#> 10574 minfine
#> 10575 minfine
#> 10576 minfine
#> 10577 minfine
#> 10578 minfine
#> 10579 minfine
#> 10580 minfine
#> 10581 minfine
#> 10582 minfine
#> 10583 minfine
#> 10584 minfine
#> 10585 minfine
#> 10586 minfine
#> 10587 minfine
#> 10588 minor student capacity to borrow act (1969)
#> 10589 minor student capacity to borrow act (1969)
#> 10590 minor student capacity to borrow act (1969)
#> 10591 minor student capacity to borrow act (1969)
#> 10592 minor student capacity to borrow act (1969)
#> 10593 minor student capacity to borrow act (1969)
#> 10594 minwage
#> 10595 minwage
#> 10596 minwage
#> 10597 minwage
#> 10598 minwage
#> 10599 minwage
#> 10600 minwage
#> 10601 minwage
#> 10602 minwage
#> 10603 minwage
#> 10604 minwage
#> 10605 minwage
#> 10606 minwage
#> 10607 minwage
#> 10608 minwage
#> 10609 minwage
#> 10610 minwage
#> 10611 minwage
#> 10612 minwage
#> 10613 minwage
#> 10614 minwage
#> 10615 minwage
#> 10616 minwage
#> 10617 minwage
#> 10618 minwage
#> 10619 minwage
#> 10620 minwage
#> 10621 minwage
#> 10622 minwage
#> 10623 minwage
#> 10624 minwage
#> 10625 minwage
#> 10626 minwage
#> 10627 minwage
#> 10628 missplan
#> 10629 missplan
#> 10630 missplan
#> 10631 missplan
#> 10632 missplan
#> 10633 missplan
#> 10634 missplan
#> 10635 missplan
#> 10636 missplan
#> 10637 missplan
#> 10638 missplan
#> 10639 missplan
#> 10640 missplan
#> 10641 missplan
#> 10642 missplan
#> 10643 missplan
#> 10644 missplan
#> 10645 missplan
#> 10646 missplan
#> 10647 missplan
#> 10648 mlda21
#> 10649 mlda21
#> 10650 mlda21
#> 10651 mlda21
#> 10652 mlda21
#> 10653 mlda21
#> 10654 mlda21
#> 10655 mlda21
#> 10656 mlda21
#> 10657 mlda21
#> 10658 mlda21
#> 10659 mlda21
#> 10660 mlda21
#> 10661 mlda21
#> 10662 mlda21
#> 10663 mlda21
#> 10664 mlda21
#> 10665 mlda21
#> 10666 mlda21
#> 10667 mlda21
#> 10668 mlda21
#> 10669 mlda21
#> 10670 mlda21
#> 10671 mlda21
#> 10672 mlda21
#> 10673 mlda21
#> 10674 mlda21
#> 10675 mlda21
#> 10676 mlda21
#> 10677 mlda21
#> 10678 mlda21
#> 10679 mlda21
#> 10680 mlda21
#> 10681 mlda21
#> 10682 mlda21
#> 10683 mlda21
#> 10684 mlda21
#> 10685 mlda21
#> 10686 mlda21
#> 10687 mlda21
#> 10688 mlda21
#> 10689 mlda21
#> 10690 mlda21
#> 10691 mlda21
#> 10692 mlda21
#> 10693 mlda21
#> 10694 mlda21
#> 10695 mlda21
#> 10696 mlda21
#> 10697 mlda21
#> 10698 mntlhlth
#> 10699 mntlhlth
#> 10700 mntlhlth
#> 10701 mntlhlth
#> 10702 mntlhlth
#> 10703 mntlhlth
#> 10704 mntlhlth
#> 10705 mntlhlth
#> 10706 mntlhlth
#> 10707 mntlhlth
#> 10708 mntlhlth
#> 10709 mntlhlth
#> 10710 mntlhlth
#> 10711 mntlhlth
#> 10712 mntlhlth
#> 10713 mntlhlth
#> 10714 mntlhlth
#> 10715 mntlhlth
#> 10716 mntlhlth
#> 10717 mntlhlth
#> 10718 mntlhlth
#> 10719 mntlhlth
#> 10720 mntlhlth
#> 10721 mntlhlth
#> 10722 mntlhlth
#> 10723 mntlhlth
#> 10724 mntlhlth
#> 10725 mntlhlth
#> 10726 mntlhlth
#> 10727 mntlhlth
#> 10728 model mandatory disposition of detainers act
#> 10729 model mandatory disposition of detainers act
#> 10730 model real estate time-share act
#> 10731 model real estate time-share act
#> 10732 model real estate time-share act
#> 10733 model real estate time-share act
#> 10734 model real estate time-share act
#> 10735 model state administrative procedure act (1981)
#> 10736 model state administrative procedure act (1981)
#> 10737 model state administrative procedure act (1981)
#> 10738 model state administrative procedure act (1981)
#> 10739 model state administrative procedure act (1981)
#> 10740 model state administrative procedure act (1981)
#> 10741 model state administrative procedure act (1981)
#> 10742 model state administrative procedure act (1981)
#> 10743 model state administrative procedure act (1981)
#> 10744 model state administrative procedure act (1981)
#> 10745 money services act
#> 10746 money services act
#> 10747 money services act
#> 10748 money services act
#> 10749 money services act
#> 10750 money services act
#> 10751 money services act
#> 10752 mothersaid
#> 10753 mothersaid
#> 10754 mothersaid
#> 10755 mothersaid
#> 10756 mothersaid
#> 10757 mothersaid
#> 10758 mothersaid
#> 10759 mothersaid
#> 10760 mothersaid
#> 10761 mothersaid
#> 10762 mothersaid
#> 10763 mothersaid
#> 10764 mothersaid
#> 10765 mothersaid
#> 10766 mothersaid
#> 10767 mothersaid
#> 10768 mothersaid
#> 10769 mothersaid
#> 10770 mothersaid
#> 10771 mothersaid
#> 10772 mothersaid
#> 10773 mothersaid
#> 10774 mothersaid
#> 10775 mothersaid
#> 10776 mothersaid
#> 10777 mothersaid
#> 10778 mothersaid
#> 10779 mothersaid
#> 10780 mothersaid
#> 10781 mothersaid
#> 10782 mothersaid
#> 10783 mothersaid
#> 10784 mothersaid
#> 10785 mothersaid
#> 10786 mothersaid
#> 10787 mothersaid
#> 10788 mothersaid
#> 10789 mothersaid
#> 10790 mothersaid
#> 10791 mothersaid
#> 10792 mothersaid
#> 10793 mothersaid
#> 10794 mothersaid
#> 10795 mothersaid
#> 10796 mothersaid
#> 10797 mothpen
#> 10798 mothpen
#> 10799 mothpen
#> 10800 mothpen
#> 10801 mothpen
#> 10802 mothpen
#> 10803 mothpen
#> 10804 mothpen
#> 10805 mothpen
#> 10806 mothpen
#> 10807 mothpen
#> 10808 mothpen
#> 10809 mothpen
#> 10810 mothpen
#> 10811 mothpen
#> 10812 mothpen
#> 10813 mothpen
#> 10814 mothpen
#> 10815 mothpen
#> 10816 mothpen
#> 10817 mothpen
#> 10818 mothpen
#> 10819 mothpen
#> 10820 mothpen
#> 10821 mothpen
#> 10822 mothpen
#> 10823 mothpen
#> 10824 mothpen
#> 10825 mothpen
#> 10826 mothpen
#> 10827 mothpen
#> 10828 mothpen
#> 10829 mothpen
#> 10830 mothpen
#> 10831 mothpen
#> 10832 mothpen
#> 10833 mothpen
#> 10834 mothpen
#> 10835 mothpen
#> 10836 mothpen
#> 10837 mothpen
#> 10838 mothpen
#> 10839 mothpen
#> 10840 mothpen
#> 10841 mothpen
#> 10842 mothpen
#> 10843 motorvoter
#> 10844 motorvoter
#> 10845 motorvoter
#> 10846 motorvoter
#> 10847 motorvoter
#> 10848 motorvoter
#> 10849 motorvoter
#> 10850 motorvoter
#> 10851 motorvoter
#> 10852 motorvoter
#> 10853 motorvoter
#> 10854 motorvoter
#> 10855 motorvoter
#> 10856 motorvoter
#> 10857 motorvoter
#> 10858 motorvoter
#> 10859 motorvoter
#> 10860 motorvoter
#> 10861 motorvoter
#> 10862 motorvoter
#> 10863 motorvoter
#> 10864 motorvoter
#> 10865 motorvoter
#> 10866 motorvoter
#> 10867 motorvoter
#> 10868 motorvoter
#> 10869 motorvoter
#> 10870 motorvoter
#> 10871 motorvoter
#> 10872 motorvoter
#> 10873 motorvoter
#> 10874 motorvoter
#> 10875 motorvoter
#> 10876 motorvoter
#> 10877 motorvoter
#> 10878 motorvoter
#> 10879 motorvoter
#> 10880 motorvoter
#> 10881 motorvoter
#> 10882 motorvoter
#> 10883 motorvoter
#> 10884 motorvoter
#> 10885 motorvoter
#> 10886 motorvoter
#> 10887 motorvoter
#> 10888 motorvoter
#> 10889 motorvoter
#> 10890 motorvoter
#> 10891 motorvoter
#> 10892 mprisdm
#> 10893 mprisdm
#> 10894 mprisdm
#> 10895 mprisdm
#> 10896 mprisdm
#> 10897 mprisdm
#> 10898 mprisdm
#> 10899 mprisdm
#> 10900 mprisdm
#> 10901 mprisdm
#> 10902 mprisdm
#> 10903 mprisdm
#> 10904 mprisdm
#> 10905 mprisdm
#> 10906 mprisdm
#> 10907 mprisdm
#> 10908 mprisdm
#> 10909 mprisdm
#> 10910 mprisdm
#> 10911 mprisdm
#> 10912 mprisdm
#> 10913 mprisdm
#> 10914 mprisdm
#> 10915 mprisdm
#> 10916 mprisdm
#> 10917 mprisdm
#> 10918 mprisdm
#> 10919 mprisdm
#> 10920 mprisdm
#> 10921 mprisdm
#> 10922 mprisdm
#> 10923 mprisdm
#> 10924 mprisdm
#> 10925 mprisdm
#> 10926 msas
#> 10927 msas
#> 10928 msas
#> 10929 msas
#> 10930 msas
#> 10931 msas
#> 10932 msas
#> 10933 msas
#> 10934 msas
#> 10935 msas
#> 10936 msas
#> 10937 msas
#> 10938 msas
#> 10939 msas
#> 10940 msas
#> 10941 msas
#> 10942 msas
#> 10943 msas
#> 10944 msas
#> 10945 msas
#> 10946 msas
#> 10947 msas
#> 10948 msas
#> 10949 msas
#> 10950 msas
#> 10951 msas
#> 10952 msas
#> 10953 msas
#> 10954 multiple-person accounts
#> 10955 multiple-person accounts
#> 10956 multiple-person accounts
#> 10957 multiple-person accounts
#> 10958 multiple-person accounts
#> 10959 multiple-person accounts
#> 10960 multistate highway transportation agreement
#> 10961 multistate highway transportation agreement
#> 10962 multistate highway transportation agreement
#> 10963 multistate highway transportation agreement
#> 10964 multistate highway transportation agreement
#> 10965 multistate highway transportation agreement
#> 10966 multistate highway transportation agreement
#> 10967 multistate highway transportation agreement
#> 10968 multistate highway transportation agreement
#> 10969 multistate highway transportation agreement
#> 10970 multistate lottery agreement
#> 10971 multistate lottery agreement
#> 10972 multistate lottery agreement
#> 10973 multistate lottery agreement
#> 10974 multistate lottery agreement
#> 10975 multistate lottery agreement
#> 10976 multistate lottery agreement
#> 10977 multistate lottery agreement
#> 10978 multistate lottery agreement
#> 10979 multistate lottery agreement
#> 10980 multistate lottery agreement
#> 10981 multistate lottery agreement
#> 10982 multistate lottery agreement
#> 10983 multistate lottery agreement
#> 10984 multistate lottery agreement
#> 10985 multistate lottery agreement
#> 10986 multistate lottery agreement
#> 10987 multistate lottery agreement
#> 10988 multistate lottery agreement
#> 10989 multistate lottery agreement
#> 10990 multistate lottery agreement
#> 10991 multistate lottery agreement
#> 10992 multistate lottery agreement
#> 10993 multistate lottery agreement
#> 10994 multistate lottery agreement
#> 10995 multistate lottery agreement
#> 10996 multistate lottery agreement
#> 10997 multistate lottery agreement
#> 10998 multistate lottery agreement
#> 10999 multistate lottery agreement
#> 11000 multistate reciprocity agreement
#> 11001 multistate tax compact
#> 11002 multistate tax compact
#> 11003 multistate tax compact
#> 11004 multistate tax compact
#> 11005 multistate tax compact
#> 11006 multistate tax compact
#> 11007 multistate tax compact
#> 11008 multistate tax compact
#> 11009 multistate tax compact
#> 11010 multistate tax compact
#> 11011 multistate tax compact
#> 11012 multistate tax compact
#> 11013 multistate tax compact
#> 11014 naticurric
#> 11015 naticurric
#> 11016 naticurric
#> 11017 naticurric
#> 11018 naticurric
#> 11019 naticurric
#> 11020 naticurric
#> 11021 naticurric
#> 11022 naticurric
#> 11023 naticurric
#> 11024 naticurric
#> 11025 naticurric
#> 11026 naticurric
#> 11027 naticurric
#> 11028 naticurric
#> 11029 naticurric
#> 11030 naticurric
#> 11031 naticurric
#> 11032 naticurric
#> 11033 naticurric
#> 11034 naticurric
#> 11035 naticurric
#> 11036 naticurric
#> 11037 naticurric
#> 11038 naticurric
#> 11039 national crime prevention and privacy compact
#> 11040 national crime prevention and privacy compact
#> 11041 national crime prevention and privacy compact
#> 11042 national crime prevention and privacy compact
#> 11043 national crime prevention and privacy compact
#> 11044 national crime prevention and privacy compact
#> 11045 national crime prevention and privacy compact
#> 11046 national crime prevention and privacy compact
#> 11047 national crime prevention and privacy compact
#> 11048 national crime prevention and privacy compact
#> 11049 national crime prevention and privacy compact
#> 11050 national crime prevention and privacy compact
#> 11051 national crime prevention and privacy compact
#> 11052 national crime prevention and privacy compact
#> 11053 national crime prevention and privacy compact
#> 11054 national crime prevention and privacy compact
#> 11055 national crime prevention and privacy compact
#> 11056 national crime prevention and privacy compact
#> 11057 national crime prevention and privacy compact
#> 11058 national crime prevention and privacy compact
#> 11059 national crime prevention and privacy compact
#> 11060 national crime prevention and privacy compact
#> 11061 national crime prevention and privacy compact
#> 11062 national crime prevention and privacy compact
#> 11063 national crime prevention and privacy compact
#> 11064 national crime prevention and privacy compact
#> 11065 national crime prevention and privacy compact
#> 11066 national crime prevention and privacy compact
#> 11067 national crime prevention and privacy compact
#> 11068 national crime prevention and privacy compact
#> 11069 national guard mutual assistance compact
#> 11070 national guard mutual assistance compact
#> 11071 national guard mutual assistance compact
#> 11072 national guard mutual assistance compact
#> 11073 national guard mutual assistance compact
#> 11074 national guard mutual assistance compact
#> 11075 national guard mutual assistance counter-drug activities compact
#> 11076 national guard mutual assistance counter-drug activities compact
#> 11077 national guard mutual assistance counter-drug activities compact
#> 11078 national guard mutual assistance counter-drug activities compact
#> 11079 national guard mutual assistance counter-drug activities compact
#> 11080 national guard mutual assistance counter-drug activities compact
#> 11081 national guard mutual assistance counter-drug activities compact
#> 11082 national guard mutual assistance counter-drug activities compact
#> 11083 national guard mutual assistance counter-drug activities compact
#> 11084 national guard mutual assistance counter-drug activities compact
#> 11085 national popular vote interstate compact
#> 11086 national popular vote interstate compact
#> 11087 national popular vote interstate compact
#> 11088 national popular vote interstate compact
#> 11089 national popular vote interstate compact
#> 11090 national popular vote interstate compact
#> 11091 national popular vote interstate compact
#> 11092 national popular vote interstate compact
#> 11093 national popular vote interstate compact
#> 11094 national popular vote interstate compact
#> 11095 natreso
#> 11096 natreso
#> 11097 natreso
#> 11098 natreso
#> 11099 natreso
#> 11100 natreso
#> 11101 natreso
#> 11102 natreso
#> 11103 natreso
#> 11104 natreso
#> 11105 natreso
#> 11106 natreso
#> 11107 natreso
#> 11108 natreso
#> 11109 natreso
#> 11110 natreso
#> 11111 neartotalban
#> 11112 neartotalban
#> 11113 neighnot
#> 11114 neighnot
#> 11115 neighnot
#> 11116 neighnot
#> 11117 neighnot
#> 11118 neighnot
#> 11119 neighnot
#> 11120 neighnot
#> 11121 neighnot
#> 11122 neighnot
#> 11123 neighnot
#> 11124 netmeter
#> 11125 netmeter
#> 11126 netmeter
#> 11127 netmeter
#> 11128 netmeter
#> 11129 netmeter
#> 11130 netmeter
#> 11131 netmeter
#> 11132 netmeter
#> 11133 netmeter
#> 11134 netmeter
#> 11135 netmeter
#> 11136 netmeter
#> 11137 netmeter
#> 11138 netmeter
#> 11139 netmeter
#> 11140 netmeter
#> 11141 netmeter
#> 11142 netmeter
#> 11143 netmeter
#> 11144 netmeter
#> 11145 netmeter
#> 11146 netmeter
#> 11147 netmeter
#> 11148 netmeter
#> 11149 netmeter
#> 11150 netmeter
#> 11151 netmeter
#> 11152 netmeter
#> 11153 netmeter
#> 11154 netmeter
#> 11155 netmeter
#> 11156 netmeter
#> 11157 netmeter
#> 11158 netmeter
#> 11159 netmeter
#> 11160 netmeter_yearadopted
#> 11161 netmeter_yearadopted
#> 11162 netmeter_yearadopted
#> 11163 netmeter_yearadopted
#> 11164 netmeter_yearadopted
#> 11165 netmeter_yearadopted
#> 11166 netmeter_yearadopted
#> 11167 netmeter_yearadopted
#> 11168 netmeter_yearadopted
#> 11169 netmeter_yearadopted
#> 11170 netmeter_yearadopted
#> 11171 netmeter_yearadopted
#> 11172 netmeter_yearadopted
#> 11173 netmeter_yearadopted
#> 11174 netmeter_yearadopted
#> 11175 netmeter_yearadopted
#> 11176 netmeter_yearadopted
#> 11177 netmeter_yearadopted
#> 11178 netmeter_yearadopted
#> 11179 netmeter_yearadopted
#> 11180 netmeter_yearadopted
#> 11181 netmeter_yearadopted
#> 11182 netmeter_yearadopted
#> 11183 netmeter_yearadopted
#> 11184 netmeter_yearadopted
#> 11185 netmeter_yearadopted
#> 11186 netmeter_yearadopted
#> 11187 netmeter_yearadopted
#> 11188 netmeter_yearadopted
#> 11189 netmeter_yearadopted
#> 11190 netmeter_yearadopted
#> 11191 netmeter_yearadopted
#> 11192 netmeter_yearadopted
#> 11193 netmeter_yearadopted
#> 11194 netmeter_yearadopted
#> 11195 netmeter_yearadopted
#> 11196 netmeter_yearadopted
#> 11197 netmeter_yearadopted
#> 11198 netmeter_yearadopted
#> 11199 netmeter_yearadopted
#> 11200 newbornheartscreen
#> 11201 newbornheartscreen
#> 11202 newbornheartscreen
#> 11203 newbornheartscreen
#> 11204 newbornheartscreen
#> 11205 newbornheartscreen
#> 11206 newbornheartscreen
#> 11207 newbornheartscreen
#> 11208 newbornheartscreen
#> 11209 newbornheartscreen
#> 11210 newbornheartscreen
#> 11211 newbornheartscreen
#> 11212 newbornheartscreen
#> 11213 newbornheartscreen
#> 11214 newbornheartscreen
#> 11215 newbornheartscreen
#> 11216 newbornheartscreen
#> 11217 newbornheartscreen
#> 11218 newbornheartscreen
#> 11219 newbornheartscreen
#> 11220 newbornheartscreen
#> 11221 newbornheartscreen
#> 11222 newbornheartscreen
#> 11223 newbornheartscreen
#> 11224 newbornheartscreen
#> 11225 newbornheartscreen
#> 11226 newbornheartscreen
#> 11227 newbornheartscreen
#> 11228 newbornheartscreen
#> 11229 newbornheartscreen
#> 11230 nonprobate transfers on death act
#> 11231 nonprobate transfers on death act
#> 11232 nonprobate transfers on death act
#> 11233 nonprobate transfers on death act
#> 11234 nonprobate transfers on death act
#> 11235 nonprobate transfers on death act
#> 11236 nonprobate transfers on death act
#> 11237 nonprobate transfers on death act
#> 11238 nonresident violator compact
#> 11239 nonresident violator compact
#> 11240 nonresident violator compact
#> 11241 nonresident violator compact
#> 11242 nonresident violator compact
#> 11243 nonresident violator compact
#> 11244 nonresident violator compact
#> 11245 nonresident violator compact
#> 11246 nonresident violator compact
#> 11247 nonresident violator compact
#> 11248 nonresident violator compact
#> 11249 nonresident violator compact
#> 11250 nonresident violator compact
#> 11251 nonresident violator compact
#> 11252 nonresident violator compact
#> 11253 nonresident violator compact
#> 11254 nonresident violator compact
#> 11255 nonresident violator compact
#> 11256 nonresident violator compact
#> 11257 nonresident violator compact
#> 11258 nonresident violator compact
#> 11259 nonresident violator compact
#> 11260 nonresident violator compact
#> 11261 nonresident violator compact
#> 11262 nonresident violator compact
#> 11263 nonresident violator compact
#> 11264 norealid
#> 11265 norealid
#> 11266 norealid
#> 11267 norealid
#> 11268 norealid
#> 11269 norealid
#> 11270 norealid
#> 11271 norealid
#> 11272 norealid
#> 11273 norealid
#> 11274 norealid
#> 11275 norealid
#> 11276 norealid
#> 11277 norealid
#> 11278 norealid
#> 11279 norealid
#> 11280 norealid
#> 11281 norealid
#> 11282 notarial acts (1982)
#> 11283 notarial acts (1982)
#> 11284 notarial acts (1982)
#> 11285 notarial acts (1982)
#> 11286 notarial acts (1982)
#> 11287 notarial acts (1982)
#> 11288 notarial acts (1982)
#> 11289 notarial acts (1982)
#> 11290 notarial acts (1982)
#> 11291 notarial acts (1982)
#> 11292 notarial acts (1982)
#> 11293 nrmlsch
#> 11294 nrmlsch
#> 11295 nrmlsch
#> 11296 nrmlsch
#> 11297 nrmlsch
#> 11298 nrmlsch
#> 11299 nrmlsch
#> 11300 nrmlsch
#> 11301 nrmlsch
#> 11302 nrmlsch
#> 11303 nrmlsch
#> 11304 nrmlsch
#> 11305 nrmlsch
#> 11306 nrmlsch
#> 11307 nrmlsch
#> 11308 nrmlsch
#> 11309 nrmlsch
#> 11310 nrmlsch
#> 11311 nrmlsch
#> 11312 nrmlsch
#> 11313 nrmlsch
#> 11314 nrmlsch
#> 11315 nrmlsch
#> 11316 nrmlsch
#> 11317 nrmlsch
#> 11318 nrmlsch
#> 11319 nrmlsch
#> 11320 nrmlsch
#> 11321 nrmlsch
#> 11322 nrmlsch
#> 11323 nrmlsch
#> 11324 nrmlsch
#> 11325 nrmlsch
#> 11326 nrmlsch
#> 11327 nrmlsch
#> 11328 nrmlsch
#> 11329 nrmlsch
#> 11330 nrmlsch
#> 11331 nrmlsch
#> 11332 nrmlsch
#> 11333 nrmlsch
#> 11334 nrmlsch
#> 11335 nrmlsch
#> 11336 nrmlsch
#> 11337 nrmlsch
#> 11338 nrmlsch
#> 11339 nrmlsch
#> 11340 nrmlsch
#> 11341 nrslic
#> 11342 nrslic
#> 11343 nrslic
#> 11344 nrslic
#> 11345 nrslic
#> 11346 nrslic
#> 11347 nrslic
#> 11348 nrslic
#> 11349 nrslic
#> 11350 nrslic
#> 11351 nrslic
#> 11352 nrslic
#> 11353 nrslic
#> 11354 nrslic
#> 11355 nrslic
#> 11356 nrslic
#> 11357 nrslic
#> 11358 nrslic
#> 11359 nrslic
#> 11360 nrslic
#> 11361 nrslic
#> 11362 nrslic
#> 11363 nrslic
#> 11364 nrslic
#> 11365 nrslic
#> 11366 nrslic
#> 11367 nrslic
#> 11368 nrslic
#> 11369 nrslic
#> 11370 nrslic
#> 11371 nrslic
#> 11372 nrslic
#> 11373 nrslic
#> 11374 nrslic
#> 11375 nrslic
#> 11376 nrslic
#> 11377 nrslic
#> 11378 nrslic
#> 11379 nrslic
#> 11380 nrslic
#> 11381 nrslic
#> 11382 nrslic
#> 11383 nrslic
#> 11384 nrslic
#> 11385 nrslic
#> 11386 nrslic
#> 11387 nrslic
#> 11388 nrslic
#> 11389 nurse licensure compact
#> 11390 nurse licensure compact
#> 11391 nurse licensure compact
#> 11392 nurse licensure compact
#> 11393 nurse licensure compact
#> 11394 nurse licensure compact
#> 11395 nurse licensure compact
#> 11396 nurse licensure compact
#> 11397 nurse licensure compact
#> 11398 nurse licensure compact
#> 11399 nurse licensure compact
#> 11400 nurse licensure compact
#> 11401 offwmh
#> 11402 offwmh
#> 11403 offwmh
#> 11404 offwmh
#> 11405 offwmh
#> 11406 offwmh
#> 11407 offwmh
#> 11408 offwmh
#> 11409 offwmh
#> 11410 offwmh
#> 11411 offwmh
#> 11412 offwmh
#> 11413 offwmh
#> 11414 offwmh
#> 11415 offwmh
#> 11416 offwmh
#> 11417 offwmh
#> 11418 offwmh
#> 11419 offwmh
#> 11420 oldagea
#> 11421 oldagea
#> 11422 oldagea
#> 11423 oldagea
#> 11424 oldagea
#> 11425 oldagea
#> 11426 oldagea
#> 11427 oldagea
#> 11428 oldagea
#> 11429 oldagea
#> 11430 oldagea
#> 11431 oldagea
#> 11432 oldagea
#> 11433 oldagea
#> 11434 oldagea
#> 11435 oldagea
#> 11436 oldagea
#> 11437 oldagea
#> 11438 oldagea
#> 11439 oldagea
#> 11440 oldagea
#> 11441 oldagea
#> 11442 oldagea
#> 11443 oldagea
#> 11444 oldagea
#> 11445 oldagea
#> 11446 oldagea
#> 11447 oldagea
#> 11448 oldagea
#> 11449 oldagea
#> 11450 oldagea
#> 11451 oldagea
#> 11452 oldagea
#> 11453 oldagea
#> 11454 oldagea
#> 11455 oldagea
#> 11456 oldagea
#> 11457 oldagea
#> 11458 oldagea
#> 11459 oldagea
#> 11460 oldagea
#> 11461 oldagea
#> 11462 oldagea
#> 11463 oldagea
#> 11464 oldagea
#> 11465 oldagea
#> 11466 oldagea
#> 11467 oldagea
#> 11468 opencont
#> 11469 opencont
#> 11470 opencont
#> 11471 opencont
#> 11472 opencont
#> 11473 opencont
#> 11474 opencont
#> 11475 opencont
#> 11476 opencont
#> 11477 opencont
#> 11478 opencont
#> 11479 opencont
#> 11480 opencont
#> 11481 opencont
#> 11482 opencont
#> 11483 opencont
#> 11484 opencont
#> 11485 opencont
#> 11486 opencont
#> 11487 opencont
#> 11488 opencont
#> 11489 opencont
#> 11490 opencont
#> 11491 opencont
#> 11492 opencont
#> 11493 opencont
#> 11494 opencont
#> 11495 opencont
#> 11496 opencont
#> 11497 opencont
#> 11498 opencont
#> 11499 opencont
#> 11500 opencont
#> 11501 opencont
#> 11502 opencont
#> 11503 opencont
#> 11504 opencont
#> 11505 opencont
#> 11506 opencont
#> 11507 opencont
#> 11508 opencont
#> 11509 opencont
#> 11510 opencont
#> 11511 optinnot
#> 11512 optinnot
#> 11513 optinnot
#> 11514 optinnot
#> 11515 optinnot
#> 11516 pain management
#> 11517 pain management
#> 11518 pain management
#> 11519 pain management
#> 11520 pain management
#> 11521 pain management
#> 11522 pain management
#> 11523 pain management
#> 11524 pain management
#> 11525 pain management
#> 11526 pain management
#> 11527 pain management
#> 11528 pain management
#> 11529 pain management
#> 11530 pain management
#> 11531 pain management
#> 11532 pain management
#> 11533 pain management
#> 11534 pain management
#> 11535 pain management
#> 11536 pain management
#> 11537 pain management
#> 11538 pain management
#> 11539 pain management
#> 11540 pain management
#> 11541 pain management
#> 11542 pain management
#> 11543 pain management
#> 11544 pain management
#> 11545 pain management
#> 11546 pain management
#> 11547 pain management
#> 11548 pain management
#> 11549 pain management
#> 11550 pain management
#> 11551 pain management
#> 11552 pain management
#> 11553 pain management
#> 11554 pain management
#> 11555 paperterror
#> 11556 paperterror
#> 11557 paperterror
#> 11558 paperterror
#> 11559 paperterror
#> 11560 paperterror
#> 11561 paperterror
#> 11562 paperterror
#> 11563 paperterror
#> 11564 paperterror
#> 11565 paperterror
#> 11566 paperterror
#> 11567 paperterror
#> 11568 paperterror
#> 11569 paperterror
#> 11570 paperterror
#> 11571 paperterror
#> 11572 paperterror
#> 11573 paperterror
#> 11574 paperterror
#> 11575 paperterror
#> 11576 paperterror
#> 11577 paperterror
#> 11578 paperterror
#> 11579 paperterror
#> 11580 paperterror
#> 11581 paperterror
#> 11582 parconsent
#> 11583 parconsent
#> 11584 parconsent
#> 11585 parconsent
#> 11586 parconsent
#> 11587 parconsent
#> 11588 parconsent
#> 11589 parconsent
#> 11590 parconsent
#> 11591 parconsent
#> 11592 parconsent
#> 11593 parconsent
#> 11594 parconsent
#> 11595 parconsent
#> 11596 parconsent
#> 11597 parconsent
#> 11598 parconsent
#> 11599 parconsent
#> 11600 parconsent
#> 11601 parconsent
#> 11602 parconsent
#> 11603 parconsent
#> 11604 parconsent
#> 11605 parconsent
#> 11606 parconsent
#> 11607 parconsent
#> 11608 parconsent
#> 11609 parconsent
#> 11610 parcounsel
#> 11611 parentage act
#> 11612 parentage act
#> 11613 parentage act
#> 11614 parentage act
#> 11615 parentage act
#> 11616 parentage act
#> 11617 parentage act
#> 11618 parentage act
#> 11619 parentage act
#> 11620 parentage act
#> 11621 parentage act
#> 11622 parentage act (1973)
#> 11623 parentage act (1973)
#> 11624 parentage act (1973)
#> 11625 parentage act (1973)
#> 11626 parentage act (1973)
#> 11627 parentage act (1973)
#> 11628 parentage act (1973)
#> 11629 parentage act (1973)
#> 11630 parentage act (1973)
#> 11631 parentage act (1973)
#> 11632 parentage act (1973)
#> 11633 parentage act (1973)
#> 11634 parentage act (1973)
#> 11635 parentage act (1973)
#> 11636 parksys
#> 11637 parksys
#> 11638 parksys
#> 11639 parksys
#> 11640 parksys
#> 11641 parksys
#> 11642 parksys
#> 11643 parksys
#> 11644 parksys
#> 11645 parksys
#> 11646 parksys
#> 11647 parksys
#> 11648 parksys
#> 11649 parksys
#> 11650 parksys
#> 11651 parksys
#> 11652 parksys
#> 11653 parksys
#> 11654 parksys
#> 11655 parksys
#> 11656 parksys
#> 11657 parksys
#> 11658 parksys
#> 11659 parksys
#> 11660 parksys
#> 11661 parksys
#> 11662 parksys
#> 11663 parksys
#> 11664 parksys
#> 11665 parksys
#> 11666 parksys
#> 11667 parksys
#> 11668 parksys
#> 11669 parksys
#> 11670 parksys
#> 11671 parksys
#> 11672 parksys
#> 11673 parksys
#> 11674 parksys
#> 11675 parksys
#> 11676 parksys
#> 11677 parksys
#> 11678 parksys
#> 11679 parksys
#> 11680 parksys
#> 11681 parksys
#> 11682 parnotific
#> 11683 parnotific
#> 11684 parnotific
#> 11685 parnotific
#> 11686 parnotific
#> 11687 parnotific
#> 11688 parnotific
#> 11689 parnotific
#> 11690 parnotific
#> 11691 parnotific
#> 11692 parnotific
#> 11693 parnotific
#> 11694 parnotific
#> 11695 parnotific
#> 11696 parnotific
#> 11697 parnotific
#> 11698 parnotific
#> 11699 parnotific
#> 11700 parnotific
#> 11701 parnotific
#> 11702 parnotific
#> 11703 parnotific
#> 11704 parnotific
#> 11705 parnotific
#> 11706 parolesup
#> 11707 parolesup
#> 11708 parolesup
#> 11709 parolesup
#> 11710 parolesup
#> 11711 parolesup
#> 11712 parolesup
#> 11713 parolesup
#> 11714 parolesup
#> 11715 parolesup
#> 11716 parolesup
#> 11717 parolesup
#> 11718 parolesup
#> 11719 parolesup
#> 11720 parolesup
#> 11721 parolesup
#> 11722 parolesup
#> 11723 parolesup
#> 11724 parolesup
#> 11725 parolesup
#> 11726 parolesup
#> 11727 parolesup
#> 11728 parolesup
#> 11729 parolesup
#> 11730 parolesup
#> 11731 parolesup
#> 11732 parolesup
#> 11733 parolesup
#> 11734 parolesup
#> 11735 parolesup
#> 11736 parolesup
#> 11737 parolesup
#> 11738 parolesup
#> 11739 parolesup
#> 11740 parolesup
#> 11741 parolesup
#> 11742 parolesup
#> 11743 parolesup
#> 11744 parolesup
#> 11745 parolesup
#> 11746 parolesup
#> 11747 parolesup
#> 11748 parolesup
#> 11749 parolesup
#> 11750 parolesup
#> 11751 parolesup
#> 11752 parolesup
#> 11753 parolesup
#> 11754 partition of heirs property act
#> 11755 partition of heirs property act
#> 11756 partition of heirs property act
#> 11757 partition of heirs property act
#> 11758 partition of heirs property act
#> 11759 partition of heirs property act
#> 11760 partition of heirs property act
#> 11761 partition of heirs property act
#> 11762 partition of heirs property act
#> 11763 partnership act (1914)
#> 11764 partnership act (1914)
#> 11765 partnership act (1914)
#> 11766 partnership act (1914)
#> 11767 partnership act (1914)
#> 11768 partnership act (1914)
#> 11769 partnership act (1914)
#> 11770 partnership act (1914)
#> 11771 partnership act (1997) (last amended 2013)
#> 11772 partnership act (1997) (last amended 2013)
#> 11773 partnership act (1997) (last amended 2013)
#> 11774 partnership act (1997) (last amended 2013)
#> 11775 partnership act (1997) (last amended 2013)
#> 11776 partnership act (1997) (last amended 2013)
#> 11777 partnership act (1997) (last amended 2013)
#> 11778 partnership act (1997) (last amended 2013)
#> 11779 partnership act (1997) (last amended 2013)
#> 11780 partnership act (1997) (last amended 2013)
#> 11781 partnership act (1997) (last amended 2013)
#> 11782 partnership act (1997) (last amended 2013)
#> 11783 partnership act (1997) (last amended 2013)
#> 11784 partnership act (1997) (last amended 2013)
#> 11785 partnership act (1997) (last amended 2013)
#> 11786 partnership act (1997) (last amended 2013)
#> 11787 partnership act (1997) (last amended 2013)
#> 11788 partnership act (1997) (last amended 2013)
#> 11789 partnership act (1997) (last amended 2013)
#> 11790 partnership act (1997) (last amended 2013)
#> 11791 partnership act (1997) (last amended 2013)
#> 11792 partnership act (1997) (last amended 2013)
#> 11793 partnership act (1997) (last amended 2013)
#> 11794 partnership act (1997) (last amended 2013)
#> 11795 partnership act (1997) (last amended 2013)
#> 11796 partnership act (1997) (last amended 2013)
#> 11797 partnership act (1997) (last amended 2013)
#> 11798 partnership act (1997) (last amended 2013)
#> 11799 partnership act (1997) (last amended 2013)
#> 11800 partnership act (1997) (last amended 2013)
#> 11801 partnership act (1997) (last amended 2013)
#> 11802 partnership act (1997) (last amended 2013)
#> 11803 partnership act (1997) (last amended 2013)
#> 11804 partnership act (1997) (last amended 2013)
#> 11805 partnership act (1997) (last amended 2013)
#> 11806 partnership act (1997) (last amended 2013)
#> 11807 partnership act (1997) (last amended 2013)
#> 11808 partnership act (1997) (last amended 2013)
#> 11809 pbf
#> 11810 pbf
#> 11811 pbf
#> 11812 pbf
#> 11813 pbf
#> 11814 pbf
#> 11815 pbf
#> 11816 pbf
#> 11817 pbf
#> 11818 pbf
#> 11819 pbf
#> 11820 pbf
#> 11821 pbf
#> 11822 pbf
#> 11823 pbf
#> 11824 pbf
#> 11825 pbf
#> 11826 pbf
#> 11827 pbf
#> 11828 pbf
#> 11829 pbf
#> 11830 pbf
#> 11831 pbf
#> 11832 pbf
#> 11833 pbf
#> 11834 pdrugmon
#> 11835 pdrugmon
#> 11836 pdrugmon
#> 11837 pdrugmon
#> 11838 pdrugmon
#> 11839 pdrugmon
#> 11840 pdrugmon
#> 11841 pdrugmon
#> 11842 pdrugmon
#> 11843 pdrugmon
#> 11844 pdrugmon
#> 11845 pdrugmon
#> 11846 pdrugmon
#> 11847 pdrugmon
#> 11848 pdrugmon
#> 11849 perforfun
#> 11850 perforfun
#> 11851 perforfun
#> 11852 perforfun
#> 11853 perforfun
#> 11854 perforfun
#> 11855 perforfun
#> 11856 perforfun
#> 11857 perforfun
#> 11858 perforfun
#> 11859 perforfun
#> 11860 perforfun
#> 11861 perforfun
#> 11862 perforfun
#> 11863 perforfun
#> 11864 perforfun
#> 11865 perforfun
#> 11866 perforfun
#> 11867 perforfun
#> 11868 perforfun
#> 11869 perforfun
#> 11870 perforfun
#> 11871 perforfun
#> 11872 perforfun
#> 11873 perforfun
#> 11874 periodic payment of judgments act
#> 11875 personaltax_yearadopted
#> 11876 personaltax_yearadopted
#> 11877 personaltax_yearadopted
#> 11878 personaltax_yearadopted
#> 11879 personaltax_yearadopted
#> 11880 personaltax_yearadopted
#> 11881 personaltax_yearadopted
#> 11882 personaltax_yearadopted
#> 11883 personaltax_yearadopted
#> 11884 personaltax_yearadopted
#> 11885 personaltax_yearadopted
#> 11886 personaltax_yearadopted
#> 11887 personaltax_yearadopted
#> 11888 personaltax_yearadopted
#> 11889 personaltax_yearadopted
#> 11890 personaltax_yearadopted
#> 11891 personaltax_yearadopted
#> 11892 personaltax_yearadopted
#> 11893 personaltax_yearadopted
#> 11894 personaltaxeff_yearadopted
#> 11895 personaltaxeff_yearadopted
#> 11896 personaltaxeff_yearadopted
#> 11897 personaltaxeff_yearadopted
#> 11898 personaltaxeff_yearadopted
#> 11899 personaltaxeff_yearadopted
#> 11900 personaltaxeff_yearadopted
#> 11901 personaltaxeff_yearadopted
#> 11902 personaltaxeff_yearadopted
#> 11903 personaltaxeff_yearadopted
#> 11904 personaltaxeff_yearadopted
#> 11905 personaltaxeff_yearadopted
#> 11906 pestcomp
#> 11907 pestcomp
#> 11908 pestcomp
#> 11909 pestcomp
#> 11910 pestcomp
#> 11911 pestcomp
#> 11912 pestcomp
#> 11913 pestcomp
#> 11914 pestcomp
#> 11915 pestcomp
#> 11916 pestcomp
#> 11917 pestcomp
#> 11918 pestcomp
#> 11919 pestcomp
#> 11920 pestcomp
#> 11921 pestcomp
#> 11922 pestcomp
#> 11923 pestcomp
#> 11924 pestcomp
#> 11925 pestcomp
#> 11926 pestcomp
#> 11927 pestcomp
#> 11928 pestcomp
#> 11929 pestcomp
#> 11930 pestcomp
#> 11931 pestcomp
#> 11932 pestcomp
#> 11933 pestcomp
#> 11934 pestcomp
#> 11935 pestcomp
#> 11936 pestcomp
#> 11937 pestcomp
#> 11938 pestcomp
#> 11939 pestcomp
#> 11940 pestcomp
#> 11941 pestcomp
#> 11942 pharmlic
#> 11943 pharmlic
#> 11944 pharmlic
#> 11945 pharmlic
#> 11946 pharmlic
#> 11947 pharmlic
#> 11948 pharmlic
#> 11949 pharmlic
#> 11950 pharmlic
#> 11951 pharmlic
#> 11952 pharmlic
#> 11953 pharmlic
#> 11954 pharmlic
#> 11955 pharmlic
#> 11956 pharmlic
#> 11957 pharmlic
#> 11958 pharmlic
#> 11959 pharmlic
#> 11960 pharmlic
#> 11961 pharmlic
#> 11962 pharmlic
#> 11963 pharmlic
#> 11964 pharmlic
#> 11965 pharmlic
#> 11966 pharmlic
#> 11967 pharmlic
#> 11968 pharmlic
#> 11969 pharmlic
#> 11970 pharmlic
#> 11971 pharmlic
#> 11972 pharmlic
#> 11973 pharmlic
#> 11974 pharmlic
#> 11975 pharmlic
#> 11976 pharmlic
#> 11977 pharmlic
#> 11978 pharmlic
#> 11979 pharmlic
#> 11980 pharmlic
#> 11981 pharmlic
#> 11982 pharmlic
#> 11983 pharmlic
#> 11984 pharmlic
#> 11985 pharmlic
#> 11986 pharmlic
#> 11987 pharmlic
#> 11988 pharmlic
#> 11989 pharmlic
#> 11990 physical therapy licensure compact
#> 11991 physical therapy licensure compact
#> 11992 physical therapy licensure compact
#> 11993 physical therapy licensure compact
#> 11994 physreq
#> 11995 physreq
#> 11996 physreq
#> 11997 physreq
#> 11998 physreq
#> 11999 physreq
#> 12000 physreq
#> 12001 physreq
#> 12002 physreq
#> 12003 physreq
#> 12004 physreq
#> 12005 physreq
#> 12006 physreq
#> 12007 physreq
#> 12008 physreq
#> 12009 physreq
#> 12010 physreq
#> 12011 physreq
#> 12012 physreq
#> 12013 physreq
#> 12014 physreq
#> 12015 physreq
#> 12016 physreq
#> 12017 physreq
#> 12018 physreq
#> 12019 physreq
#> 12020 physreq
#> 12021 physreq
#> 12022 physreq
#> 12023 physreq
#> 12024 physreq
#> 12025 physreq
#> 12026 physreq
#> 12027 physreq
#> 12028 physreq
#> 12029 physreq
#> 12030 physreq
#> 12031 physreq
#> 12032 physreq
#> 12033 physreq
#> 12034 physreq
#> 12035 physreq
#> 12036 physreq
#> 12037 physreq
#> 12038 physreq
#> 12039 planned community act
#> 12040 pldvpag
#> 12041 pldvpag
#> 12042 pldvpag
#> 12043 pldvpag
#> 12044 pldvpag
#> 12045 pldvpag
#> 12046 pldvpag
#> 12047 pldvpag
#> 12048 pldvpag
#> 12049 pldvpag
#> 12050 pldvpag
#> 12051 pldvpag
#> 12052 pldvpag
#> 12053 pldvpag
#> 12054 pldvpag
#> 12055 pldvpag
#> 12056 pldvpag
#> 12057 pldvpag
#> 12058 pldvpag
#> 12059 pldvpag
#> 12060 pldvpag
#> 12061 pldvpag
#> 12062 pldvpag
#> 12063 pldvpag
#> 12064 pldvpag
#> 12065 pldvpag
#> 12066 pldvpag
#> 12067 pldvpag
#> 12068 pldvpag
#> 12069 pldvpag
#> 12070 pldvpag
#> 12071 pldvpag
#> 12072 pldvpag
#> 12073 pldvpag
#> 12074 pldvpag
#> 12075 pldvpag
#> 12076 pldvpag
#> 12077 pldvpag
#> 12078 pldvpag
#> 12079 pldvpag
#> 12080 pldvpag
#> 12081 pldvpag
#> 12082 pldvpag
#> 12083 post-conviction procedure act, model
#> 12084 postdna
#> 12085 postdna
#> 12086 postdna
#> 12087 postdna
#> 12088 postdna
#> 12089 postdna
#> 12090 postdna
#> 12091 postdna
#> 12092 postdna
#> 12093 postdna
#> 12094 postdna
#> 12095 postdna
#> 12096 postdna
#> 12097 postdna
#> 12098 postdna
#> 12099 postdna
#> 12100 postdna
#> 12101 postdna
#> 12102 postdna
#> 12103 postdna
#> 12104 postdna
#> 12105 postdna
#> 12106 postdna
#> 12107 postdna
#> 12108 postdna
#> 12109 postdna
#> 12110 postdna
#> 12111 postdna
#> 12112 postdna
#> 12113 postdna
#> 12114 postdna
#> 12115 postdna
#> 12116 postdna
#> 12117 postdna
#> 12118 postdna
#> 12119 postvia
#> 12120 postvia
#> 12121 postvia
#> 12122 postvia
#> 12123 postvia
#> 12124 postvia
#> 12125 postvia
#> 12126 postvia
#> 12127 postvia
#> 12128 postvia
#> 12129 postvia
#> 12130 postvia
#> 12131 postvia
#> 12132 postvia
#> 12133 postvia
#> 12134 postvia
#> 12135 postvia
#> 12136 postvia
#> 12137 postvia
#> 12138 postvia
#> 12139 postvia
#> 12140 postvia
#> 12141 postvia
#> 12142 postvia
#> 12143 postvia
#> 12144 postvia
#> 12145 postvia
#> 12146 postvia
#> 12147 postvia
#> 12148 postvia
#> 12149 postvia
#> 12150 postvia
#> 12151 power of attorney
#> 12152 power of attorney
#> 12153 power of attorney
#> 12154 power of attorney
#> 12155 power of attorney
#> 12156 power of attorney
#> 12157 power of attorney
#> 12158 power of attorney
#> 12159 power of attorney
#> 12160 power of attorney
#> 12161 power of attorney
#> 12162 power of attorney
#> 12163 power of attorney
#> 12164 power of attorney
#> 12165 power of attorney
#> 12166 power of attorney
#> 12167 power of attorney
#> 12168 power of attorney
#> 12169 power of attorney
#> 12170 power of attorney
#> 12171 powers of appointment
#> 12172 powers of appointment
#> 12173 powers of appointment
#> 12174 powers of appointment
#> 12175 powers of appointment
#> 12176 powers of appointment
#> 12177 powers of appointment
#> 12178 pre20wk
#> 12179 pre20wk
#> 12180 pre20wk
#> 12181 pre20wk
#> 12182 pre20wk
#> 12183 pre20wk
#> 12184 pre20wk
#> 12185 pre20wk
#> 12186 pre20wk
#> 12187 pre20wk
#> 12188 pre20wk
#> 12189 pre20wk
#> 12190 pre20wk
#> 12191 pre20wk
#> 12192 pre20wk
#> 12193 pre20wk
#> 12194 pre20wk
#> 12195 pre20wk
#> 12196 preconvictdays
#> 12197 preconvictdays
#> 12198 preconvictdays
#> 12199 preconvictdays
#> 12200 preconvictdays
#> 12201 preconvictdays
#> 12202 preconvictdays
#> 12203 preconvictdays
#> 12204 preconvictdays
#> 12205 preconvictdays
#> 12206 preconvictdays
#> 12207 preconvictdays
#> 12208 preconvictdays
#> 12209 preconvictdays
#> 12210 preconvictdays
#> 12211 preconvictdays
#> 12212 preconvictdays
#> 12213 preconvictdays
#> 12214 preconvictdays
#> 12215 preconvictdays
#> 12216 preconvictdays
#> 12217 preconvictdays
#> 12218 preconvictdays
#> 12219 preconvictdays
#> 12220 preconvictdays
#> 12221 preconvictdays
#> 12222 preconvictdays
#> 12223 preconvictdays
#> 12224 preconvictdays
#> 12225 preconvictdays
#> 12226 preconvictdays
#> 12227 preconvictdays
#> 12228 preconvictdays
#> 12229 preconvictdays
#> 12230 preconvictdays
#> 12231 preconvictdays
#> 12232 preconvictdays
#> 12233 preconvictdays
#> 12234 preconvictdays
#> 12235 preconvictdays
#> 12236 preconvictdays
#> 12237 preconvictdays
#> 12238 premarital agreement act
#> 12239 premarital agreement act
#> 12240 premarital agreement act
#> 12241 premarital agreement act
#> 12242 premarital agreement act
#> 12243 premarital agreement act
#> 12244 premarital agreement act
#> 12245 premarital agreement act
#> 12246 premarital agreement act
#> 12247 premarital agreement act
#> 12248 premarital agreement act
#> 12249 premarital agreement act
#> 12250 premarital agreement act
#> 12251 premarital agreement act
#> 12252 premarital agreement act
#> 12253 premarital agreement act
#> 12254 premarital agreement act
#> 12255 premarital agreement act
#> 12256 premarital agreement act
#> 12257 premarital agreement act
#> 12258 premarital agreement act
#> 12259 premarital agreement act
#> 12260 premarital agreement act
#> 12261 premarital agreement act
#> 12262 premarital agreement act
#> 12263 premarital agreement act
#> 12264 premarital and marital agreements act
#> 12265 premarital and marital agreements act
#> 12266 prepaid
#> 12267 prepaid
#> 12268 prepaid
#> 12269 prepaid
#> 12270 prepaid
#> 12271 prepaid
#> 12272 prepaid
#> 12273 prepaid
#> 12274 prepaid
#> 12275 prepaid
#> 12276 prepaid
#> 12277 prepaid
#> 12278 prepaid
#> 12279 prepaid
#> 12280 prepaid
#> 12281 prepaid
#> 12282 prepaid
#> 12283 prepaid
#> 12284 prepaid
#> 12285 prepaid
#> 12286 prepaid
#> 12287 prepaid
#> 12288 prepaid
#> 12289 prepaid
#> 12290 prepaid
#> 12291 prepaytut
#> 12292 prepaytut
#> 12293 prepaytut
#> 12294 prepaytut
#> 12295 prepaytut
#> 12296 prepaytut
#> 12297 prepaytut
#> 12298 prepaytut
#> 12299 prepaytut
#> 12300 prepaytut
#> 12301 prepaytut
#> 12302 prepaytut
#> 12303 prepaytut
#> 12304 prepaytut
#> 12305 prepaytut
#> 12306 prepaytut
#> 12307 prepaytut
#> 12308 prepaytut
#> 12309 prepaytut
#> 12310 prepaytut
#> 12311 prescdrug
#> 12312 prescdrug
#> 12313 prescdrug
#> 12314 prescdrug
#> 12315 prescdrug
#> 12316 prescdrug
#> 12317 prescdrug
#> 12318 prescdrug
#> 12319 prescdrug
#> 12320 prescdrug
#> 12321 prescdrug
#> 12322 prescdrug
#> 12323 prescdrug
#> 12324 prescdrug
#> 12325 prescdrug
#> 12326 prescdrug
#> 12327 prescdrug
#> 12328 prescdrug
#> 12329 prescdrug
#> 12330 prescdrug
#> 12331 prescdrug
#> 12332 prescdrug
#> 12333 prevention of and remedies for human trafficking
#> 12334 prevention of and remedies for human trafficking
#> 12335 prevention of and remedies for human trafficking
#> 12336 prevention of and remedies for human trafficking
#> 12337 prevention of and remedies for human trafficking
#> 12338 prevention of and remedies for human trafficking
#> 12339 prevention of and remedies for human trafficking
#> 12340 primaryenforce_all
#> 12341 primaryenforce_all
#> 12342 primaryenforce_all
#> 12343 primaryenforce_all
#> 12344 primaryenforce_all
#> 12345 primaryenforce_all
#> 12346 primaryenforce_all
#> 12347 primaryenforce_all
#> 12348 primaryenforce_all
#> 12349 primaryenforce_all
#> 12350 primaryenforce_all
#> 12351 primaryenforce_all
#> 12352 primaryenforce_all
#> 12353 primaryenforce_all
#> 12354 primaryenforce_all
#> 12355 primaryenforce_all
#> 12356 primaryenforce_all
#> 12357 primaryenforce_all
#> 12358 primaryenforce_all
#> 12359 primaryenforce_all
#> 12360 primaryenforce_all
#> 12361 primaryenforce_all
#> 12362 primaryenforce_all
#> 12363 primaryenforce_all
#> 12364 primaryenforce_all
#> 12365 primaryenforce_all
#> 12366 primaryenforce_all
#> 12367 primaryenforce_all
#> 12368 primaryenforce_all
#> 12369 primaryenforce_minor
#> 12370 primaryenforce_minor
#> 12371 primaryenforce_minor
#> 12372 primaryenforce_minor
#> 12373 primaryenforce_minor
#> 12374 primseat
#> 12375 primseat
#> 12376 primseat
#> 12377 primseat
#> 12378 primseat
#> 12379 primseat
#> 12380 primseat
#> 12381 primseat
#> 12382 primseat
#> 12383 primseat
#> 12384 primseat
#> 12385 primseat
#> 12386 primseat
#> 12387 primseat
#> 12388 primseat
#> 12389 primseat
#> 12390 primseat
#> 12391 primseat
#> 12392 primseat
#> 12393 primseat
#> 12394 primseat
#> 12395 principal and income act (1962)
#> 12396 principal and income act (1962)
#> 12397 principal and income act (1962)
#> 12398 principal and income act (1962)
#> 12399 principal and income act (1962)
#> 12400 principal and income act (1962)
#> 12401 principal and income act (1962)
#> 12402 principal and income act (1962)
#> 12403 principal and income act (1962)
#> 12404 principal and income act (1962)
#> 12405 principal and income act (1962)
#> 12406 principal and income act (1962)
#> 12407 principal and income act (1962)
#> 12408 principal and income act (1962)
#> 12409 principal and income act (1962)
#> 12410 principal and income act (1962)
#> 12411 principal and income act (1962)
#> 12412 principal and income act (2000)
#> 12413 principal and income act (2000)
#> 12414 principal and income act (2000)
#> 12415 principal and income act (2000)
#> 12416 principal and income act (2000)
#> 12417 principal and income act (2000)
#> 12418 principal and income act (2000)
#> 12419 principal and income act (2000)
#> 12420 principal and income act (2000)
#> 12421 principal and income act (2000)
#> 12422 principal and income act (2000)
#> 12423 principal and income act (2000)
#> 12424 principal and income act (2000)
#> 12425 principal and income act (2000)
#> 12426 principal and income act (2000)
#> 12427 principal and income act (2000)
#> 12428 principal and income act (2000)
#> 12429 principal and income act (2000)
#> 12430 principal and income act (2000)
#> 12431 principal and income act (2000)
#> 12432 principal and income act (2000)
#> 12433 principal and income act (2000)
#> 12434 principal and income act (2000)
#> 12435 principal and income act (2000)
#> 12436 principal and income act (2000)
#> 12437 principal and income act (2000)
#> 12438 principal and income act (2000)
#> 12439 principal and income act (2000)
#> 12440 principal and income act (2000)
#> 12441 principal and income act (2000)
#> 12442 principal and income act (2000)
#> 12443 principal and income act (2000)
#> 12444 principal and income act (2000)
#> 12445 principal and income act (2000)
#> 12446 principal and income act (2000)
#> 12447 principal and income act (2000)
#> 12448 principal and income act (2000)
#> 12449 principal and income act (2000)
#> 12450 principal and income act (2000)
#> 12451 principal and income act (2000)
#> 12452 principal and income act (2000)
#> 12453 principal and income act (2000)
#> 12454 principal and income act (2000)
#> 12455 principal and income act (2000)
#> 12456 principal and income act (2000)
#> 12457 principal and income amendments (2008)
#> 12458 principal and income amendments (2008)
#> 12459 principal and income amendments (2008)
#> 12460 principal and income amendments (2008)
#> 12461 principal and income amendments (2008)
#> 12462 principal and income amendments (2008)
#> 12463 principal and income amendments (2008)
#> 12464 principal and income amendments (2008)
#> 12465 principal and income amendments (2008)
#> 12466 principal and income amendments (2008)
#> 12467 principal and income amendments (2008)
#> 12468 principal and income amendments (2008)
#> 12469 principal and income amendments (2008)
#> 12470 principal and income amendments (2008)
#> 12471 principal and income amendments (2008)
#> 12472 principal and income amendments (2008)
#> 12473 principal and income amendments (2008)
#> 12474 principal and income amendments (2008)
#> 12475 principal and income amendments (2008)
#> 12476 principal and income amendments (2008)
#> 12477 principal and income amendments (2008)
#> 12478 principal and income amendments (2008)
#> 12479 principal and income amendments (2008)
#> 12480 principal and income amendments (2008)
#> 12481 principal and income amendments (2008)
#> 12482 principal and income amendments (2008)
#> 12483 principal and income amendments (2008)
#> 12484 principal and income amendments (2008)
#> 12485 principal and income amendments (2008)
#> 12486 principal and income amendments (2008)
#> 12487 principal and income amendments (2008)
#> 12488 principal and income amendments (2008)
#> 12489 principal and income amendments (2008)
#> 12490 principal and income amendments (2008)
#> 12491 principal and income amendments (2008)
#> 12492 prisondayswag
#> 12493 prisondayswag
#> 12494 prisondayswag
#> 12495 prisondayswag
#> 12496 prisondayswag
#> 12497 prisondayswag
#> 12498 prisondayswag
#> 12499 prkagcit
#> 12500 prkagcit
#> 12501 prkagcit
#> 12502 prkagcit
#> 12503 prkagcit
#> 12504 prkagcit
#> 12505 prkagcit
#> 12506 prkagcit
#> 12507 prkagcit
#> 12508 prkagcit
#> 12509 prkagcit
#> 12510 prkagcit
#> 12511 prkagcit
#> 12512 prkagcit
#> 12513 prkagcit
#> 12514 prkagcit
#> 12515 prkagcit
#> 12516 prkagcit
#> 12517 prkagcit
#> 12518 prkagcit
#> 12519 prkagcit
#> 12520 prob
#> 12521 prob
#> 12522 prob
#> 12523 prob
#> 12524 prob
#> 12525 prob
#> 12526 prob
#> 12527 prob
#> 12528 prob
#> 12529 prob
#> 12530 prob
#> 12531 prob
#> 12532 prob
#> 12533 prob
#> 12534 prob
#> 12535 prob
#> 12536 prob
#> 12537 prob
#> 12538 prob
#> 12539 prob
#> 12540 prob
#> 12541 prob
#> 12542 prob
#> 12543 prob
#> 12544 prob
#> 12545 prob
#> 12546 prob
#> 12547 prob
#> 12548 prob
#> 12549 prob
#> 12550 prob
#> 12551 prob
#> 12552 prob
#> 12553 prob
#> 12554 prob
#> 12555 prob
#> 12556 prob
#> 12557 prob
#> 12558 prob
#> 12559 prob
#> 12560 prob
#> 12561 prob
#> 12562 prob
#> 12563 prob
#> 12564 prob
#> 12565 probate code
#> 12566 probate code
#> 12567 probate code
#> 12568 probate code
#> 12569 probate code
#> 12570 probate code
#> 12571 probate code
#> 12572 probate code
#> 12573 probate code
#> 12574 probate code
#> 12575 probate code
#> 12576 probate code
#> 12577 probate code
#> 12578 probate code
#> 12579 probate code
#> 12580 probate code
#> 12581 probate code
#> 12582 probate code amendments (2008)
#> 12583 probate code amendments (2008)
#> 12584 probate code amendments (2008)
#> 12585 probate code amendments (2008)
#> 12586 protection of charitable assets act, model
#> 12587 prudent investor act
#> 12588 prudent investor act
#> 12589 prudent investor act
#> 12590 prudent investor act
#> 12591 prudent investor act
#> 12592 prudent investor act
#> 12593 prudent investor act
#> 12594 prudent investor act
#> 12595 prudent investor act
#> 12596 prudent investor act
#> 12597 prudent investor act
#> 12598 prudent investor act
#> 12599 prudent investor act
#> 12600 prudent investor act
#> 12601 prudent investor act
#> 12602 prudent investor act
#> 12603 prudent investor act
#> 12604 prudent investor act
#> 12605 prudent investor act
#> 12606 prudent investor act
#> 12607 prudent investor act
#> 12608 prudent investor act
#> 12609 prudent investor act
#> 12610 prudent investor act
#> 12611 prudent investor act
#> 12612 prudent investor act
#> 12613 prudent investor act
#> 12614 prudent investor act
#> 12615 prudent investor act
#> 12616 prudent investor act
#> 12617 prudent investor act
#> 12618 prudent investor act
#> 12619 prudent investor act
#> 12620 prudent investor act
#> 12621 prudent investor act
#> 12622 prudent investor act
#> 12623 prudent investor act
#> 12624 prudent investor act
#> 12625 prudent investor act
#> 12626 prudent investor act
#> 12627 prudent investor act
#> 12628 prudent investor act
#> 12629 prudent management of institutional funds act
#> 12630 prudent management of institutional funds act
#> 12631 prudent management of institutional funds act
#> 12632 prudent management of institutional funds act
#> 12633 prudent management of institutional funds act
#> 12634 prudent management of institutional funds act
#> 12635 prudent management of institutional funds act
#> 12636 prudent management of institutional funds act
#> 12637 prudent management of institutional funds act
#> 12638 prudent management of institutional funds act
#> 12639 prudent management of institutional funds act
#> 12640 prudent management of institutional funds act
#> 12641 prudent management of institutional funds act
#> 12642 prudent management of institutional funds act
#> 12643 prudent management of institutional funds act
#> 12644 prudent management of institutional funds act
#> 12645 prudent management of institutional funds act
#> 12646 prudent management of institutional funds act
#> 12647 prudent management of institutional funds act
#> 12648 prudent management of institutional funds act
#> 12649 prudent management of institutional funds act
#> 12650 prudent management of institutional funds act
#> 12651 prudent management of institutional funds act
#> 12652 prudent management of institutional funds act
#> 12653 prudent management of institutional funds act
#> 12654 prudent management of institutional funds act
#> 12655 prudent management of institutional funds act
#> 12656 prudent management of institutional funds act
#> 12657 prudent management of institutional funds act
#> 12658 prudent management of institutional funds act
#> 12659 prudent management of institutional funds act
#> 12660 prudent management of institutional funds act
#> 12661 prudent management of institutional funds act
#> 12662 prudent management of institutional funds act
#> 12663 prudent management of institutional funds act
#> 12664 prudent management of institutional funds act
#> 12665 prudent management of institutional funds act
#> 12666 prudent management of institutional funds act
#> 12667 prudent management of institutional funds act
#> 12668 prudent management of institutional funds act
#> 12669 prudent management of institutional funds act
#> 12670 prudent management of institutional funds act
#> 12671 prudent management of institutional funds act
#> 12672 prudent management of institutional funds act
#> 12673 prudent management of institutional funds act
#> 12674 prudent management of institutional funds act
#> 12675 prudent management of institutional funds act
#> 12676 prudent management of institutional funds act
#> 12677 pubaccess
#> 12678 pubaccess
#> 12679 pubaccess
#> 12680 pubaccess
#> 12681 pubaccess
#> 12682 pubaccess
#> 12683 pubaccess
#> 12684 pubaccess
#> 12685 pubaccess
#> 12686 pubaccess
#> 12687 pubaccess
#> 12688 pubaccess
#> 12689 pubaccess
#> 12690 pubbenefits_yearadopted
#> 12691 pubbenefits_yearadopted
#> 12692 pubbenefits_yearadopted
#> 12693 pubbenefits_yearadopted
#> 12694 pubbenefits_yearadopted
#> 12695 pubbenefits_yearadopted
#> 12696 pubbenefits_yearadopted
#> 12697 pubbenefits_yearadopted
#> 12698 pubbenefits_yearadopted
#> 12699 pubbenefits_yearadopted
#> 12700 pubbenefits_yearadopted
#> 12701 pubbenefits_yearadopted
#> 12702 pubbenefits_yearadopted
#> 12703 pubbenefits_yearadopted
#> 12704 pubbenefits_yearadopted
#> 12705 pubbenefits_yearadopted
#> 12706 pubbenefits_yearadopted
#> 12707 pubbenefits_yearadopted
#> 12708 pubbrefeed
#> 12709 pubbrefeed
#> 12710 pubbrefeed
#> 12711 pubbrefeed
#> 12712 pubbrefeed
#> 12713 pubbrefeed
#> 12714 pubbrefeed
#> 12715 pubbrefeed
#> 12716 pubbrefeed
#> 12717 pubbrefeed
#> 12718 pubbrefeed
#> 12719 pubbrefeed
#> 12720 pubbrefeed
#> 12721 pubbrefeed
#> 12722 pubbrefeed
#> 12723 pubbrefeed
#> 12724 pubbrefeed
#> 12725 pubbrefeed
#> 12726 pubbrefeed
#> 12727 pubbrefeed
#> 12728 pubbrefeed
#> 12729 pubbrefeed
#> 12730 pubbrefeed
#> 12731 pubbrefeed
#> 12732 pubbrefeed
#> 12733 pubbrefeed
#> 12734 pubbrefeed
#> 12735 pubbrefeed
#> 12736 pubbrefeed
#> 12737 pubbrefeed
#> 12738 pubbrefeed
#> 12739 pubbrefeed
#> 12740 pubbrefeed
#> 12741 pubbrefeed
#> 12742 pubbrefeed
#> 12743 pubbrefeed
#> 12744 pubbrefeed
#> 12745 pubbrefeed
#> 12746 pubbrefeed
#> 12747 pubbrefeed
#> 12748 pubbrefeed
#> 12749 pubbrefeed
#> 12750 pubbrefeed
#> 12751 pubbrefeed
#> 12752 pubbrefeed
#> 12753 pubbrefeed
#> 12754 pubcamfun
#> 12755 pubcamfun
#> 12756 pubcamfun
#> 12757 pubcamfun
#> 12758 pubcamfun
#> 12759 pubcamfun
#> 12760 pubcamfun
#> 12761 pubcamfun
#> 12762 pubcamfun
#> 12763 pubcamfun
#> 12764 pubcamfun
#> 12765 pubcamfun
#> 12766 pubcamfun
#> 12767 pubcamfun
#> 12768 pubcamfun
#> 12769 pubcamfun
#> 12770 pubcamfun
#> 12771 pubcamfun
#> 12772 pubcamfun
#> 12773 pubcamfun
#> 12774 pubcamfun
#> 12775 pubcamfun
#> 12776 pubcamfun
#> 12777 pubemployees
#> 12778 pubemployees
#> 12779 pubfacilities
#> 12780 pubfacilities
#> 12781 pubfacilities
#> 12782 pubfacilities
#> 12783 pubfacilities
#> 12784 pubfacilities
#> 12785 pubfacilities
#> 12786 pubfacilities
#> 12787 pubfacilities
#> 12788 pubfacilities
#> 12789 pubhouen
#> 12790 pubhouen
#> 12791 pubhouen
#> 12792 pubhouen
#> 12793 pubhouen
#> 12794 pubhouen
#> 12795 pubhouen
#> 12796 pubhouen
#> 12797 pubhouen
#> 12798 pubhouen
#> 12799 pubhouen
#> 12800 pubhouen
#> 12801 pubhouen
#> 12802 pubhouen
#> 12803 pubhouen
#> 12804 pubhouen
#> 12805 pubhouen
#> 12806 pubhouen
#> 12807 pubhouen
#> 12808 pubhouen
#> 12809 pubhouen
#> 12810 pubhouen
#> 12811 pubhouen
#> 12812 pubhouen
#> 12813 pubhouen
#> 12814 pubhouen
#> 12815 pubhouen
#> 12816 pubhouen
#> 12817 pubhouen
#> 12818 pubhouen
#> 12819 pubhouen
#> 12820 pubhouen
#> 12821 pubhouen
#> 12822 pubhouen
#> 12823 pubhouen
#> 12824 pubhouen
#> 12825 pubhouen
#> 12826 pubhouen
#> 12827 pubhouen
#> 12828 pubhouen
#> 12829 pubhouen
#> 12830 pubhouen
#> 12831 pubhouen
#> 12832 r_d_tax_credit
#> 12833 r_d_tax_credit
#> 12834 r_d_tax_credit
#> 12835 r_d_tax_credit
#> 12836 r_d_tax_credit
#> 12837 r_d_tax_credit
#> 12838 r_d_tax_credit
#> 12839 r_d_tax_credit
#> 12840 r_d_tax_credit
#> 12841 r_d_tax_credit
#> 12842 r_d_tax_credit
#> 12843 r_d_tax_credit
#> 12844 r_d_tax_credit
#> 12845 r_d_tax_credit
#> 12846 r_d_tax_credit
#> 12847 r_d_tax_credit
#> 12848 r_d_tax_credit
#> 12849 r_d_tax_credit
#> 12850 r_d_tax_credit
#> 12851 r_d_tax_credit
#> 12852 r_d_tax_credit
#> 12853 r_d_tax_credit
#> 12854 r_d_tax_credit
#> 12855 r_d_tax_credit
#> 12856 r_d_tax_credit
#> 12857 r_d_tax_credit
#> 12858 r_d_tax_credit
#> 12859 r_d_tax_credit
#> 12860 r_d_tax_credit
#> 12861 r_d_tax_credit
#> 12862 r_d_tax_credit
#> 12863 r_d_tax_credit
#> 12864 r_d_tax_credit
#> 12865 r_d_tax_credit
#> 12866 r_d_tax_credit
#> 12867 race_boehmke_fhpu
#> 12868 race_boehmke_fhpu
#> 12869 race_boehmke_fhpu
#> 12870 race_boehmke_fhpu
#> 12871 race_boehmke_fhpu
#> 12872 race_boehmke_fhpu
#> 12873 race_boehmke_fhpu
#> 12874 race_boehmke_fhpu
#> 12875 race_boehmke_fhpu
#> 12876 race_boehmke_fhpu
#> 12877 race_boehmke_fhpu
#> 12878 race_boehmke_fhpu
#> 12879 race_boehmke_fhpu
#> 12880 race_boehmke_fhpu
#> 12881 race_boehmke_fhpu
#> 12882 race_boehmke_fhpu
#> 12883 race_boehmke_fhur
#> 12884 race_boehmke_fhur
#> 12885 race_boehmke_fhur
#> 12886 race_boehmke_fhur
#> 12887 race_boehmke_fhur
#> 12888 race_boehmke_fhur
#> 12889 race_boehmke_fhur
#> 12890 race_boehmke_fhur
#> 12891 race_boehmke_fhur
#> 12892 race_boehmke_fhur
#> 12893 race_boehmke_fhur
#> 12894 race_boehmke_fhur
#> 12895 race_boehmke_fhur
#> 12896 race_boehmke_fhur
#> 12897 race_boehmke_fhur
#> 12898 race_boehmke_fhur
#> 12899 race_disc_publicaccom_agenc
#> 12900 race_disc_publicaccom_agenc
#> 12901 race_disc_publicaccom_agenc
#> 12902 race_disc_publicaccom_agenc
#> 12903 race_disc_publicaccom_agenc
#> 12904 race_disc_publicaccom_agenc
#> 12905 race_disc_publicaccom_agenc
#> 12906 race_disc_publicaccom_agenc
#> 12907 race_disc_publicaccom_agenc
#> 12908 race_disc_publicaccom_agenc
#> 12909 race_disc_publicaccom_agenc
#> 12910 race_disc_publicaccom_agenc
#> 12911 race_disc_publicaccom_agenc
#> 12912 race_disc_publicaccom_agenc
#> 12913 race_fair_employmen
#> 12914 race_fair_employmen
#> 12915 race_fair_employmen
#> 12916 race_fair_employmen
#> 12917 race_fair_employmen
#> 12918 race_fair_employmen
#> 12919 race_fair_employmen
#> 12920 race_fair_employmen
#> 12921 race_fair_employmen
#> 12922 race_fair_employmen
#> 12923 race_fair_employmen
#> 12924 race_fair_employmen
#> 12925 race_fair_employmen
#> 12926 race_fair_employmen
#> 12927 race_fair_employmen
#> 12928 race_fair_employmen
#> 12929 race_fair_employmen
#> 12930 race_fair_employmen
#> 12931 race_fair_employmen
#> 12932 race_fair_employmen
#> 12933 race_fair_employmen
#> 12934 race_fair_employmen
#> 12935 race_fair_employmen
#> 12936 race_fair_employmen
#> 12937 race_fair_employmen
#> 12938 race_fair_employmen
#> 12939 race_fair_employmen
#> 12940 race_fair_employmen
#> 12941 race_fair_employmen
#> 12942 race_fair_employmen
#> 12943 race_fair_employmen
#> 12944 race_fair_employmen
#> 12945 race_fair_employmen
#> 12946 race_fair_employmen
#> 12947 race_fair_employmen
#> 12948 race_fair_employmen
#> 12949 race_fair_employmen
#> 12950 race_fair_employmen
#> 12951 race_fair_employmen
#> 12952 race_fair_employmen
#> 12953 race_fair_employmen
#> 12954 race_fair_employmen
#> 12955 race_fair_employmen
#> 12956 race_fair_housing_law
#> 12957 race_fair_housing_law
#> 12958 race_fair_housing_law
#> 12959 race_fair_housing_law
#> 12960 race_fair_housing_law
#> 12961 race_fair_housing_law
#> 12962 race_fair_housing_law
#> 12963 race_fair_housing_law
#> 12964 race_fair_housing_law
#> 12965 race_fair_housing_law
#> 12966 race_fair_housing_law
#> 12967 race_fair_housing_law
#> 12968 race_fair_housing_law
#> 12969 race_fair_housing_law
#> 12970 race_fair_housing_law
#> 12971 race_fair_housing_law
#> 12972 race_fair_housing_owne
#> 12973 race_fair_housing_owne
#> 12974 race_fair_housing_owne
#> 12975 race_fair_housing_owne
#> 12976 race_fair_housing_owne
#> 12977 race_fair_housing_owne
#> 12978 race_fair_housing_owne
#> 12979 race_fair_housing_owne
#> 12980 race_fair_housing_owne
#> 12981 race_fair_housing_owne
#> 12982 race_fair_housing_owne
#> 12983 race_fair_housing_owne
#> 12984 race_fair_housing_owne
#> 12985 race_fair_housing_owne
#> 12986 racialpro
#> 12987 racialpro
#> 12988 racialpro
#> 12989 racialpro
#> 12990 racialpro
#> 12991 racialpro
#> 12992 racialpro
#> 12993 racialpro
#> 12994 racialpro
#> 12995 racialpro
#> 12996 racialpro
#> 12997 racialpro
#> 12998 racialpro
#> 12999 racialpro
#> 13000 racialpro
#> 13001 racialpro
#> 13002 racialpro
#> 13003 racialpro
#> 13004 racialpro
#> 13005 racialpro
#> 13006 racialpro
#> 13007 racialpro
#> 13008 racialpro
#> 13009 racialpro
#> 13010 racialpro
#> 13011 rackact
#> 13012 rackact
#> 13013 rackact
#> 13014 rackact
#> 13015 rackact
#> 13016 rackact
#> 13017 rackact
#> 13018 rackact
#> 13019 rackact
#> 13020 rackact
#> 13021 rackact
#> 13022 rackact
#> 13023 rackact
#> 13024 rackact
#> 13025 rackact
#> 13026 rackact
#> 13027 rackact
#> 13028 rackact
#> 13029 rackact
#> 13030 rackact
#> 13031 rackact
#> 13032 rackact
#> 13033 rackact
#> 13034 rackact
#> 13035 rackact
#> 13036 rackact
#> 13037 rackact
#> 13038 rackact
#> 13039 rapeshield
#> 13040 rapeshield
#> 13041 rapeshield
#> 13042 rapeshield
#> 13043 rapeshield
#> 13044 rapeshield
#> 13045 rapeshield
#> 13046 rapeshield
#> 13047 rapeshield
#> 13048 rapeshield
#> 13049 rapeshield
#> 13050 rapeshield
#> 13051 rapeshield
#> 13052 rapeshield
#> 13053 rapeshield
#> 13054 rapeshield
#> 13055 rapeshield
#> 13056 rapeshield
#> 13057 rapeshield
#> 13058 rapeshield
#> 13059 rapeshield
#> 13060 rapeshield
#> 13061 rapeshield
#> 13062 rapeshield
#> 13063 rapeshield
#> 13064 rapeshield
#> 13065 rapeshield
#> 13066 rapeshield
#> 13067 rapeshield
#> 13068 rapeshield
#> 13069 rapeshield
#> 13070 rapeshield
#> 13071 rapeshield
#> 13072 rapeshield
#> 13073 rapeshield
#> 13074 rapeshield
#> 13075 rapeshield
#> 13076 rapeshield
#> 13077 rapeshield
#> 13078 rapeshield
#> 13079 rapeshield
#> 13080 rapeshield
#> 13081 rapeshield
#> 13082 rapeshield
#> 13083 rapeshield
#> 13084 rapeshield
#> 13085 rapeshield
#> 13086 rapeshield
#> 13087 real estate cooperative
#> 13088 real property electronic recording act
#> 13089 real property electronic recording act
#> 13090 real property electronic recording act
#> 13091 real property electronic recording act
#> 13092 real property electronic recording act
#> 13093 real property electronic recording act
#> 13094 real property electronic recording act
#> 13095 real property electronic recording act
#> 13096 real property electronic recording act
#> 13097 real property electronic recording act
#> 13098 real property electronic recording act
#> 13099 real property electronic recording act
#> 13100 real property electronic recording act
#> 13101 real property electronic recording act
#> 13102 real property electronic recording act
#> 13103 real property electronic recording act
#> 13104 real property electronic recording act
#> 13105 real property electronic recording act
#> 13106 real property electronic recording act
#> 13107 real property electronic recording act
#> 13108 real property electronic recording act
#> 13109 real property electronic recording act
#> 13110 real property electronic recording act
#> 13111 real property electronic recording act
#> 13112 real property electronic recording act
#> 13113 real property electronic recording act
#> 13114 real property electronic recording act
#> 13115 real property electronic recording act
#> 13116 real property electronic recording act
#> 13117 real property transfer on death act
#> 13118 real property transfer on death act
#> 13119 real property transfer on death act
#> 13120 real property transfer on death act
#> 13121 real property transfer on death act
#> 13122 real property transfer on death act
#> 13123 real property transfer on death act
#> 13124 real property transfer on death act
#> 13125 real property transfer on death act
#> 13126 real property transfer on death act
#> 13127 real property transfer on death act
#> 13128 real property transfer on death act
#> 13129 realest
#> 13130 realest
#> 13131 realest
#> 13132 realest
#> 13133 realest
#> 13134 realest
#> 13135 realest
#> 13136 realest
#> 13137 realest
#> 13138 realest
#> 13139 realest
#> 13140 realest
#> 13141 realest
#> 13142 realest
#> 13143 realest
#> 13144 realest
#> 13145 realest
#> 13146 realest
#> 13147 realest
#> 13148 realest
#> 13149 realest
#> 13150 realest
#> 13151 realest
#> 13152 realest
#> 13153 realest
#> 13154 realest
#> 13155 realest
#> 13156 realest
#> 13157 realest
#> 13158 realest
#> 13159 realest
#> 13160 realest
#> 13161 realest
#> 13162 realest
#> 13163 realest
#> 13164 realest
#> 13165 realest
#> 13166 realest
#> 13167 realest
#> 13168 realest
#> 13169 reciprocal enforcement of support act (1950)
#> 13170 reciprocal enforcement of support act (1950)
#> 13171 reciprocal enforcement of support act (1950)
#> 13172 reciprocal enforcement of support act (1950)
#> 13173 reciprocal enforcement of support act (1950)
#> 13174 reciprocal enforcement of support act (1950)
#> 13175 reciprocal enforcement of support act (1950)
#> 13176 reciprocal enforcement of support act (1950)
#> 13177 reciprocal enforcement of support act (1950)
#> 13178 reciprocal enforcement of support act (1950)
#> 13179 reciprocal enforcement of support act (1950)
#> 13180 reciprocal enforcement of support act (1950)
#> 13181 reciprocal enforcement of support act (1950)
#> 13182 reciprocal enforcement of support act (1950)
#> 13183 reciprocal enforcement of support act (1950)
#> 13184 reciprocal enforcement of support act (1950)
#> 13185 reciprocal enforcement of support act (1950)
#> 13186 reciprocal enforcement of support act (1950)
#> 13187 reciprocal enforcement of support act (1950)
#> 13188 reciprocal enforcement of support act (1950)
#> 13189 recipsup
#> 13190 recipsup
#> 13191 recipsup
#> 13192 recipsup
#> 13193 recipsup
#> 13194 recipsup
#> 13195 recipsup
#> 13196 recipsup
#> 13197 recipsup
#> 13198 recipsup
#> 13199 recipsup
#> 13200 recipsup
#> 13201 recipsup
#> 13202 recipsup
#> 13203 recipsup
#> 13204 recipsup
#> 13205 recipsup
#> 13206 recipsup
#> 13207 recipsup
#> 13208 recipsup
#> 13209 recipsup
#> 13210 recipsup
#> 13211 recipsup
#> 13212 recipsup
#> 13213 recipsup
#> 13214 recipsup
#> 13215 recipsup
#> 13216 recipsup
#> 13217 recipsup
#> 13218 recipsup
#> 13219 recipsup
#> 13220 recipsup
#> 13221 recipsup
#> 13222 recipsup
#> 13223 recipsup
#> 13224 recipsup
#> 13225 recipsup
#> 13226 recipsup
#> 13227 recipsup
#> 13228 recipsup
#> 13229 recognition and enforcement of canadian domestic-violence protection orders
#> 13230 recognition and enforcement of canadian domestic-violence protection orders
#> 13231 recognition of substitute decision-making documents
#> 13232 recognition of substitute decision-making documents
#> 13233 refuseserv
#> 13234 refuseserv
#> 13235 refuseserv
#> 13236 refuseserv
#> 13237 refuseserv
#> 13238 refuseserv
#> 13239 refuseserv
#> 13240 refuseserv
#> 13241 refuseserv
#> 13242 refuseserv
#> 13243 refuseserv
#> 13244 refuseserv
#> 13245 refuseserv
#> 13246 refuseserv
#> 13247 refuseserv
#> 13248 refuseserv
#> 13249 refuseserv
#> 13250 refuseserv
#> 13251 refuseserv
#> 13252 refuseserv
#> 13253 refuseserv
#> 13254 refuseserv
#> 13255 refuseserv
#> 13256 refuseserv
#> 13257 refuseserv
#> 13258 refuseserv
#> 13259 refuseserv
#> 13260 refuseserv
#> 13261 refuseserv
#> 13262 refuseserv
#> 13263 refuseserv
#> 13264 refuseserv
#> 13265 refuseserv
#> 13266 refuseserv
#> 13267 refuseserv
#> 13268 refuseserv
#> 13269 refuseserv
#> 13270 refuseserv
#> 13271 refuseserv
#> 13272 refuseserv
#> 13273 refuseserv
#> 13274 refuseserv
#> 13275 refuseserv
#> 13276 refuseserv
#> 13277 refuseserv
#> 13278 refuseserv
#> 13279 refuseserv
#> 13280 registered agents act, model (2006) (last amended 2011)
#> 13281 registered agents act, model (2006) (last amended 2011)
#> 13282 registered agents act, model (2006) (last amended 2011)
#> 13283 registered agents act, model (2006) (last amended 2011)
#> 13284 registered agents act, model (2006) (last amended 2011)
#> 13285 registered agents act, model (2006) (last amended 2011)
#> 13286 registered agents act, model (2006) (last amended 2011)
#> 13287 registered agents act, model (2006) (last amended 2011)
#> 13288 registered agents act, model (2006) (last amended 2011)
#> 13289 registered agents act, model (2006) (last amended 2011)
#> 13290 regreq
#> 13291 regreq
#> 13292 regreq
#> 13293 regreq
#> 13294 regreq
#> 13295 regreq
#> 13296 regreq
#> 13297 regreq
#> 13298 regreq
#> 13299 regreq
#> 13300 regreq
#> 13301 regreq
#> 13302 regreq
#> 13303 regreq
#> 13304 regreq
#> 13305 regulation_bicycle_helmet
#> 13306 regulation_bicycle_helmet
#> 13307 regulation_bicycle_helmet
#> 13308 regulation_bicycle_helmet
#> 13309 regulation_bicycle_helmet
#> 13310 regulation_bicycle_helmet
#> 13311 regulation_bicycle_helmet
#> 13312 regulation_bicycle_helmet
#> 13313 regulation_bicycle_helmet
#> 13314 regulation_bicycle_helmet
#> 13315 regulation_bicycle_helmet
#> 13316 regulation_bicycle_helmet
#> 13317 regulation_bicycle_helmet
#> 13318 regulation_bicycle_helmet
#> 13319 regulation_bicycle_helmet
#> 13320 regulation_bicycle_helmet
#> 13321 regulation_bicycle_helmet
#> 13322 regulation_bicycle_helmet
#> 13323 regulation_bicycle_helmet
#> 13324 regulation_bicycle_helmet
#> 13325 regulation_bicycle_helmet
#> 13326 regulation_boehmke_cogrowma
#> 13327 regulation_boehmke_cogrowma
#> 13328 regulation_boehmke_cogrowma
#> 13329 regulation_boehmke_cogrowma
#> 13330 regulation_boehmke_cogrowma
#> 13331 regulation_boehmke_cogrowma
#> 13332 regulation_boehmke_cogrowma
#> 13333 regulation_boehmke_cogrowma
#> 13334 regulation_boehmke_cogrowma
#> 13335 regulation_boehmke_cogrowma
#> 13336 regulation_boehmke_cogrowma
#> 13337 regulation_boehmke_cogrowma
#> 13338 regulation_boehmke_cogrowma
#> 13339 regulation_boehmke_cogrowma
#> 13340 regulation_boehmke_cogrowma
#> 13341 regulation_boehmke_cogrowma
#> 13342 regulation_boehmke_cogrowma
#> 13343 regulation_boehmke_grandvis
#> 13344 regulation_boehmke_grandvis
#> 13345 regulation_boehmke_grandvis
#> 13346 regulation_boehmke_grandvis
#> 13347 regulation_boehmke_grandvis
#> 13348 regulation_boehmke_grandvis
#> 13349 regulation_boehmke_grandvis
#> 13350 regulation_boehmke_grandvis
#> 13351 regulation_boehmke_grandvis
#> 13352 regulation_boehmke_grandvis
#> 13353 regulation_boehmke_grandvis
#> 13354 regulation_boehmke_grandvis
#> 13355 regulation_boehmke_grandvis
#> 13356 regulation_boehmke_grandvis
#> 13357 regulation_boehmke_grandvis
#> 13358 regulation_boehmke_grandvis
#> 13359 regulation_boehmke_grandvis
#> 13360 regulation_boehmke_grandvis
#> 13361 regulation_boehmke_grandvis
#> 13362 regulation_boehmke_grandvis
#> 13363 regulation_boehmke_grandvis
#> 13364 regulation_boehmke_grandvis
#> 13365 regulation_boehmke_grandvis
#> 13366 regulation_boehmke_grandvis
#> 13367 regulation_boehmke_grandvis
#> 13368 regulation_boehmke_grandvis
#> 13369 regulation_boehmke_grandvis
#> 13370 regulation_boehmke_grandvis
#> 13371 regulation_boehmke_grandvis
#> 13372 regulation_boehmke_grandvis
#> 13373 regulation_boehmke_grandvis
#> 13374 regulation_boehmke_grandvis
#> 13375 regulation_boehmke_grandvis
#> 13376 regulation_boehmke_grandvis
#> 13377 regulation_boehmke_grandvis
#> 13378 regulation_boehmke_grandvis
#> 13379 regulation_boehmke_grandvis
#> 13380 regulation_boehmke_grandvis
#> 13381 regulation_boehmke_grandvis
#> 13382 regulation_boehmke_grandvis
#> 13383 regulation_boehmke_grandvis
#> 13384 regulation_boehmke_grandvis
#> 13385 regulation_boehmke_grandvis
#> 13386 regulation_boehmke_grandvis
#> 13387 regulation_boehmke_grandvis
#> 13388 regulation_boehmke_grandvis
#> 13389 regulation_boehmke_grandvis
#> 13390 regulation_boehmke_grandvis
#> 13391 regulation_boehmke_grandvis
#> 13392 regulation_boehmke_livingwil
#> 13393 regulation_boehmke_livingwil
#> 13394 regulation_boehmke_livingwil
#> 13395 regulation_boehmke_livingwil
#> 13396 regulation_boehmke_livingwil
#> 13397 regulation_boehmke_livingwil
#> 13398 regulation_boehmke_livingwil
#> 13399 regulation_boehmke_livingwil
#> 13400 regulation_boehmke_livingwil
#> 13401 regulation_boehmke_livingwil
#> 13402 regulation_boehmke_livingwil
#> 13403 regulation_boehmke_livingwil
#> 13404 regulation_boehmke_livingwil
#> 13405 regulation_boehmke_livingwil
#> 13406 regulation_boehmke_livingwil
#> 13407 regulation_boehmke_livingwil
#> 13408 regulation_boehmke_livingwil
#> 13409 regulation_boehmke_livingwil
#> 13410 regulation_boehmke_livingwil
#> 13411 regulation_boehmke_livingwil
#> 13412 regulation_boehmke_livingwil
#> 13413 regulation_boehmke_livingwil
#> 13414 regulation_boehmke_livingwil
#> 13415 regulation_boehmke_livingwil
#> 13416 regulation_boehmke_livingwil
#> 13417 regulation_boehmke_livingwil
#> 13418 regulation_boehmke_livingwil
#> 13419 regulation_boehmke_livingwil
#> 13420 regulation_boehmke_livingwil
#> 13421 regulation_boehmke_livingwil
#> 13422 regulation_boehmke_livingwil
#> 13423 regulation_boehmke_livingwil
#> 13424 regulation_boehmke_livingwil
#> 13425 regulation_boehmke_livingwil
#> 13426 regulation_boehmke_livingwil
#> 13427 regulation_boehmke_livingwil
#> 13428 regulation_boehmke_livingwil
#> 13429 regulation_boehmke_livingwil
#> 13430 regulation_boehmke_livingwil
#> 13431 regulation_boehmke_livingwil
#> 13432 regulation_boehmke_livingwil
#> 13433 regulation_boehmke_livingwil
#> 13434 regulation_boehmke_livingwil
#> 13435 regulation_boehmke_livingwil
#> 13436 regulation_boehmke_livingwil
#> 13437 regulation_boehmke_livingwil
#> 13438 regulation_boehmke_livingwil
#> 13439 regulation_boehmke_livingwil
#> 13440 regulation_boehmke_livingwil
#> 13441 regulation_boehmke_shiel
#> 13442 regulation_boehmke_shiel
#> 13443 regulation_boehmke_shiel
#> 13444 regulation_boehmke_shiel
#> 13445 regulation_boehmke_shiel
#> 13446 regulation_boehmke_shiel
#> 13447 regulation_boehmke_shiel
#> 13448 regulation_boehmke_shiel
#> 13449 regulation_boehmke_shiel
#> 13450 regulation_boehmke_shiel
#> 13451 regulation_boehmke_shiel
#> 13452 regulation_boehmke_shiel
#> 13453 regulation_boehmke_shiel
#> 13454 regulation_boehmke_shiel
#> 13455 regulation_boehmke_shiel
#> 13456 regulation_boehmke_shiel
#> 13457 regulation_boehmke_shiel
#> 13458 regulation_boehmke_shiel
#> 13459 regulation_boehmke_shiel
#> 13460 regulation_boehmke_shiel
#> 13461 regulation_boehmke_shiel
#> 13462 regulation_boehmke_shiel
#> 13463 regulation_boehmke_shiel
#> 13464 regulation_boehmke_shiel
#> 13465 regulation_boehmke_shiel
#> 13466 regulation_boehmke_shiel
#> 13467 regulation_boehmke_shiel
#> 13468 regulation_boehmke_shiel
#> 13469 regulation_boehmke_shiel
#> 13470 regulation_boehmke_shiel
#> 13471 regulation_boehmke_shiel
#> 13472 regulation_boehmke_shiel
#> 13473 regulation_boehmke_shiel
#> 13474 regulation_boehmke_shiel
#> 13475 regulation_boehmke_shiel
#> 13476 regulation_boehmke_shiel
#> 13477 regulation_boehmke_shiel
#> 13478 regulation_boehmke_shiel
#> 13479 regulation_boehmke_shiel
#> 13480 regulation_boehmke_shiel
#> 13481 regulation_boehmke_shiel
#> 13482 regulation_boehmke_shiel
#> 13483 regulation_forced_sterilization
#> 13484 regulation_forced_sterilization
#> 13485 regulation_forced_sterilization
#> 13486 regulation_forced_sterilization
#> 13487 regulation_forced_sterilization
#> 13488 regulation_forced_sterilization
#> 13489 regulation_forced_sterilization
#> 13490 regulation_forced_sterilization
#> 13491 regulation_forced_sterilization
#> 13492 regulation_forced_sterilization
#> 13493 regulation_forced_sterilization
#> 13494 regulation_forced_sterilization
#> 13495 regulation_forced_sterilization
#> 13496 regulation_forced_sterilization
#> 13497 regulation_forced_sterilization
#> 13498 regulation_forced_sterilization
#> 13499 regulation_forced_sterilization
#> 13500 regulation_forced_sterilization
#> 13501 regulation_forced_sterilization
#> 13502 regulation_forced_sterilization
#> 13503 regulation_forced_sterilization
#> 13504 regulation_forced_sterilization
#> 13505 regulation_forced_sterilization
#> 13506 regulation_forced_sterilization
#> 13507 regulation_forced_sterilization
#> 13508 regulation_forced_sterilization
#> 13509 regulation_forced_sterilization
#> 13510 regulation_hate_crime
#> 13511 regulation_hate_crime
#> 13512 regulation_hate_crime
#> 13513 regulation_hate_crime
#> 13514 regulation_hate_crime
#> 13515 regulation_hate_crime
#> 13516 regulation_hate_crime
#> 13517 regulation_hate_crime
#> 13518 regulation_hate_crime
#> 13519 regulation_hate_crime
#> 13520 regulation_hate_crime
#> 13521 regulation_hate_crime
#> 13522 regulation_hate_crime
#> 13523 regulation_hate_crime
#> 13524 regulation_hate_crime
#> 13525 regulation_hate_crime
#> 13526 regulation_hate_crime
#> 13527 regulation_hate_crime
#> 13528 regulation_hate_crime
#> 13529 regulation_hate_crime
#> 13530 regulation_hate_crime
#> 13531 regulation_hate_crime
#> 13532 regulation_hate_crime
#> 13533 regulation_hate_crime
#> 13534 regulation_hate_crime
#> 13535 regulation_hate_crime
#> 13536 regulation_hate_crime
#> 13537 regulation_hate_crime
#> 13538 regulation_hate_crime
#> 13539 regulation_hate_crime
#> 13540 regulation_hate_crime
#> 13541 regulation_hate_crime
#> 13542 regulation_hate_crime
#> 13543 regulation_hate_crime
#> 13544 regulation_hate_crime
#> 13545 regulation_hate_crime
#> 13546 regulation_hate_crime
#> 13547 regulation_hate_crime
#> 13548 regulation_hate_crime
#> 13549 regulation_hate_crime
#> 13550 regulation_hate_crime
#> 13551 regulation_hate_crime
#> 13552 regulation_hate_crime
#> 13553 regulation_hate_crime
#> 13554 regulation_hate_crime
#> 13555 regulation_homerul
#> 13556 regulation_homerul
#> 13557 regulation_homerul
#> 13558 regulation_homerul
#> 13559 regulation_homerul
#> 13560 regulation_homerul
#> 13561 regulation_homerul
#> 13562 regulation_homerul
#> 13563 regulation_homerul
#> 13564 regulation_homerul
#> 13565 regulation_homerul
#> 13566 regulation_homerul
#> 13567 regulation_homerul
#> 13568 regulation_homerul
#> 13569 regulation_homerul
#> 13570 regulation_homerul
#> 13571 regulation_homerul
#> 13572 regulation_homerul
#> 13573 regulation_homerul
#> 13574 regulation_homerul
#> 13575 regulation_homerul
#> 13576 regulation_homerul
#> 13577 regulation_homerul
#> 13578 regulation_homerul
#> 13579 regulation_homerul
#> 13580 regulation_homerul
#> 13581 regulation_homerul
#> 13582 regulation_homerul
#> 13583 regulation_homerul
#> 13584 regulation_homerul
#> 13585 regulation_homerul
#> 13586 regulation_housing_directstatea
#> 13587 regulation_housing_directstatea
#> 13588 regulation_housing_directstatea
#> 13589 regulation_housing_directstatea
#> 13590 regulation_housing_directstatea
#> 13591 regulation_housing_directstatea
#> 13592 regulation_housing_directstatea
#> 13593 regulation_housing_directstatea
#> 13594 regulation_housing_directstatea
#> 13595 regulation_housing_directstatea
#> 13596 regulation_mandatory_car_insura
#> 13597 regulation_mandatory_car_insura
#> 13598 regulation_mandatory_car_insura
#> 13599 regulation_mandatory_car_insura
#> 13600 regulation_mandatory_car_insura
#> 13601 regulation_mandatory_car_insura
#> 13602 regulation_mandatory_car_insura
#> 13603 regulation_mandatory_car_insura
#> 13604 regulation_mandatory_car_insura
#> 13605 regulation_mandatory_car_insura
#> 13606 regulation_mandatory_car_insura
#> 13607 regulation_mandatory_car_insura
#> 13608 regulation_mandatory_car_insura
#> 13609 regulation_mandatory_car_insura
#> 13610 regulation_mandatory_car_insura
#> 13611 regulation_mandatory_car_insura
#> 13612 regulation_mandatory_car_insura
#> 13613 regulation_mandatory_car_insura
#> 13614 regulation_mandatory_car_insura
#> 13615 regulation_mandatory_car_insura
#> 13616 regulation_mandatory_car_insura
#> 13617 regulation_mandatory_car_insura
#> 13618 regulation_mandatory_car_insura
#> 13619 regulation_mandatory_car_insura
#> 13620 regulation_mandatory_car_insura
#> 13621 regulation_mandatory_car_insura
#> 13622 regulation_mandatory_car_insura
#> 13623 regulation_mandatory_car_insura
#> 13624 regulation_mandatory_car_insura
#> 13625 regulation_mandatory_car_insura
#> 13626 regulation_mandatory_car_insura
#> 13627 regulation_mandatory_car_insura
#> 13628 regulation_mandatory_car_insura
#> 13629 regulation_mandatory_seatbelt
#> 13630 regulation_mandatory_seatbelt
#> 13631 regulation_mandatory_seatbelt
#> 13632 regulation_mandatory_seatbelt
#> 13633 regulation_mandatory_seatbelt
#> 13634 regulation_mandatory_seatbelt
#> 13635 regulation_mandatory_seatbelt
#> 13636 regulation_mandatory_seatbelt
#> 13637 regulation_mandatory_seatbelt
#> 13638 regulation_mandatory_seatbelt
#> 13639 regulation_mandatory_seatbelt
#> 13640 regulation_mandatory_seatbelt
#> 13641 regulation_mandatory_seatbelt
#> 13642 regulation_mandatory_seatbelt
#> 13643 regulation_mandatory_seatbelt
#> 13644 regulation_mandatory_seatbelt
#> 13645 regulation_mandatory_seatbelt
#> 13646 regulation_mandatory_seatbelt
#> 13647 regulation_mandatory_seatbelt
#> 13648 regulation_mandatory_seatbelt
#> 13649 regulation_mandatory_seatbelt
#> 13650 regulation_mandatory_seatbelt
#> 13651 regulation_mandatory_seatbelt
#> 13652 regulation_mandatory_seatbelt
#> 13653 regulation_mandatory_seatbelt
#> 13654 regulation_mandatory_seatbelt
#> 13655 regulation_mandatory_seatbelt
#> 13656 regulation_mandatory_seatbelt
#> 13657 regulation_mandatory_seatbelt
#> 13658 regulation_mandatory_seatbelt
#> 13659 regulation_mandatory_seatbelt
#> 13660 regulation_mandatory_seatbelt
#> 13661 regulation_mandatory_seatbelt
#> 13662 regulation_mandatory_seatbelt
#> 13663 regulation_mandatory_seatbelt
#> 13664 regulation_mandatory_seatbelt
#> 13665 regulation_mandatory_seatbelt
#> 13666 regulation_mandatory_seatbelt
#> 13667 regulation_mandatory_seatbelt
#> 13668 regulation_mandatory_seatbelt
#> 13669 regulation_mandatory_seatbelt
#> 13670 regulation_mandatory_seatbelt
#> 13671 regulation_mandatory_seatbelt
#> 13672 regulation_mandatory_seatbelt
#> 13673 regulation_mandatory_seatbelt
#> 13674 regulation_mandatory_seatbelt
#> 13675 regulation_mandatory_seatbelt
#> 13676 regulation_mandatory_seatbelt
#> 13677 regulation_mandatory_seatbelt
#> 13678 regulation_motorcycle_helmet
#> 13679 regulation_motorcycle_helmet
#> 13680 regulation_motorcycle_helmet
#> 13681 regulation_motorcycle_helmet
#> 13682 regulation_motorcycle_helmet
#> 13683 regulation_motorcycle_helmet
#> 13684 regulation_motorcycle_helmet
#> 13685 regulation_motorcycle_helmet
#> 13686 regulation_motorcycle_helmet
#> 13687 regulation_motorcycle_helmet
#> 13688 regulation_motorcycle_helmet
#> 13689 regulation_motorcycle_helmet
#> 13690 regulation_motorcycle_helmet
#> 13691 regulation_motorcycle_helmet
#> 13692 regulation_motorcycle_helmet
#> 13693 regulation_motorcycle_helmet
#> 13694 regulation_motorcycle_helmet
#> 13695 regulation_motorcycle_helmet
#> 13696 regulation_motorcycle_helmet
#> 13697 regulation_motorcycle_helmet
#> 13698 regulation_motorcycle_helmet
#> 13699 regulation_motorcycle_helmet
#> 13700 regulation_motorcycle_helmet
#> 13701 regulation_motorcycle_helmet
#> 13702 regulation_motorcycle_helmet
#> 13703 regulation_motorcycle_helmet
#> 13704 regulation_motorcycle_helmet
#> 13705 regulation_motorcycle_helmet
#> 13706 regulation_motorcycle_helmet
#> 13707 regulation_motorcycle_helmet
#> 13708 regulation_motorcycle_helmet
#> 13709 regulation_motorcycle_helmet
#> 13710 regulation_motorcycle_helmet
#> 13711 regulation_motorcycle_helmet
#> 13712 regulation_motorcycle_helmet
#> 13713 regulation_motorcycle_helmet
#> 13714 regulation_motorcycle_helmet
#> 13715 regulation_motorcycle_helmet
#> 13716 regulation_motorcycle_helmet
#> 13717 regulation_motorcycle_helmet
#> 13718 regulation_motorcycle_helmet
#> 13719 regulation_motorcycle_helmet
#> 13720 regulation_motorcycle_helmet
#> 13721 regulation_motorcycle_helmet
#> 13722 regulation_motorcycle_helmet
#> 13723 regulation_motorcycle_helmet
#> 13724 regulation_motorcycle_helmet
#> 13725 regulation_motorcycle_helmet
#> 13726 regulation_motorcycle_helmet
#> 13727 regulation_pain_suffering_limit
#> 13728 regulation_pain_suffering_limit
#> 13729 regulation_pain_suffering_limit
#> 13730 regulation_pain_suffering_limit
#> 13731 regulation_pain_suffering_limit
#> 13732 regulation_pain_suffering_limit
#> 13733 regulation_pain_suffering_limit
#> 13734 regulation_pain_suffering_limit
#> 13735 regulation_pain_suffering_limit
#> 13736 regulation_pain_suffering_limit
#> 13737 regulation_pain_suffering_limit
#> 13738 regulation_pain_suffering_limit
#> 13739 regulation_pain_suffering_limit
#> 13740 regulation_pain_suffering_limit
#> 13741 regulation_pain_suffering_limit
#> 13742 regulation_pain_suffering_limit
#> 13743 regulation_pain_suffering_limit
#> 13744 regulation_pain_suffering_limit
#> 13745 regulation_pain_suffering_limit
#> 13746 regulation_pain_suffering_limit
#> 13747 regulation_pain_suffering_limit
#> 13748 regulation_pain_suffering_limit
#> 13749 regulation_pain_suffering_limit
#> 13750 regulation_pain_suffering_limit
#> 13751 regulation_pain_suffering_limit
#> 13752 regulation_pain_suffering_limit
#> 13753 regulation_pain_suffering_limit
#> 13754 regulation_pain_suffering_limit
#> 13755 regulation_pain_suffering_limit
#> 13756 regulation_pain_suffering_limit
#> 13757 regulation_pain_suffering_limit
#> 13758 regulation_pain_suffering_limit
#> 13759 regulation_physician_suicid
#> 13760 regulation_physician_suicid
#> 13761 regulation_physician_suicid
#> 13762 regulation_physician_suicid
#> 13763 regulation_rent_contro
#> 13764 regulation_rent_contro
#> 13765 regulation_rent_contro
#> 13766 regulation_rent_contro
#> 13767 regulation_rent_contro
#> 13768 regulation_rent_contro
#> 13769 regulation_rent_contro
#> 13770 regulation_rent_contro
#> 13771 regulation_rent_contro
#> 13772 regulation_rent_contro
#> 13773 regulation_rent_contro
#> 13774 regulation_rent_contro
#> 13775 regulation_rent_contro
#> 13776 regulation_rent_contro
#> 13777 regulation_rent_contro
#> 13778 regulation_rent_contro
#> 13779 regulation_rent_contro
#> 13780 regulation_rent_contro
#> 13781 regulation_rent_contro
#> 13782 regulation_rent_contro
#> 13783 regulation_rent_contro
#> 13784 regulation_rent_contro
#> 13785 regulation_rent_contro
#> 13786 regulation_rent_contro
#> 13787 regulation_rent_contro
#> 13788 regulation_rent_contro
#> 13789 regulation_rent_contro
#> 13790 regulation_rent_contro
#> 13791 regulation_rent_contro
#> 13792 regulation_rent_contro
#> 13793 regulation_rent_contro
#> 13794 regulation_rent_contro
#> 13795 regulation_rent_contro
#> 13796 regulation_rfr
#> 13797 regulation_rfr
#> 13798 regulation_rfr
#> 13799 regulation_rfr
#> 13800 regulation_rfr
#> 13801 regulation_rfr
#> 13802 regulation_rfr
#> 13803 regulation_rfr
#> 13804 regulation_rfr
#> 13805 regulation_rfr
#> 13806 regulation_rfr
#> 13807 regulation_rfr
#> 13808 regulation_rfr
#> 13809 regulation_rfr
#> 13810 regulation_rfr
#> 13811 regulation_rfr
#> 13812 regulation_rfr
#> 13813 regulation_rfr
#> 13814 regulation_rfr
#> 13815 regulation_sedition_law
#> 13816 regulation_sedition_law
#> 13817 regulation_sedition_law
#> 13818 regulation_sedition_law
#> 13819 regulation_sedition_law
#> 13820 regulation_sedition_law
#> 13821 regulation_sedition_law
#> 13822 regulation_sedition_law
#> 13823 regulation_sedition_law
#> 13824 regulation_sedition_law
#> 13825 regulation_sedition_law
#> 13826 regulation_sedition_law
#> 13827 regulation_sedition_law
#> 13828 regulation_sedition_law
#> 13829 regulation_sedition_law
#> 13830 regulation_sedition_law
#> 13831 regulation_sedition_law
#> 13832 regulation_sedition_law
#> 13833 regulation_sedition_law
#> 13834 regulation_sedition_law
#> 13835 regulation_sedition_law
#> 13836 regulation_sedition_law
#> 13837 regulation_sedition_law
#> 13838 regulation_sedition_law
#> 13839 regulation_sedition_law
#> 13840 regulation_sedition_law
#> 13841 regulation_sedition_law
#> 13842 regulation_sedition_law
#> 13843 regulation_sedition_law
#> 13844 regulation_utility_jurisdictio
#> 13845 regulation_utility_jurisdictio
#> 13846 regulation_utility_jurisdictio
#> 13847 regulation_utility_jurisdictio
#> 13848 regulation_utility_jurisdictio
#> 13849 regulation_utility_jurisdictio
#> 13850 regulation_utility_jurisdictio
#> 13851 regulation_utility_jurisdictio
#> 13852 regulation_utility_jurisdictio
#> 13853 regulation_utility_jurisdictio
#> 13854 regulation_utility_jurisdictio
#> 13855 regulation_utility_jurisdictio
#> 13856 regulation_utility_jurisdictio
#> 13857 regulation_utility_jurisdictio
#> 13858 regulation_utility_jurisdictio
#> 13859 regulation_utility_jurisdictio
#> 13860 regulation_utility_jurisdictio
#> 13861 regulation_utility_jurisdictio
#> 13862 regulation_utility_jurisdictio
#> 13863 regulation_utility_jurisdictio
#> 13864 regulation_utility_jurisdictio
#> 13865 regulation_utility_jurisdictio
#> 13866 regulation_utility_jurisdictio
#> 13867 regulation_utility_jurisdictio
#> 13868 regulation_utility_jurisdictio
#> 13869 regulation_utility_jurisdictio
#> 13870 regulation_utility_jurisdictio
#> 13871 regulation_utility_jurisdictio
#> 13872 regulation_utility_jurisdictio
#> 13873 regulation_utility_jurisdictio
#> 13874 regulation_utility_jurisdictio
#> 13875 regulation_utility_jurisdictio
#> 13876 regulation_utility_jurisdictio
#> 13877 regulation_utility_jurisdictio
#> 13878 regulation_utility_jurisdictio
#> 13879 regulation_utility_jurisdictio
#> 13880 regulation_utility_jurisdictio
#> 13881 regulation_utility_jurisdictio
#> 13882 regulation_utility_jurisdictio
#> 13883 regulation_utility_jurisdictio
#> 13884 regulation_utility_jurisdictio
#> 13885 regulation_utility_jurisdictio
#> 13886 regulation_utility_jurisdictio
#> 13887 regulations_lemonla
#> 13888 regulations_lemonla
#> 13889 regulations_lemonla
#> 13890 regulations_lemonla
#> 13891 regulations_lemonla
#> 13892 regulations_lemonla
#> 13893 regulations_lemonla
#> 13894 regulations_lemonla
#> 13895 regulations_lemonla
#> 13896 regulations_lemonla
#> 13897 regulations_lemonla
#> 13898 regulations_lemonla
#> 13899 regulations_lemonla
#> 13900 regulations_lemonla
#> 13901 regulations_lemonla
#> 13902 regulations_lemonla
#> 13903 regulations_lemonla
#> 13904 regulations_lemonla
#> 13905 regulations_lemonla
#> 13906 regulations_lemonla
#> 13907 regulations_lemonla
#> 13908 regulations_lemonla
#> 13909 regulations_lemonla
#> 13910 regulations_lemonla
#> 13911 regulations_lemonla
#> 13912 regulations_lemonla
#> 13913 regulations_lemonla
#> 13914 regulations_lemonla
#> 13915 regulations_lemonla
#> 13916 regulations_lemonla
#> 13917 regulations_lemonla
#> 13918 regulations_lemonla
#> 13919 regulations_lemonla
#> 13920 regulations_lemonla
#> 13921 regulations_lemonla
#> 13922 regulations_lemonla
#> 13923 regulations_lemonla
#> 13924 regulations_lemonla
#> 13925 regulations_lemonla
#> 13926 regulations_lemonla
#> 13927 regulations_lemonla
#> 13928 regulations_lemonla
#> 13929 regulations_lemonla
#> 13930 regulations_lemonla
#> 13931 regulations_lemonla
#> 13932 regulations_lemonla
#> 13933 regulations_lemonla
#> 13934 regulations_lemonla
#> 13935 regulations_lemonla
#> 13936 regulations_lemonla
#> 13937 regulations_state_debt_limitati
#> 13938 regulations_state_debt_limitati
#> 13939 regulations_state_debt_limitati
#> 13940 regulations_state_debt_limitati
#> 13941 regulations_state_debt_limitati
#> 13942 regulations_state_debt_limitati
#> 13943 regulations_state_debt_limitati
#> 13944 regulations_state_debt_limitati
#> 13945 regulations_state_debt_limitati
#> 13946 regulations_state_debt_limitati
#> 13947 regulations_state_debt_limitati
#> 13948 regulations_state_debt_limitati
#> 13949 regulations_state_debt_limitati
#> 13950 regulations_state_debt_limitati
#> 13951 regulations_state_debt_limitati
#> 13952 regulations_state_debt_limitati
#> 13953 regulations_state_debt_limitati
#> 13954 regulations_state_debt_limitati
#> 13955 regulations_state_debt_limitati
#> 13956 regulations_state_debt_limitati
#> 13957 regulations_state_debt_limitati
#> 13958 regulations_state_debt_limitati
#> 13959 regulations_state_debt_limitati
#> 13960 regulations_state_debt_limitati
#> 13961 regulations_state_debt_limitati
#> 13962 regulations_state_debt_limitati
#> 13963 regulations_state_debt_limitati
#> 13964 regulations_state_debt_limitati
#> 13965 regulations_state_debt_limitati
#> 13966 regulations_state_debt_limitati
#> 13967 regulations_state_debt_limitati
#> 13968 regulations_state_debt_limitati
#> 13969 regulations_state_debt_limitati
#> 13970 regulations_state_debt_limitati
#> 13971 regulations_state_debt_limitati
#> 13972 regulations_state_debt_limitati
#> 13973 regulations_state_debt_limitati
#> 13974 regulations_state_debt_limitati
#> 13975 regulations_state_debt_limitati
#> 13976 regulations_state_debt_limitati
#> 13977 regulations_state_debt_limitati
#> 13978 regulations_state_debt_limitati
#> 13979 regulations_state_debt_limitati
#> 13980 renewenergy
#> 13981 renewenergy
#> 13982 renewenergy
#> 13983 renewenergy
#> 13984 renewenergy
#> 13985 renewenergy
#> 13986 renewenergy
#> 13987 renewenergy
#> 13988 renewenergy
#> 13989 renewenergy
#> 13990 renewenergy
#> 13991 renewenergy
#> 13992 renewenergy
#> 13993 renewenergy
#> 13994 renewenergy
#> 13995 renewenergy
#> 13996 renewenergy
#> 13997 renewenergy
#> 13998 renewenergy
#> 13999 renewenergy
#> 14000 renewenergy
#> 14001 renewenergy
#> 14002 renewenergy
#> 14003 renewenergy
#> 14004 renewenergy
#> 14005 renewenergy
#> 14006 renewenergy
#> 14007 renewenergy
#> 14008 renewenergy
#> 14009 renewenergy
#> 14010 renewenergy
#> 14011 renewenergy
#> 14012 renewenergy
#> 14013 renewenergy
#> 14014 renewenergy
#> 14015 renewenergy
#> 14016 renewenergy
#> 14017 renewenergy
#> 14018 repsodomy
#> 14019 repsodomy
#> 14020 repsodomy
#> 14021 repsodomy
#> 14022 repsodomy
#> 14023 repsodomy
#> 14024 repsodomy
#> 14025 repsodomy
#> 14026 repsodomy
#> 14027 repsodomy
#> 14028 repsodomy
#> 14029 repsodomy
#> 14030 repsodomy
#> 14031 repsodomy
#> 14032 repsodomy
#> 14033 repsodomy
#> 14034 repsodomy
#> 14035 repsodomy
#> 14036 repsodomy
#> 14037 repsodomy
#> 14038 repsodomy
#> 14039 repsodomy
#> 14040 repsodomy
#> 14041 repsodomy
#> 14042 repsodomy
#> 14043 repsodomy
#> 14044 repsodomy
#> 14045 repsodomy
#> 14046 repsodomy
#> 14047 repsodomy
#> 14048 repsodomy
#> 14049 repsodomy
#> 14050 repsodomy
#> 14051 repsodomy
#> 14052 repsodomy
#> 14053 repsodomy
#> 14054 repsodomy
#> 14055 repsodomy
#> 14056 repsodomy
#> 14057 repsodomy
#> 14058 repsodomy
#> 14059 repsodomy
#> 14060 repsodomy
#> 14061 repsodomy
#> 14062 repsodomy
#> 14063 repsodomy
#> 14064 repsodomy
#> 14065 repsodomy
#> 14066 repsodomy
#> 14067 repsodomy
#> 14068 requireanyid2
#> 14069 requireanyid2
#> 14070 requireanyid2
#> 14071 requireanyid2
#> 14072 requireanyid2
#> 14073 requireanyid2
#> 14074 requireanyid2
#> 14075 requireanyid2
#> 14076 requireanyid2
#> 14077 requireanyid2
#> 14078 requireanyid2
#> 14079 requireanyid2
#> 14080 requireanyid2
#> 14081 requireanyid2
#> 14082 requireanyid2
#> 14083 residential landlord and tenant act 1972
#> 14084 residential landlord and tenant act 1972
#> 14085 residential landlord and tenant act 1972
#> 14086 residential landlord and tenant act 1972
#> 14087 residential landlord and tenant act 1972
#> 14088 residential landlord and tenant act 1972
#> 14089 residential landlord and tenant act 1972
#> 14090 residential landlord and tenant act 1972
#> 14091 residential landlord and tenant act 1972
#> 14092 residential landlord and tenant act 1972
#> 14093 residential landlord and tenant act 1972
#> 14094 residential landlord and tenant act 1972
#> 14095 residential landlord and tenant act 1972
#> 14096 residential landlord and tenant act 1972
#> 14097 residential landlord and tenant act 1972
#> 14098 residential landlord and tenant act 1972
#> 14099 residential landlord and tenant act 1972
#> 14100 residential landlord and tenant act 1972
#> 14101 residential landlord and tenant act 1972
#> 14102 residential landlord and tenant act 1972
#> 14103 residential landlord and tenant act 1972
#> 14104 residential mortgage satisfaction act
#> 14105 residential mortgage satisfaction act
#> 14106 residential mortgage satisfaction act
#> 14107 residential mortgage satisfaction act
#> 14108 restaurantbanstate
#> 14109 restaurantbanstate
#> 14110 restaurantbanstate
#> 14111 restaurantbanstate
#> 14112 restaurantbanstate
#> 14113 restaurantbanstate
#> 14114 restaurantbanstate
#> 14115 restaurantbanstate
#> 14116 restaurantbanstate
#> 14117 restaurantbanstate
#> 14118 restaurantbanstate
#> 14119 restaurantbanstate
#> 14120 restaurantbanstate
#> 14121 restaurantbanstate
#> 14122 restaurantbanstate
#> 14123 restaurantbanstate
#> 14124 restaurantbanstate
#> 14125 restaurantbanstate
#> 14126 restaurantbanstate
#> 14127 restaurantbanstate
#> 14128 restaurantbanstate
#> 14129 restaurantbanstate
#> 14130 restaurantbanstate
#> 14131 restaurantbanstate
#> 14132 restaurantbanstate
#> 14133 restaurantbanstate
#> 14134 restaurantbanstate
#> 14135 restaurantbanstate
#> 14136 restaurantbanstate
#> 14137 restruct
#> 14138 restruct
#> 14139 restruct
#> 14140 restruct
#> 14141 restruct
#> 14142 restruct
#> 14143 restruct
#> 14144 restruct
#> 14145 restruct
#> 14146 restruct
#> 14147 restruct
#> 14148 restruct
#> 14149 restruct
#> 14150 restruct
#> 14151 restruct
#> 14152 restruct
#> 14153 restruct
#> 14154 restruct
#> 14155 retail theft
#> 14156 retail theft
#> 14157 retail theft
#> 14158 retail theft
#> 14159 retail theft
#> 14160 retail theft
#> 14161 retail theft
#> 14162 retail theft
#> 14163 retail theft
#> 14164 retail theft
#> 14165 retail theft
#> 14166 retail theft
#> 14167 retail theft
#> 14168 retail theft
#> 14169 retail theft
#> 14170 retail theft
#> 14171 retail theft
#> 14172 retail theft
#> 14173 retail theft
#> 14174 retail theft
#> 14175 retail theft
#> 14176 retail theft
#> 14177 retail theft
#> 14178 retail theft
#> 14179 retail theft
#> 14180 retail theft
#> 14181 retail theft
#> 14182 retail theft
#> 14183 retail theft
#> 14184 retail theft
#> 14185 retail theft
#> 14186 retail theft
#> 14187 retail theft
#> 14188 retail theft
#> 14189 retail theft
#> 14190 retail theft
#> 14191 retail theft
#> 14192 retail theft
#> 14193 retail theft
#> 14194 retainag
#> 14195 retainag
#> 14196 retainag
#> 14197 retainag
#> 14198 retainag
#> 14199 retainag
#> 14200 retainag
#> 14201 retainag
#> 14202 retainag
#> 14203 retainag
#> 14204 retainag
#> 14205 retainag
#> 14206 retainag
#> 14207 retainag
#> 14208 retstate
#> 14209 retstate
#> 14210 retstate
#> 14211 retstate
#> 14212 retstate
#> 14213 retstate
#> 14214 retstate
#> 14215 retstate
#> 14216 retstate
#> 14217 retstate
#> 14218 retstate
#> 14219 retstate
#> 14220 retstate
#> 14221 retstate
#> 14222 retstate
#> 14223 retstate
#> 14224 retstate
#> 14225 retstate
#> 14226 retstate
#> 14227 retstate
#> 14228 retstate
#> 14229 retstate
#> 14230 retstate
#> 14231 retstate
#> 14232 retstate
#> 14233 retstate
#> 14234 retstate
#> 14235 retstate
#> 14236 retstate
#> 14237 retstate
#> 14238 retstate
#> 14239 retstate
#> 14240 retstate
#> 14241 retstate
#> 14242 retstate
#> 14243 retstate
#> 14244 retstate
#> 14245 retstate
#> 14246 retstate
#> 14247 retstate
#> 14248 retstate
#> 14249 retstate
#> 14250 retstate
#> 14251 retstate
#> 14252 retstate
#> 14253 retstate
#> 14254 retstate
#> 14255 retstate
#> 14256 revenue
#> 14257 revenue
#> 14258 revenue
#> 14259 revenue
#> 14260 revenue
#> 14261 revenue
#> 14262 revenue
#> 14263 revenue
#> 14264 revenue
#> 14265 revenue
#> 14266 revenue
#> 14267 revenue
#> 14268 revenue
#> 14269 revenue
#> 14270 revenue
#> 14271 revenue
#> 14272 revenue
#> 14273 revenue
#> 14274 revised uniform unclaimed property act
#> 14275 revised uniform unclaimed property act
#> 14276 rico
#> 14277 rico
#> 14278 rico
#> 14279 rico
#> 14280 rico
#> 14281 rico
#> 14282 rico
#> 14283 rico
#> 14284 rico
#> 14285 rico
#> 14286 rico
#> 14287 rico
#> 14288 rico
#> 14289 rico
#> 14290 rico
#> 14291 rico
#> 14292 rico
#> 14293 rico
#> 14294 rico
#> 14295 rico
#> 14296 rico
#> 14297 rico
#> 14298 rico
#> 14299 rico
#> 14300 rico
#> 14301 rico
#> 14302 rico
#> 14303 rico
#> 14304 rico
#> 14305 rico
#> 14306 right2work
#> 14307 right2work
#> 14308 right2work
#> 14309 right2work
#> 14310 right2work
#> 14311 right2work
#> 14312 right2work
#> 14313 right2work
#> 14314 right2work
#> 14315 right2work
#> 14316 right2work
#> 14317 right2work
#> 14318 right2work
#> 14319 right2work
#> 14320 right2work
#> 14321 right2work
#> 14322 right2work
#> 14323 right2work
#> 14324 right2work
#> 14325 right2work
#> 14326 right2work
#> 14327 right2work
#> 14328 rightdie
#> 14329 rightdie
#> 14330 rightdie
#> 14331 rightdie
#> 14332 rightdie
#> 14333 rightdie
#> 14334 rightdie
#> 14335 rightdie
#> 14336 rightdie
#> 14337 rightdie
#> 14338 rightdie
#> 14339 rightdie
#> 14340 rightdie
#> 14341 rightdie
#> 14342 rightdie
#> 14343 rights of the terminally ill act (1985)
#> 14344 rights of the terminally ill act (1985)
#> 14345 rights of the terminally ill act (1985)
#> 14346 rights of the terminally ill act (1985)
#> 14347 rights of the terminally ill act (1985)
#> 14348 rights of the terminally ill act (1985)
#> 14349 rights of the terminally ill act (1985)
#> 14350 rights of the terminally ill act (1985)
#> 14351 rights of the terminally ill act (1985)
#> 14352 rights of the terminally ill act (1985)
#> 14353 rights of the terminally ill act (1985)
#> 14354 rights of the terminally ill act (1985)
#> 14355 roadshwy
#> 14356 roadshwy
#> 14357 roadshwy
#> 14358 roadshwy
#> 14359 roadshwy
#> 14360 roadshwy
#> 14361 roadshwy
#> 14362 roadshwy
#> 14363 roadshwy
#> 14364 roadshwy
#> 14365 roadshwy
#> 14366 roadshwy
#> 14367 roadshwy
#> 14368 roadshwy
#> 14369 roadshwy
#> 14370 roadshwy
#> 14371 roadshwy
#> 14372 roadshwy
#> 14373 roadshwy
#> 14374 roadshwy
#> 14375 roadshwy
#> 14376 roadshwy
#> 14377 roadshwy
#> 14378 roadshwy
#> 14379 roadshwy
#> 14380 roadshwy
#> 14381 roadshwy
#> 14382 roadshwy
#> 14383 roadshwy
#> 14384 roadshwy
#> 14385 roadshwy
#> 14386 roadshwy
#> 14387 roadshwy
#> 14388 roadshwy
#> 14389 roadshwy
#> 14390 roadshwy
#> 14391 roadshwy
#> 14392 roadshwy
#> 14393 roadshwy
#> 14394 roadshwy
#> 14395 roadshwy
#> 14396 roadshwy
#> 14397 roadshwy
#> 14398 roadshwy
#> 14399 roadshwy
#> 14400 roadshwy
#> 14401 roadshwy
#> 14402 roadshwy
#> 14403 roeovertur
#> 14404 roeovertur
#> 14405 roeovertur
#> 14406 roeovertur
#> 14407 rps_yearadopted
#> 14408 rps_yearadopted
#> 14409 rps_yearadopted
#> 14410 rps_yearadopted
#> 14411 rps_yearadopted
#> 14412 rps_yearadopted
#> 14413 rps_yearadopted
#> 14414 rps_yearadopted
#> 14415 rps_yearadopted
#> 14416 rps_yearadopted
#> 14417 rps_yearadopted
#> 14418 rps_yearadopted
#> 14419 rps_yearadopted
#> 14420 rps_yearadopted
#> 14421 rps_yearadopted
#> 14422 rps_yearadopted
#> 14423 rps_yearadopted
#> 14424 rps_yearadopted
#> 14425 rps_yearadopted
#> 14426 rps_yearadopted
#> 14427 rps_yearadopted
#> 14428 rps_yearadopted
#> 14429 rps_yearadopted
#> 14430 rps_yearadopted
#> 14431 rps_yearadopted
#> 14432 rps_yearadopted
#> 14433 rps_yearadopted
#> 14434 rules of evidence (1974)
#> 14435 rules of evidence (1974)
#> 14436 rules of evidence (1974)
#> 14437 rules of evidence (1974)
#> 14438 rules of evidence (1974)
#> 14439 rules of evidence (1974)
#> 14440 rules of evidence (1974)
#> 14441 rules of evidence (1974)
#> 14442 sals
#> 14443 sals
#> 14444 sals
#> 14445 sals
#> 14446 sals
#> 14447 sals
#> 14448 sals
#> 14449 sals
#> 14450 sals
#> 14451 sals
#> 14452 sals
#> 14453 sals
#> 14454 sals
#> 14455 sals
#> 14456 sals
#> 14457 sals
#> 14458 sals
#> 14459 sals
#> 14460 sals
#> 14461 sals
#> 14462 sals
#> 14463 sals
#> 14464 sals
#> 14465 sals
#> 14466 sals
#> 14467 salvia
#> 14468 salvia
#> 14469 salvia
#> 14470 salvia
#> 14471 salvia
#> 14472 salvia
#> 14473 salvia
#> 14474 salvia
#> 14475 salvia
#> 14476 salvia
#> 14477 salvia
#> 14478 salvia
#> 14479 salvia
#> 14480 savingplan
#> 14481 savingplan
#> 14482 savingplan
#> 14483 savingplan
#> 14484 savingplan
#> 14485 savingplan
#> 14486 savingplan
#> 14487 savingplan
#> 14488 savingplan
#> 14489 savingplan
#> 14490 savingplan
#> 14491 savingplan
#> 14492 savingplan
#> 14493 savingplan
#> 14494 savingplan
#> 14495 savingplan
#> 14496 savingplan
#> 14497 savingplan
#> 14498 savingplan
#> 14499 savingplan
#> 14500 savingplan
#> 14501 savingplan
#> 14502 savingplan
#> 14503 savingplan
#> 14504 savingplan
#> 14505 savingplan
#> 14506 savingplan
#> 14507 savingplan
#> 14508 savingplan
#> 14509 savingplan
#> 14510 savingplan
#> 14511 schoolchoi
#> 14512 schoolchoi
#> 14513 schoolchoi
#> 14514 schoolchoi
#> 14515 schoolchoi
#> 14516 schoolchoi
#> 14517 schoolchoi
#> 14518 schoolchoi
#> 14519 schoolchoi
#> 14520 schoolchoi
#> 14521 schoolchoi
#> 14522 schoolchoi
#> 14523 schoolchoi
#> 14524 schoolchoi
#> 14525 schoolchoi
#> 14526 schoolchoi
#> 14527 sdce
#> 14528 sdce
#> 14529 sdce
#> 14530 sdce
#> 14531 sdce
#> 14532 sdce
#> 14533 sdce
#> 14534 sdce
#> 14535 sdce
#> 14536 sdce
#> 14537 sdce
#> 14538 sdce
#> 14539 sdce
#> 14540 sdce
#> 14541 sdce
#> 14542 sdce
#> 14543 sdce
#> 14544 sdce
#> 14545 sdce
#> 14546 sdce
#> 14547 sdce
#> 14548 sdce
#> 14549 sdce
#> 14550 sdce
#> 14551 sdce
#> 14552 securities act
#> 14553 securities act
#> 14554 securities act
#> 14555 securities act
#> 14556 securities act
#> 14557 securities act
#> 14558 securities act
#> 14559 securities act
#> 14560 securities act
#> 14561 securities act
#> 14562 securities act
#> 14563 securities act
#> 14564 securities act
#> 14565 securities act
#> 14566 securities act
#> 14567 securities act
#> 14568 securities act
#> 14569 securities act
#> 14570 securities act
#> 14571 securities act (1956)
#> 14572 securities act (1956)
#> 14573 securities act (1956)
#> 14574 securities act (1956)
#> 14575 securities act (1956)
#> 14576 securities act (1956)
#> 14577 securities act (1956)
#> 14578 securities act (1956)
#> 14579 securities act (1956)
#> 14580 securities act (1956)
#> 14581 securities act (1956)
#> 14582 securities act (1988)
#> 14583 securities act (1988)
#> 14584 securities act (1988)
#> 14585 securities act (1988)
#> 14586 segoss
#> 14587 segoss
#> 14588 segoss
#> 14589 segoss
#> 14590 segoss
#> 14591 segoss
#> 14592 segoss
#> 14593 segoss
#> 14594 segoss
#> 14595 segoss
#> 14596 sexreginfo
#> 14597 sexreginfo
#> 14598 sexreginfo
#> 14599 sexreginfo
#> 14600 sexreginfo
#> 14601 sexreginfo
#> 14602 sexreginfo
#> 14603 sexreginfo
#> 14604 sexreginfo
#> 14605 sexreginfo
#> 14606 sexreginfo
#> 14607 sexreginfo
#> 14608 sexreginfo
#> 14609 sexreginfo
#> 14610 sexreginfo
#> 14611 sexselect
#> 14612 sexselect
#> 14613 sexselect
#> 14614 sexselect
#> 14615 sexselect
#> 14616 sexselect
#> 14617 sexselect
#> 14618 shield
#> 14619 shield
#> 14620 shield
#> 14621 shield
#> 14622 shield
#> 14623 shield
#> 14624 shield
#> 14625 shield
#> 14626 shield
#> 14627 shield
#> 14628 shield
#> 14629 shield
#> 14630 shield
#> 14631 shield
#> 14632 shield
#> 14633 shield
#> 14634 shield
#> 14635 shield
#> 14636 shield
#> 14637 shield
#> 14638 shield
#> 14639 shield
#> 14640 shield
#> 14641 shield
#> 14642 shield
#> 14643 shield
#> 14644 shield
#> 14645 shield
#> 14646 shield
#> 14647 shield
#> 14648 shield
#> 14649 shield
#> 14650 shield
#> 14651 shield
#> 14652 shoplift
#> 14653 shoplift
#> 14654 shoplift
#> 14655 shoplift
#> 14656 shoplift
#> 14657 shoplift
#> 14658 shoplift
#> 14659 shoplift
#> 14660 shoplift
#> 14661 shoplift
#> 14662 shoplift
#> 14663 shoplift
#> 14664 shoplift
#> 14665 shoplift
#> 14666 shoplift
#> 14667 shoplift
#> 14668 shoplift
#> 14669 shoplift
#> 14670 shoplift
#> 14671 shoplift
#> 14672 shoplift
#> 14673 shoplift
#> 14674 shoplift
#> 14675 shoplift
#> 14676 shoplift
#> 14677 shoplift
#> 14678 shoplift
#> 14679 shoplift
#> 14680 shoplift
#> 14681 shoplift
#> 14682 shoplift
#> 14683 shoplift
#> 14684 shoplift
#> 14685 shoplift
#> 14686 shoplift
#> 14687 shoplift
#> 14688 shoplift
#> 14689 shoplift
#> 14690 shoplift
#> 14691 shoplift
#> 14692 shoplift
#> 14693 shoplift
#> 14694 shoplift
#> 14695 shoplift
#> 14696 shoplift
#> 14697 shoplift
#> 14698 shoplift
#> 14699 shoplift
#> 14700 simultaneous death act
#> 14701 simultaneous death act
#> 14702 simultaneous death act
#> 14703 simultaneous death act
#> 14704 simultaneous death act
#> 14705 simultaneous death act
#> 14706 simultaneous death act
#> 14707 simultaneous death act
#> 14708 simultaneous death act
#> 14709 simultaneous death act
#> 14710 simultaneous death act
#> 14711 simultaneous death act
#> 14712 simultaneous death act (1940)
#> 14713 slains
#> 14714 slains
#> 14715 slains
#> 14716 slains
#> 14717 slains
#> 14718 slains
#> 14719 slains
#> 14720 slains
#> 14721 slains
#> 14722 slains
#> 14723 slains
#> 14724 slains
#> 14725 slains
#> 14726 slains
#> 14727 slains
#> 14728 slains
#> 14729 slains
#> 14730 slains
#> 14731 slains
#> 14732 slains
#> 14733 slains
#> 14734 slains
#> 14735 slains
#> 14736 slains
#> 14737 slains
#> 14738 slains
#> 14739 slains
#> 14740 smokeban
#> 14741 smokeban
#> 14742 smokeban
#> 14743 smokeban
#> 14744 smokeban
#> 14745 smokeban
#> 14746 smokeban
#> 14747 smokeban
#> 14748 smokeban
#> 14749 smokeban
#> 14750 smokeban
#> 14751 smokeban
#> 14752 smokeban
#> 14753 smokeban
#> 14754 smokeban
#> 14755 smokeban
#> 14756 smokeban
#> 14757 smokeban
#> 14758 smokeban
#> 14759 smokeban
#> 14760 smokeban
#> 14761 smokeban
#> 14762 smokeban
#> 14763 smokeban
#> 14764 smokeban
#> 14765 soexorder
#> 14766 soexorder
#> 14767 soexorder
#> 14768 soexorder
#> 14769 soexorder
#> 14770 soexorder
#> 14771 soexorder
#> 14772 soexorder
#> 14773 soexorder
#> 14774 soexorder
#> 14775 soexorder
#> 14776 soexorder
#> 14777 soexorder
#> 14778 soexorder
#> 14779 soexorder
#> 14780 soexorder
#> 14781 soexorder
#> 14782 soexorder
#> 14783 soexorder
#> 14784 soexorder
#> 14785 soexorder
#> 14786 soexorder
#> 14787 soexorder
#> 14788 soexorder
#> 14789 soexorder
#> 14790 soexorder
#> 14791 soexorder
#> 14792 soil
#> 14793 soil
#> 14794 soil
#> 14795 soil
#> 14796 soil
#> 14797 soil
#> 14798 soil
#> 14799 soil
#> 14800 soil
#> 14801 soil
#> 14802 soil
#> 14803 soil
#> 14804 soil
#> 14805 soil
#> 14806 soil
#> 14807 soil
#> 14808 soil
#> 14809 soil
#> 14810 soil
#> 14811 soil
#> 14812 soil
#> 14813 soil
#> 14814 soil
#> 14815 soil
#> 14816 soil
#> 14817 soil
#> 14818 soil
#> 14819 soil
#> 14820 soil
#> 14821 soil
#> 14822 soil
#> 14823 soil
#> 14824 soil
#> 14825 soil
#> 14826 soil
#> 14827 soil
#> 14828 soil
#> 14829 soil
#> 14830 soil
#> 14831 soil
#> 14832 soil
#> 14833 soil
#> 14834 soil
#> 14835 soil
#> 14836 soil
#> 14837 soil
#> 14838 soil
#> 14839 soil
#> 14840 solaw
#> 14841 solaw
#> 14842 solaw
#> 14843 solaw
#> 14844 solaw
#> 14845 solaw
#> 14846 solaw
#> 14847 solaw
#> 14848 solaw
#> 14849 solaw
#> 14850 solaw
#> 14851 solaw
#> 14852 solaw
#> 14853 solaw
#> 14854 solaw
#> 14855 solaw
#> 14856 solaw
#> 14857 solaw
#> 14858 solaw
#> 14859 solaw
#> 14860 solaw
#> 14861 sonofsam
#> 14862 sonofsam
#> 14863 sonofsam
#> 14864 sonofsam
#> 14865 sonofsam
#> 14866 sonofsam
#> 14867 sonofsam
#> 14868 sonofsam
#> 14869 sonofsam
#> 14870 sonofsam
#> 14871 sonofsam
#> 14872 sonofsam
#> 14873 sonofsam
#> 14874 sonofsam
#> 14875 sonofsam
#> 14876 sonofsam
#> 14877 sonofsam
#> 14878 sonofsam
#> 14879 sonofsam
#> 14880 sonofsam
#> 14881 sonofsam
#> 14882 sonofsam
#> 14883 sonofsam
#> 14884 sonofsam
#> 14885 sonofsam
#> 14886 sonofsam
#> 14887 sonofsam
#> 14888 sonofsam
#> 14889 sonofsam
#> 14890 sonofsam
#> 14891 sonofsam
#> 14892 sonofsam
#> 14893 sonofsam
#> 14894 sonofsam
#> 14895 sonofsam
#> 14896 sonofsam
#> 14897 sonofsam
#> 14898 sonofsam
#> 14899 sonofsam
#> 14900 sonofsam
#> 14901 sonofsam
#> 14902 sonofsam
#> 14903 sonofsam
#> 14904 sonofsam
#> 14905 sonofsam
#> 14906 sonofsam
#> 14907 sonofsam
#> 14908 sonsam
#> 14909 sonsam
#> 14910 sonsam
#> 14911 sonsam
#> 14912 sonsam
#> 14913 sonsam
#> 14914 sonsam
#> 14915 sonsam
#> 14916 sonsam
#> 14917 sonsam
#> 14918 sonsam
#> 14919 sonsam
#> 14920 sonsam
#> 14921 sonsam
#> 14922 sonsam
#> 14923 sonsam
#> 14924 sonsam
#> 14925 sonsam
#> 14926 sonsam
#> 14927 sonsam
#> 14928 sonsam
#> 14929 sonsam
#> 14930 sonsam
#> 14931 sonsam
#> 14932 sonsam
#> 14933 sonsam
#> 14934 sonsam
#> 14935 sonsam
#> 14936 sonsam
#> 14937 sonsam
#> 14938 sonsam
#> 14939 sonsam
#> 14940 sonsam
#> 14941 sonsam
#> 14942 sonsam
#> 14943 sonsam
#> 14944 sonsam
#> 14945 sonsam
#> 14946 sonsam
#> 14947 sonsam
#> 14948 sonsam
#> 14949 sonsam
#> 14950 sonsam
#> 14951 sonsam
#> 14952 sprinsch
#> 14953 sprinsch
#> 14954 sprinsch
#> 14955 sprinsch
#> 14956 sprinsch
#> 14957 sprinsch
#> 14958 sprinsch
#> 14959 sprinsch
#> 14960 sprinsch
#> 14961 sprinsch
#> 14962 sprinsch
#> 14963 sprinsch
#> 14964 sprinsch
#> 14965 sprinsch
#> 14966 sprinsch
#> 14967 sprinsch
#> 14968 sprinsch
#> 14969 sprinsch
#> 14970 sprinsch
#> 14971 sprinsch
#> 14972 sprinsch
#> 14973 sprinsch
#> 14974 sprinsch
#> 14975 sprinsch
#> 14976 sprinsch
#> 14977 sprinsch
#> 14978 sprinsch
#> 14979 sprinsch
#> 14980 sprinsch
#> 14981 sprinsch
#> 14982 sprinsch
#> 14983 sprinsch
#> 14984 sprinsch
#> 14985 sprinsch
#> 14986 sprinsch
#> 14987 sprinsch
#> 14988 sprinsch
#> 14989 sprinsch
#> 14990 sprinsch
#> 14991 sprinsch
#> 14992 sprinsch
#> 14993 sprinsch
#> 14994 sprinsch
#> 14995 sprinsch
#> 14996 sprinsch
#> 14997 sprinsch
#> 14998 sprinsch
#> 14999 st_wd_tran
#> 15000 st_wd_tran
#> 15001 st_wd_tran
#> 15002 st_wd_tran
#> 15003 st_wd_tran
#> 15004 st_wd_tran
#> 15005 st_wd_tran
#> 15006 st_wd_tran
#> 15007 st_wd_tran
#> 15008 st_wd_tran
#> 15009 st_wd_tran
#> 15010 st_wd_tran
#> 15011 st_wd_tran
#> 15012 st_wd_tran
#> 15013 st_wd_tran
#> 15014 st_wd_tran
#> 15015 st_wd_tran
#> 15016 st_wd_tran
#> 15017 st_wd_tran
#> 15018 st_wd_tran
#> 15019 st_wd_tran
#> 15020 st_wd_tran
#> 15021 st_wd_tran
#> 15022 st_wd_tran
#> 15023 st_wd_tran
#> 15024 st_wd_tran
#> 15025 st_wd_tran
#> 15026 st_wd_tran
#> 15027 st_wd_tran
#> 15028 st_wd_tran
#> 15029 st_wd_tran
#> 15030 st_wd_tran
#> 15031 st_wd_tran
#> 15032 st_wd_tran
#> 15033 st_wd_tran
#> 15034 st_wd_tran
#> 15035 st_wd_tran
#> 15036 st_wd_tran
#> 15037 st_wd_tran
#> 15038 st_wd_tran
#> 15039 stalkdef
#> 15040 stalkdef
#> 15041 stalkdef
#> 15042 stalkdef
#> 15043 stalkdef
#> 15044 stalkdef
#> 15045 stalkdef
#> 15046 stalkdef
#> 15047 stalkdef
#> 15048 stalkdef
#> 15049 stalkdef
#> 15050 stalkdef
#> 15051 stalkdef
#> 15052 stalkdef
#> 15053 stalkdef
#> 15054 stalkdef
#> 15055 stalkdef
#> 15056 stalkdef
#> 15057 stalkdef
#> 15058 stalkdef
#> 15059 stalkdef
#> 15060 stalkdef
#> 15061 stalkdef
#> 15062 stalkdef
#> 15063 stalking
#> 15064 stalking
#> 15065 stalking
#> 15066 stalking
#> 15067 stalking
#> 15068 stalking
#> 15069 stalking
#> 15070 stalking
#> 15071 stalking
#> 15072 stalking
#> 15073 stalking
#> 15074 stalking
#> 15075 stalking
#> 15076 stalking
#> 15077 stalking
#> 15078 stalking
#> 15079 stalking
#> 15080 stalking
#> 15081 stalking
#> 15082 stalking
#> 15083 stalking
#> 15084 stalking
#> 15085 stalking
#> 15086 stalking
#> 15087 stalking
#> 15088 stalking
#> 15089 stalking
#> 15090 stalking
#> 15091 stalking
#> 15092 stalking
#> 15093 stalking
#> 15094 stalking
#> 15095 stalking
#> 15096 stalking
#> 15097 stalking
#> 15098 stalking
#> 15099 stalking
#> 15100 stalking
#> 15101 stalking
#> 15102 stalking
#> 15103 stalking
#> 15104 stalking
#> 15105 stalking
#> 15106 stalking
#> 15107 stalking
#> 15108 stalking
#> 15109 stalking
#> 15110 standground
#> 15111 standground
#> 15112 standground
#> 15113 standground
#> 15114 standground
#> 15115 standground
#> 15116 standground
#> 15117 standground
#> 15118 standground
#> 15119 standground
#> 15120 standground
#> 15121 standground
#> 15122 standground
#> 15123 standground
#> 15124 standground
#> 15125 standground
#> 15126 standground
#> 15127 standground
#> 15128 standground
#> 15129 standground
#> 15130 standground
#> 15131 standground
#> 15132 standground
#> 15133 stateptr
#> 15134 stateptr
#> 15135 stateptr
#> 15136 stateptr
#> 15137 stateptr
#> 15138 stateptr
#> 15139 stateptr
#> 15140 stateptr
#> 15141 stateptr
#> 15142 stateptr
#> 15143 stateptr
#> 15144 stateptr
#> 15145 stateptr
#> 15146 stateptr
#> 15147 stateptr
#> 15148 stateptr
#> 15149 stateptr
#> 15150 stateptr
#> 15151 stateptr
#> 15152 stateptr
#> 15153 stateptr
#> 15154 stateptr
#> 15155 stateptr
#> 15156 stateptr
#> 15157 stateptr
#> 15158 stateptr
#> 15159 stateptr
#> 15160 stateptr
#> 15161 stateptr
#> 15162 stateptr
#> 15163 stateptr
#> 15164 stateptr
#> 15165 stateptr
#> 15166 stateptr
#> 15167 stateptr
#> 15168 stateptr
#> 15169 stateptr
#> 15170 stateptr
#> 15171 stateptr
#> 15172 stateptr
#> 15173 stateptr
#> 15174 stateptr
#> 15175 stateptr
#> 15176 stateptr
#> 15177 stateptr
#> 15178 stateptr
#> 15179 stateptr
#> 15180 stateptr
#> 15181 statrape
#> 15182 statrape
#> 15183 statrape
#> 15184 statrape
#> 15185 statrape
#> 15186 statrape
#> 15187 statrape
#> 15188 statrape
#> 15189 statrape
#> 15190 statrape
#> 15191 statrape
#> 15192 statrape
#> 15193 statrape
#> 15194 statrape
#> 15195 statrape
#> 15196 statrape
#> 15197 statrape
#> 15198 statrape
#> 15199 statrape
#> 15200 statrape
#> 15201 statrape
#> 15202 statrape
#> 15203 statrape
#> 15204 statrape
#> 15205 statrape
#> 15206 statrape
#> 15207 statrape
#> 15208 statrape
#> 15209 statrape
#> 15210 statrape
#> 15211 statrape
#> 15212 statrape
#> 15213 statrape
#> 15214 statrape
#> 15215 statrape
#> 15216 statrape
#> 15217 statrape
#> 15218 statrape
#> 15219 statrape
#> 15220 statrape
#> 15221 statrape
#> 15222 statrape
#> 15223 status of children of assisted conception act
#> 15224 status of convicted persons act (1964)
#> 15225 status of convicted persons act (1964)
#> 15226 statutory form power of attorney act
#> 15227 statutory form power of attorney act
#> 15228 statutory form power of attorney act
#> 15229 statutory form power of attorney act
#> 15230 statutory form power of attorney act
#> 15231 statutory form power of attorney act
#> 15232 statutory form power of attorney act
#> 15233 statutory form power of attorney act
#> 15234 statutory form power of attorney act
#> 15235 statutory rule against perpetuities
#> 15236 statutory rule against perpetuities
#> 15237 statutory rule against perpetuities
#> 15238 statutory rule against perpetuities
#> 15239 statutory rule against perpetuities
#> 15240 statutory rule against perpetuities
#> 15241 statutory rule against perpetuities
#> 15242 statutory rule against perpetuities
#> 15243 statutory rule against perpetuities
#> 15244 statutory rule against perpetuities
#> 15245 statutory rule against perpetuities
#> 15246 statutory rule against perpetuities
#> 15247 statutory rule against perpetuities
#> 15248 statutory rule against perpetuities
#> 15249 statutory rule against perpetuities
#> 15250 statutory rule against perpetuities
#> 15251 statutory rule against perpetuities
#> 15252 statutory rule against perpetuities
#> 15253 statutory rule against perpetuities
#> 15254 statutory rule against perpetuities
#> 15255 statutory rule against perpetuities
#> 15256 statutory rule against perpetuities
#> 15257 statutory rule against perpetuities
#> 15258 statutory rule against perpetuities
#> 15259 statutory rule against perpetuities
#> 15260 statutory rule against perpetuities
#> 15261 statutory rule against perpetuities
#> 15262 statutory trust entity act
#> 15263 statutory will act (1984)
#> 15264 stplnb
#> 15265 stplnb
#> 15266 stplnb
#> 15267 stplnb
#> 15268 stplnb
#> 15269 stplnb
#> 15270 stplnb
#> 15271 stplnb
#> 15272 stplnb
#> 15273 stplnb
#> 15274 stplnb
#> 15275 stplnb
#> 15276 stplnb
#> 15277 stplnb
#> 15278 stplnb
#> 15279 stplnb
#> 15280 stplnb
#> 15281 stplnb
#> 15282 stplnb
#> 15283 stplnb
#> 15284 stplnb
#> 15285 stplnb
#> 15286 stplnb
#> 15287 stplnb
#> 15288 stplnb
#> 15289 stplnb
#> 15290 stplnb
#> 15291 stplnb
#> 15292 stplnb
#> 15293 stplnb
#> 15294 stplnb
#> 15295 stplnb
#> 15296 stplnb
#> 15297 stplnb
#> 15298 stplnb
#> 15299 stplnb
#> 15300 stplnb
#> 15301 stplnb
#> 15302 stplnb
#> 15303 stplnb
#> 15304 stplnb
#> 15305 stplnb
#> 15306 stplnb
#> 15307 stplnb
#> 15308 stplnb
#> 15309 sundayban
#> 15310 sundayban
#> 15311 sundayban
#> 15312 sundayban
#> 15313 sundayban
#> 15314 sundayban
#> 15315 sundayban
#> 15316 sundayban
#> 15317 sundayban
#> 15318 sundayban
#> 15319 sundayban
#> 15320 sundayban
#> 15321 sundayban
#> 15322 sundayban
#> 15323 sundayban
#> 15324 sundayban
#> 15325 sundayban
#> 15326 sundayban
#> 15327 sundayban
#> 15328 sundayban
#> 15329 supp_research
#> 15330 supp_research
#> 15331 supp_research
#> 15332 supp_research
#> 15333 supp_research
#> 15334 surplus lines insurance multi-state compliance compact
#> 15335 surplus lines insurance multi-state compliance compact
#> 15336 surplus lines insurance multi-state compliance compact
#> 15337 surplus lines insurance multi-state compliance compact
#> 15338 surplus lines insurance multi-state compliance compact
#> 15339 surplus lines insurance multi-state compliance compact
#> 15340 surplus lines insurance multi-state compliance compact
#> 15341 surplus lines insurance multi-state compliance compact
#> 15342 surplus lines insurance multi-state compliance compact
#> 15343 syringe
#> 15344 syringe
#> 15345 syringe
#> 15346 syringe
#> 15347 syringe
#> 15348 syringe
#> 15349 syringe
#> 15350 syringe
#> 15351 syringe
#> 15352 syringe
#> 15353 syringe
#> 15354 syringe
#> 15355 syringe
#> 15356 syringe
#> 15357 taxcom
#> 15358 taxcom
#> 15359 taxcom
#> 15360 taxcom
#> 15361 taxcom
#> 15362 taxcom
#> 15363 taxcom
#> 15364 taxcom
#> 15365 taxcom
#> 15366 taxcom
#> 15367 taxcom
#> 15368 taxcom
#> 15369 taxcom
#> 15370 taxcom
#> 15371 taxcom
#> 15372 taxcom
#> 15373 taxcom
#> 15374 taxcom
#> 15375 taxcom
#> 15376 taxcom
#> 15377 taxcom
#> 15378 taxcom
#> 15379 taxcom
#> 15380 taxcom
#> 15381 taxcom
#> 15382 taxcom
#> 15383 taxcom
#> 15384 taxcom
#> 15385 taxcom
#> 15386 taxcom
#> 15387 taxcom
#> 15388 taxcom
#> 15389 taxcom
#> 15390 taxcom
#> 15391 taxcom
#> 15392 taxcom
#> 15393 taxcom
#> 15394 taxcom
#> 15395 taxcom
#> 15396 taxcom
#> 15397 taxcom
#> 15398 taxcom
#> 15399 taxcom
#> 15400 taxcom
#> 15401 taxcom
#> 15402 taxcom
#> 15403 taxcom
#> 15404 taxcom
#> 15405 teacelm
#> 15406 teacelm
#> 15407 teacelm
#> 15408 teacelm
#> 15409 teacelm
#> 15410 teacelm
#> 15411 teacelm
#> 15412 teacelm
#> 15413 teacelm
#> 15414 teacelm
#> 15415 teacelm
#> 15416 teacelm
#> 15417 teacelm
#> 15418 teacelm
#> 15419 teacelm
#> 15420 teacelm
#> 15421 teacelm
#> 15422 teacelm
#> 15423 teacelm
#> 15424 teacelm
#> 15425 teacelm
#> 15426 teacelm
#> 15427 teacelm
#> 15428 teacelm
#> 15429 teacelm
#> 15430 teacelm
#> 15431 teacelm
#> 15432 teacelm
#> 15433 teacelm
#> 15434 teacelm
#> 15435 teacelm
#> 15436 teacelm
#> 15437 teacelm
#> 15438 teacelm
#> 15439 teacsec
#> 15440 teacsec
#> 15441 teacsec
#> 15442 teacsec
#> 15443 teacsec
#> 15444 teacsec
#> 15445 teacsec
#> 15446 teacsec
#> 15447 teacsec
#> 15448 teacsec
#> 15449 teacsec
#> 15450 teacsec
#> 15451 teacsec
#> 15452 teacsec
#> 15453 teacsec
#> 15454 teacsec
#> 15455 teacsec
#> 15456 teacsec
#> 15457 teacsec
#> 15458 teacsec
#> 15459 teacsec
#> 15460 teacsec
#> 15461 teacsec
#> 15462 teacsec
#> 15463 teacsec
#> 15464 teacsec
#> 15465 teacsec
#> 15466 teacsec
#> 15467 teacsec
#> 15468 teacsec
#> 15469 teacsec
#> 15470 teacsec
#> 15471 teacsec
#> 15472 teacsec
#> 15473 teacsec
#> 15474 teacsec
#> 15475 teacsec
#> 15476 teacsec
#> 15477 teacsec
#> 15478 teacsec
#> 15479 teacsec
#> 15480 telgrareg
#> 15481 telgrareg
#> 15482 telgrareg
#> 15483 telgrareg
#> 15484 telgrareg
#> 15485 telgrareg
#> 15486 telgrareg
#> 15487 telgrareg
#> 15488 telgrareg
#> 15489 telgrareg
#> 15490 telgrareg
#> 15491 telgrareg
#> 15492 telgrareg
#> 15493 telgrareg
#> 15494 telgrareg
#> 15495 telgrareg
#> 15496 telgrareg
#> 15497 telgrareg
#> 15498 telgrareg
#> 15499 telgrareg
#> 15500 telgrareg
#> 15501 telgrareg
#> 15502 telgrareg
#> 15503 telgrareg
#> 15504 telgrareg
#> 15505 telgrareg
#> 15506 telgrareg
#> 15507 telgrareg
#> 15508 telgrareg
#> 15509 telgrareg
#> 15510 telgrareg
#> 15511 telgrareg
#> 15512 telgrareg
#> 15513 tels
#> 15514 tels
#> 15515 tels
#> 15516 tels
#> 15517 tels
#> 15518 tels
#> 15519 tels
#> 15520 tels
#> 15521 tels
#> 15522 tels
#> 15523 tels
#> 15524 tels
#> 15525 tels
#> 15526 tels
#> 15527 tels
#> 15528 tels
#> 15529 tels
#> 15530 tels
#> 15531 tels
#> 15532 tels
#> 15533 tels
#> 15534 tels
#> 15535 tels
#> 15536 tels
#> 15537 tels
#> 15538 tels
#> 15539 termlim
#> 15540 termlim
#> 15541 termlim
#> 15542 termlim
#> 15543 termlim
#> 15544 termlim
#> 15545 termlim
#> 15546 termlim
#> 15547 termlim
#> 15548 termlim
#> 15549 termlim
#> 15550 termlim
#> 15551 termlim
#> 15552 termlim
#> 15553 termlim
#> 15554 terrorfund
#> 15555 terrorfund
#> 15556 terrorfund
#> 15557 terrorfund
#> 15558 terrorfund
#> 15559 terrorfund
#> 15560 terrorfund
#> 15561 terrorfund
#> 15562 terrorfund
#> 15563 terrorfund
#> 15564 terrorfund
#> 15565 terrorfund
#> 15566 terrorfund
#> 15567 terrorfund
#> 15568 terrorfund
#> 15569 terrorfund
#> 15570 terrorfund
#> 15571 terrorfund
#> 15572 terrorfund
#> 15573 terrorfund
#> 15574 testamentary additions to trusts act
#> 15575 testamentary additions to trusts act
#> 15576 testamentary additions to trusts act
#> 15577 testamentary additions to trusts act
#> 15578 testamentary additions to trusts act
#> 15579 testamentary additions to trusts act
#> 15580 testamentary additions to trusts act
#> 15581 testamentary additions to trusts act
#> 15582 testamentary additions to trusts act
#> 15583 testamentary additions to trusts act
#> 15584 testamentary additions to trusts act
#> 15585 testamentary additions to trusts act
#> 15586 testamentary additions to trusts act
#> 15587 testamentary additions to trusts act
#> 15588 testamentary additions to trusts act
#> 15589 testamentary additions to trusts act
#> 15590 threestrikes
#> 15591 threestrikes
#> 15592 threestrikes
#> 15593 threestrikes
#> 15594 threestrikes
#> 15595 threestrikes
#> 15596 threestrikes
#> 15597 threestrikes
#> 15598 threestrikes
#> 15599 threestrikes
#> 15600 threestrikes
#> 15601 threestrikes
#> 15602 threestrikes
#> 15603 threestrikes
#> 15604 threestrikes
#> 15605 threestrikes
#> 15606 threestrikes
#> 15607 threestrikes
#> 15608 threestrikes
#> 15609 threestrikes
#> 15610 threestrikes
#> 15611 threestrikes
#> 15612 threestrikes
#> 15613 threestrikes
#> 15614 threestrikes
#> 15615 timelim
#> 15616 timelim
#> 15617 timelim
#> 15618 timelim
#> 15619 timelim
#> 15620 timelim
#> 15621 timelim
#> 15622 timelim
#> 15623 timelim
#> 15624 timelim
#> 15625 timelim
#> 15626 timelim
#> 15627 timelim
#> 15628 timelim
#> 15629 timelim
#> 15630 timelim
#> 15631 timelim
#> 15632 timelim
#> 15633 tod security registration act
#> 15634 tod security registration act
#> 15635 tod security registration act
#> 15636 tod security registration act
#> 15637 tod security registration act
#> 15638 tod security registration act
#> 15639 tod security registration act
#> 15640 tod security registration act
#> 15641 tod security registration act
#> 15642 tod security registration act
#> 15643 tod security registration act
#> 15644 tod security registration act
#> 15645 tod security registration act
#> 15646 tod security registration act
#> 15647 tod security registration act
#> 15648 tod security registration act
#> 15649 tod security registration act
#> 15650 tod security registration act
#> 15651 tod security registration act
#> 15652 tod security registration act
#> 15653 tod security registration act
#> 15654 tod security registration act
#> 15655 tod security registration act
#> 15656 tod security registration act
#> 15657 tod security registration act
#> 15658 tod security registration act
#> 15659 tod security registration act
#> 15660 tod security registration act
#> 15661 tod security registration act
#> 15662 tod security registration act
#> 15663 tod security registration act
#> 15664 tod security registration act
#> 15665 tod security registration act
#> 15666 tod security registration act
#> 15667 tod security registration act
#> 15668 tod security registration act
#> 15669 tod security registration act
#> 15670 tod security registration act
#> 15671 tod security registration act
#> 15672 tod security registration act
#> 15673 tod security registration act
#> 15674 tod security registration act
#> 15675 tod security registration act
#> 15676 tod security registration act
#> 15677 tod security registration act
#> 15678 tod security registration act
#> 15679 tod security registration act
#> 15680 trade secrets act
#> 15681 trade secrets act
#> 15682 trade secrets act
#> 15683 trade secrets act
#> 15684 trade secrets act
#> 15685 trade secrets act
#> 15686 trade secrets act
#> 15687 trade secrets act
#> 15688 trade secrets act
#> 15689 trade secrets act
#> 15690 trade secrets act
#> 15691 trade secrets act
#> 15692 trade secrets act
#> 15693 trade secrets act
#> 15694 trade secrets act
#> 15695 trade secrets act
#> 15696 trade secrets act
#> 15697 trade secrets act
#> 15698 trade secrets act
#> 15699 trade secrets act
#> 15700 trade secrets act
#> 15701 trade secrets act
#> 15702 trade secrets act
#> 15703 trade secrets act
#> 15704 trade secrets act
#> 15705 trade secrets act
#> 15706 trade secrets act
#> 15707 trade secrets act
#> 15708 trade secrets act
#> 15709 trade secrets act
#> 15710 trade secrets act
#> 15711 trade secrets act
#> 15712 trade secrets act
#> 15713 trade secrets act
#> 15714 trade secrets act
#> 15715 trade secrets act
#> 15716 trade secrets act
#> 15717 trade secrets act
#> 15718 trade secrets act
#> 15719 trade secrets act
#> 15720 trade secrets act
#> 15721 trade secrets act
#> 15722 trade secrets act
#> 15723 trade secrets act
#> 15724 trade secrets act
#> 15725 trade secrets act
#> 15726 transboundary pollution reciprocal access act
#> 15727 transboundary pollution reciprocal access act
#> 15728 transboundary pollution reciprocal access act
#> 15729 transboundary pollution reciprocal access act
#> 15730 transboundary pollution reciprocal access act
#> 15731 transboundary pollution reciprocal access act
#> 15732 transfers to minors act
#> 15733 transfers to minors act
#> 15734 transfers to minors act
#> 15735 transfers to minors act
#> 15736 transfers to minors act
#> 15737 transfers to minors act
#> 15738 transfers to minors act
#> 15739 transfers to minors act
#> 15740 transfers to minors act
#> 15741 transfers to minors act
#> 15742 transfers to minors act
#> 15743 transfers to minors act
#> 15744 transfers to minors act
#> 15745 transfers to minors act
#> 15746 transfers to minors act
#> 15747 transfers to minors act
#> 15748 transfers to minors act
#> 15749 transfers to minors act
#> 15750 transfers to minors act
#> 15751 transfers to minors act
#> 15752 transfers to minors act
#> 15753 transfers to minors act
#> 15754 transfers to minors act
#> 15755 transfers to minors act
#> 15756 transfers to minors act
#> 15757 transfers to minors act
#> 15758 transfers to minors act
#> 15759 transfers to minors act
#> 15760 transfers to minors act
#> 15761 transfers to minors act
#> 15762 transfers to minors act
#> 15763 transfers to minors act
#> 15764 transfers to minors act
#> 15765 transfers to minors act
#> 15766 transfers to minors act
#> 15767 transfers to minors act
#> 15768 transfers to minors act
#> 15769 transfers to minors act
#> 15770 transfers to minors act
#> 15771 transfers to minors act
#> 15772 transfers to minors act
#> 15773 transfers to minors act
#> 15774 transfers to minors act
#> 15775 transfers to minors act
#> 15776 transfers to minors act
#> 15777 transfers to minors act
#> 15778 transfers to minors act
#> 15779 transfers to minors act
#> 15780 transport
#> 15781 transport
#> 15782 transport
#> 15783 transport
#> 15784 transport
#> 15785 transport
#> 15786 transport
#> 15787 transport
#> 15788 transport
#> 15789 transport
#> 15790 transport
#> 15791 transport
#> 15792 transport
#> 15793 transport
#> 15794 transport
#> 15795 transport
#> 15796 transport
#> 15797 transport
#> 15798 transport
#> 15799 transport
#> 15800 trap
#> 15801 trap
#> 15802 trap
#> 15803 trap
#> 15804 trap
#> 15805 trap
#> 15806 trap
#> 15807 trap
#> 15808 trap
#> 15809 trap
#> 15810 trap
#> 15811 trap
#> 15812 trap
#> 15813 trap
#> 15814 trap
#> 15815 trap
#> 15816 trap
#> 15817 trap
#> 15818 trap
#> 15819 trap_hosp
#> 15820 trap_hosp
#> 15821 trap_hosp
#> 15822 trap_hosp
#> 15823 trap_hosp
#> 15824 trap_hosp
#> 15825 trap_hosp
#> 15826 trap_hosp
#> 15827 trap_hosp
#> 15828 trap_hosp
#> 15829 trap_hosp
#> 15830 trap_hosp
#> 15831 trap_hosp
#> 15832 trap_hosp
#> 15833 trap_hosp
#> 15834 trap_hosp
#> 15835 trap_hosp
#> 15836 trap_hosp
#> 15837 trap_hosp
#> 15838 trap_hosp
#> 15839 trap_hosp
#> 15840 trap_hosp
#> 15841 trap_hosp
#> 15842 trap_hosp
#> 15843 trap_hosp
#> 15844 trap_hosp
#> 15845 trap_hosp
#> 15846 trap_hosp
#> 15847 trap_hosp
#> 15848 trap_hosp
#> 15849 trap_hosp
#> 15850 trap_hosp
#> 15851 trap_hosp
#> 15852 trap_lic
#> 15853 trap_lic
#> 15854 trap_lic
#> 15855 trap_lic
#> 15856 trap_lic
#> 15857 trap_lic
#> 15858 trap_lic
#> 15859 trap_lic
#> 15860 trap_lic
#> 15861 trap_lic
#> 15862 trap_lic
#> 15863 trap_lic
#> 15864 trap_lic
#> 15865 trap_lic
#> 15866 trap_lic
#> 15867 trap_lic
#> 15868 trap_lic
#> 15869 trap_lic
#> 15870 trap_lic
#> 15871 trap_lic
#> 15872 trap_lic
#> 15873 trap_lic
#> 15874 trap_lic
#> 15875 trap_lic
#> 15876 trap_lic
#> 15877 trap_lic
#> 15878 trap_lic
#> 15879 trust code
#> 15880 trust code
#> 15881 trust code
#> 15882 trust code
#> 15883 trust code
#> 15884 trust code
#> 15885 trust code
#> 15886 trust code
#> 15887 trust code
#> 15888 trust code
#> 15889 trust code
#> 15890 trust code
#> 15891 trust code
#> 15892 trust code
#> 15893 trust code
#> 15894 trust code
#> 15895 trust code
#> 15896 trust code
#> 15897 trust code
#> 15898 trust code
#> 15899 trust code
#> 15900 trust code
#> 15901 trust code
#> 15902 trust code
#> 15903 trust code
#> 15904 trust code
#> 15905 trust code
#> 15906 trust code
#> 15907 trust code
#> 15908 trust code
#> 15909 trust decanting
#> 15910 trust decanting
#> 15911 trust decanting
#> 15912 trustees' powers act (1964)
#> 15913 trustees' powers act (1964)
#> 15914 trustees' powers act (1964)
#> 15915 trustees' powers act (1964)
#> 15916 trustees' powers act (1964)
#> 15917 truthsent
#> 15918 truthsent
#> 15919 truthsent
#> 15920 truthsent
#> 15921 truthsent
#> 15922 truthsent
#> 15923 truthsent
#> 15924 truthsent
#> 15925 truthsent
#> 15926 truthsent
#> 15927 truthsent
#> 15928 truthsent
#> 15929 truthsent
#> 15930 truthsent
#> 15931 truthsent
#> 15932 truthsent
#> 15933 truthsent
#> 15934 truthsent
#> 15935 truthsent
#> 15936 truthsent
#> 15937 truthsent
#> 15938 truthsent
#> 15939 truthsent
#> 15940 truthsent
#> 15941 truthsent
#> 15942 tu_decent
#> 15943 tu_decent
#> 15944 tu_decent
#> 15945 tu_decent
#> 15946 tu_decent
#> 15947 tu_decent
#> 15948 tu_decent
#> 15949 tu_decent
#> 15950 tu_decent
#> 15951 tu_decent
#> 15952 tu_decent
#> 15953 tu_decent
#> 15954 tu_decent
#> 15955 tu_decent
#> 15956 tu_decent
#> 15957 tu_decent
#> 15958 tu_decent
#> 15959 tu_decent
#> 15960 tu_decent
#> 15961 tu_decent
#> 15962 u_record_sys
#> 15963 u_record_sys
#> 15964 u_record_sys
#> 15965 u_record_sys
#> 15966 u_record_sys
#> 15967 u_record_sys
#> 15968 u_record_sys
#> 15969 u_record_sys
#> 15970 u_record_sys
#> 15971 u_record_sys
#> 15972 u_record_sys
#> 15973 u_record_sys
#> 15974 u_record_sys
#> 15975 u_record_sys
#> 15976 u_record_sys
#> 15977 u_record_sys
#> 15978 u_record_sys
#> 15979 u_record_sys
#> 15980 u_record_sys
#> 15981 u_record_sys
#> 15982 u_record_sys
#> 15983 u_record_sys
#> 15984 u_record_sys
#> 15985 u_record_sys
#> 15986 u_record_sys
#> 15987 u_record_sys
#> 15988 u_record_sys
#> 15989 u_record_sys
#> 15990 u_record_sys
#> 15991 u_record_sys
#> 15992 u_record_sys
#> 15993 u_record_sys
#> 15994 u_record_sys
#> 15995 u_record_sys
#> 15996 u_record_sys
#> 15997 u_record_sys
#> 15998 u_record_sys
#> 15999 u_record_sys
#> 16000 u_record_sys
#> 16001 u_record_sys
#> 16002 u_record_sys
#> 16003 u_record_sys
#> 16004 u_record_sys
#> 16005 u_record_sys
#> 16006 u_record_sys
#> 16007 ucc article 1, general provisions (2001)
#> 16008 ucc article 1, general provisions (2001)
#> 16009 ucc article 1, general provisions (2001)
#> 16010 ucc article 1, general provisions (2001)
#> 16011 ucc article 1, general provisions (2001)
#> 16012 ucc article 1, general provisions (2001)
#> 16013 ucc article 1, general provisions (2001)
#> 16014 ucc article 1, general provisions (2001)
#> 16015 ucc article 1, general provisions (2001)
#> 16016 ucc article 1, general provisions (2001)
#> 16017 ucc article 1, general provisions (2001)
#> 16018 ucc article 1, general provisions (2001)
#> 16019 ucc article 1, general provisions (2001)
#> 16020 ucc article 1, general provisions (2001)
#> 16021 ucc article 1, general provisions (2001)
#> 16022 ucc article 1, general provisions (2001)
#> 16023 ucc article 1, general provisions (2001)
#> 16024 ucc article 1, general provisions (2001)
#> 16025 ucc article 1, general provisions (2001)
#> 16026 ucc article 1, general provisions (2001)
#> 16027 ucc article 1, general provisions (2001)
#> 16028 ucc article 1, general provisions (2001)
#> 16029 ucc article 1, general provisions (2001)
#> 16030 ucc article 1, general provisions (2001)
#> 16031 ucc article 1, general provisions (2001)
#> 16032 ucc article 1, general provisions (2001)
#> 16033 ucc article 1, general provisions (2001)
#> 16034 ucc article 1, general provisions (2001)
#> 16035 ucc article 1, general provisions (2001)
#> 16036 ucc article 1, general provisions (2001)
#> 16037 ucc article 1, general provisions (2001)
#> 16038 ucc article 1, general provisions (2001)
#> 16039 ucc article 1, general provisions (2001)
#> 16040 ucc article 1, general provisions (2001)
#> 16041 ucc article 1, general provisions (2001)
#> 16042 ucc article 1, general provisions (2001)
#> 16043 ucc article 1, general provisions (2001)
#> 16044 ucc article 1, general provisions (2001)
#> 16045 ucc article 1, general provisions (2001)
#> 16046 ucc article 1, general provisions (2001)
#> 16047 ucc article 1, general provisions (2001)
#> 16048 ucc article 1, general provisions (2001)
#> 16049 ucc article 1, general provisions (2001)
#> 16050 ucc article 1, general provisions (2001)
#> 16051 ucc article 1, general provisions (2001)
#> 16052 ucc article 1, general provisions (2001)
#> 16053 ucc article 1, general provisions (2001)
#> 16054 ucc article 1, general provisions (2001)
#> 16055 ucc article 2a, leases (1987) (1990)
#> 16056 ucc article 2a, leases (1987) (1990)
#> 16057 ucc article 2a, leases (1987) (1990)
#> 16058 ucc article 2a, leases (1987) (1990)
#> 16059 ucc article 2a, leases (1987) (1990)
#> 16060 ucc article 2a, leases (1987) (1990)
#> 16061 ucc article 2a, leases (1987) (1990)
#> 16062 ucc article 2a, leases (1987) (1990)
#> 16063 ucc article 2a, leases (1987) (1990)
#> 16064 ucc article 2a, leases (1987) (1990)
#> 16065 ucc article 2a, leases (1987) (1990)
#> 16066 ucc article 2a, leases (1987) (1990)
#> 16067 ucc article 2a, leases (1987) (1990)
#> 16068 ucc article 2a, leases (1987) (1990)
#> 16069 ucc article 2a, leases (1987) (1990)
#> 16070 ucc article 2a, leases (1987) (1990)
#> 16071 ucc article 2a, leases (1987) (1990)
#> 16072 ucc article 2a, leases (1987) (1990)
#> 16073 ucc article 2a, leases (1987) (1990)
#> 16074 ucc article 2a, leases (1987) (1990)
#> 16075 ucc article 2a, leases (1987) (1990)
#> 16076 ucc article 2a, leases (1987) (1990)
#> 16077 ucc article 2a, leases (1987) (1990)
#> 16078 ucc article 2a, leases (1987) (1990)
#> 16079 ucc article 2a, leases (1987) (1990)
#> 16080 ucc article 2a, leases (1987) (1990)
#> 16081 ucc article 2a, leases (1987) (1990)
#> 16082 ucc article 2a, leases (1987) (1990)
#> 16083 ucc article 2a, leases (1987) (1990)
#> 16084 ucc article 2a, leases (1987) (1990)
#> 16085 ucc article 2a, leases (1987) (1990)
#> 16086 ucc article 2a, leases (1987) (1990)
#> 16087 ucc article 2a, leases (1987) (1990)
#> 16088 ucc article 2a, leases (1987) (1990)
#> 16089 ucc article 2a, leases (1987) (1990)
#> 16090 ucc article 2a, leases (1987) (1990)
#> 16091 ucc article 2a, leases (1987) (1990)
#> 16092 ucc article 2a, leases (1987) (1990)
#> 16093 ucc article 2a, leases (1987) (1990)
#> 16094 ucc article 2a, leases (1987) (1990)
#> 16095 ucc article 2a, leases (1987) (1990)
#> 16096 ucc article 2a, leases (1987) (1990)
#> 16097 ucc article 2a, leases (1987) (1990)
#> 16098 ucc article 2a, leases (1987) (1990)
#> 16099 ucc article 2a, leases (1987) (1990)
#> 16100 ucc article 2a, leases (1987) (1990)
#> 16101 ucc article 2a, leases (1987) (1990)
#> 16102 ucc article 2a, leases (1987) (1990)
#> 16103 ucc article 3, negotiable instruments (1990)
#> 16104 ucc article 3, negotiable instruments (1990)
#> 16105 ucc article 3, negotiable instruments (1990)
#> 16106 ucc article 3, negotiable instruments (1990)
#> 16107 ucc article 3, negotiable instruments (1990)
#> 16108 ucc article 3, negotiable instruments (1990)
#> 16109 ucc article 3, negotiable instruments (1990)
#> 16110 ucc article 3, negotiable instruments (1990)
#> 16111 ucc article 3, negotiable instruments (1990)
#> 16112 ucc article 3, negotiable instruments (1990)
#> 16113 ucc article 3, negotiable instruments (1990)
#> 16114 ucc article 3, negotiable instruments (1990)
#> 16115 ucc article 3, negotiable instruments (1990)
#> 16116 ucc article 3, negotiable instruments (1990)
#> 16117 ucc article 3, negotiable instruments (1990)
#> 16118 ucc article 3, negotiable instruments (1990)
#> 16119 ucc article 3, negotiable instruments (1990)
#> 16120 ucc article 3, negotiable instruments (1990)
#> 16121 ucc article 3, negotiable instruments (1990)
#> 16122 ucc article 3, negotiable instruments (1990)
#> 16123 ucc article 3, negotiable instruments (1990)
#> 16124 ucc article 3, negotiable instruments (1990)
#> 16125 ucc article 3, negotiable instruments (1990)
#> 16126 ucc article 3, negotiable instruments (1990)
#> 16127 ucc article 3, negotiable instruments (1990)
#> 16128 ucc article 3, negotiable instruments (1990)
#> 16129 ucc article 3, negotiable instruments (1990)
#> 16130 ucc article 3, negotiable instruments (1990)
#> 16131 ucc article 3, negotiable instruments (1990)
#> 16132 ucc article 3, negotiable instruments (1990)
#> 16133 ucc article 3, negotiable instruments (1990)
#> 16134 ucc article 3, negotiable instruments (1990)
#> 16135 ucc article 3, negotiable instruments (1990)
#> 16136 ucc article 3, negotiable instruments (1990)
#> 16137 ucc article 3, negotiable instruments (1990)
#> 16138 ucc article 3, negotiable instruments (1990)
#> 16139 ucc article 3, negotiable instruments (1990)
#> 16140 ucc article 3, negotiable instruments (1990)
#> 16141 ucc article 3, negotiable instruments (1990)
#> 16142 ucc article 3, negotiable instruments (1990)
#> 16143 ucc article 3, negotiable instruments (1990)
#> 16144 ucc article 3, negotiable instruments (1990)
#> 16145 ucc article 3, negotiable instruments (1990)
#> 16146 ucc article 3, negotiable instruments (1990)
#> 16147 ucc article 3, negotiable instruments (1990)
#> 16148 ucc article 3, negotiable instruments (1990)
#> 16149 ucc article 3, negotiable instruments (1990)
#> 16150 ucc article 3, negotiable instruments and article 4, bank deposits (2002)
#> 16151 ucc article 3, negotiable instruments and article 4, bank deposits (2002)
#> 16152 ucc article 3, negotiable instruments and article 4, bank deposits (2002)
#> 16153 ucc article 3, negotiable instruments and article 4, bank deposits (2002)
#> 16154 ucc article 3, negotiable instruments and article 4, bank deposits (2002)
#> 16155 ucc article 3, negotiable instruments and article 4, bank deposits (2002)
#> 16156 ucc article 3, negotiable instruments and article 4, bank deposits (2002)
#> 16157 ucc article 3, negotiable instruments and article 4, bank deposits (2002)
#> 16158 ucc article 3, negotiable instruments and article 4, bank deposits (2002)
#> 16159 ucc article 3, negotiable instruments and article 4, bank deposits (2002)
#> 16160 ucc article 3, negotiable instruments and article 4, bank deposits (2002)
#> 16161 ucc article 4a amendments (2012)
#> 16162 ucc article 4a amendments (2012)
#> 16163 ucc article 4a amendments (2012)
#> 16164 ucc article 4a amendments (2012)
#> 16165 ucc article 4a amendments (2012)
#> 16166 ucc article 4a amendments (2012)
#> 16167 ucc article 4a amendments (2012)
#> 16168 ucc article 4a amendments (2012)
#> 16169 ucc article 4a amendments (2012)
#> 16170 ucc article 4a amendments (2012)
#> 16171 ucc article 4a amendments (2012)
#> 16172 ucc article 4a amendments (2012)
#> 16173 ucc article 4a amendments (2012)
#> 16174 ucc article 4a amendments (2012)
#> 16175 ucc article 4a amendments (2012)
#> 16176 ucc article 4a amendments (2012)
#> 16177 ucc article 4a amendments (2012)
#> 16178 ucc article 4a amendments (2012)
#> 16179 ucc article 4a amendments (2012)
#> 16180 ucc article 4a amendments (2012)
#> 16181 ucc article 4a amendments (2012)
#> 16182 ucc article 4a amendments (2012)
#> 16183 ucc article 4a amendments (2012)
#> 16184 ucc article 4a amendments (2012)
#> 16185 ucc article 4a amendments (2012)
#> 16186 ucc article 4a amendments (2012)
#> 16187 ucc article 4a amendments (2012)
#> 16188 ucc article 4a amendments (2012)
#> 16189 ucc article 4a amendments (2012)
#> 16190 ucc article 4a amendments (2012)
#> 16191 ucc article 4a amendments (2012)
#> 16192 ucc article 4a amendments (2012)
#> 16193 ucc article 4a amendments (2012)
#> 16194 ucc article 4a amendments (2012)
#> 16195 ucc article 4a amendments (2012)
#> 16196 ucc article 4a amendments (2012)
#> 16197 ucc article 4a amendments (2012)
#> 16198 ucc article 4a amendments (2012)
#> 16199 ucc article 4a amendments (2012)
#> 16200 ucc article 4a amendments (2012)
#> 16201 ucc article 4a amendments (2012)
#> 16202 ucc article 4a amendments (2012)
#> 16203 ucc article 4a amendments (2012)
#> 16204 ucc article 4a amendments (2012)
#> 16205 ucc article 4a, funds transfers (1989)
#> 16206 ucc article 4a, funds transfers (1989)
#> 16207 ucc article 4a, funds transfers (1989)
#> 16208 ucc article 4a, funds transfers (1989)
#> 16209 ucc article 4a, funds transfers (1989)
#> 16210 ucc article 4a, funds transfers (1989)
#> 16211 ucc article 4a, funds transfers (1989)
#> 16212 ucc article 4a, funds transfers (1989)
#> 16213 ucc article 4a, funds transfers (1989)
#> 16214 ucc article 4a, funds transfers (1989)
#> 16215 ucc article 4a, funds transfers (1989)
#> 16216 ucc article 4a, funds transfers (1989)
#> 16217 ucc article 4a, funds transfers (1989)
#> 16218 ucc article 4a, funds transfers (1989)
#> 16219 ucc article 4a, funds transfers (1989)
#> 16220 ucc article 4a, funds transfers (1989)
#> 16221 ucc article 4a, funds transfers (1989)
#> 16222 ucc article 4a, funds transfers (1989)
#> 16223 ucc article 4a, funds transfers (1989)
#> 16224 ucc article 4a, funds transfers (1989)
#> 16225 ucc article 4a, funds transfers (1989)
#> 16226 ucc article 4a, funds transfers (1989)
#> 16227 ucc article 4a, funds transfers (1989)
#> 16228 ucc article 4a, funds transfers (1989)
#> 16229 ucc article 4a, funds transfers (1989)
#> 16230 ucc article 4a, funds transfers (1989)
#> 16231 ucc article 4a, funds transfers (1989)
#> 16232 ucc article 4a, funds transfers (1989)
#> 16233 ucc article 4a, funds transfers (1989)
#> 16234 ucc article 4a, funds transfers (1989)
#> 16235 ucc article 4a, funds transfers (1989)
#> 16236 ucc article 4a, funds transfers (1989)
#> 16237 ucc article 4a, funds transfers (1989)
#> 16238 ucc article 4a, funds transfers (1989)
#> 16239 ucc article 4a, funds transfers (1989)
#> 16240 ucc article 4a, funds transfers (1989)
#> 16241 ucc article 4a, funds transfers (1989)
#> 16242 ucc article 4a, funds transfers (1989)
#> 16243 ucc article 4a, funds transfers (1989)
#> 16244 ucc article 4a, funds transfers (1989)
#> 16245 ucc article 4a, funds transfers (1989)
#> 16246 ucc article 4a, funds transfers (1989)
#> 16247 ucc article 4a, funds transfers (1989)
#> 16248 ucc article 4a, funds transfers (1989)
#> 16249 ucc article 4a, funds transfers (1989)
#> 16250 ucc article 4a, funds transfers (1989)
#> 16251 ucc article 4a, funds transfers (1989)
#> 16252 ucc article 4a, funds transfers (1989)
#> 16253 ucc article 5, letters of credit (1995)
#> 16254 ucc article 5, letters of credit (1995)
#> 16255 ucc article 5, letters of credit (1995)
#> 16256 ucc article 5, letters of credit (1995)
#> 16257 ucc article 5, letters of credit (1995)
#> 16258 ucc article 5, letters of credit (1995)
#> 16259 ucc article 5, letters of credit (1995)
#> 16260 ucc article 5, letters of credit (1995)
#> 16261 ucc article 5, letters of credit (1995)
#> 16262 ucc article 5, letters of credit (1995)
#> 16263 ucc article 5, letters of credit (1995)
#> 16264 ucc article 5, letters of credit (1995)
#> 16265 ucc article 5, letters of credit (1995)
#> 16266 ucc article 5, letters of credit (1995)
#> 16267 ucc article 5, letters of credit (1995)
#> 16268 ucc article 5, letters of credit (1995)
#> 16269 ucc article 5, letters of credit (1995)
#> 16270 ucc article 5, letters of credit (1995)
#> 16271 ucc article 5, letters of credit (1995)
#> 16272 ucc article 5, letters of credit (1995)
#> 16273 ucc article 5, letters of credit (1995)
#> 16274 ucc article 5, letters of credit (1995)
#> 16275 ucc article 5, letters of credit (1995)
#> 16276 ucc article 5, letters of credit (1995)
#> 16277 ucc article 5, letters of credit (1995)
#> 16278 ucc article 5, letters of credit (1995)
#> 16279 ucc article 5, letters of credit (1995)
#> 16280 ucc article 5, letters of credit (1995)
#> 16281 ucc article 5, letters of credit (1995)
#> 16282 ucc article 5, letters of credit (1995)
#> 16283 ucc article 5, letters of credit (1995)
#> 16284 ucc article 5, letters of credit (1995)
#> 16285 ucc article 5, letters of credit (1995)
#> 16286 ucc article 5, letters of credit (1995)
#> 16287 ucc article 5, letters of credit (1995)
#> 16288 ucc article 5, letters of credit (1995)
#> 16289 ucc article 5, letters of credit (1995)
#> 16290 ucc article 5, letters of credit (1995)
#> 16291 ucc article 5, letters of credit (1995)
#> 16292 ucc article 5, letters of credit (1995)
#> 16293 ucc article 5, letters of credit (1995)
#> 16294 ucc article 5, letters of credit (1995)
#> 16295 ucc article 5, letters of credit (1995)
#> 16296 ucc article 5, letters of credit (1995)
#> 16297 ucc article 5, letters of credit (1995)
#> 16298 ucc article 5, letters of credit (1995)
#> 16299 ucc article 5, letters of credit (1995)
#> 16300 ucc article 5, letters of credit (1995)
#> 16301 ucc article 5, letters of credit (1995)
#> 16302 ucc article 6 (repeal)
#> 16303 ucc article 6 (revise)
#> 16304 ucc article 6 (revise)
#> 16305 ucc article 6 (revise)
#> 16306 ucc article 6 (revise)
#> 16307 ucc article 6 (revise)
#> 16308 ucc article 6, bulk sales (1989)
#> 16309 ucc article 6, bulk sales (1989)
#> 16310 ucc article 6, bulk sales (1989)
#> 16311 ucc article 6, bulk sales (1989)
#> 16312 ucc article 6, bulk sales (1989)
#> 16313 ucc article 6, bulk sales (1989)
#> 16314 ucc article 6, bulk sales (1989)
#> 16315 ucc article 6, bulk sales (1989)
#> 16316 ucc article 6, bulk sales (1989)
#> 16317 ucc article 6, bulk sales (1989)
#> 16318 ucc article 6, bulk sales (1989)
#> 16319 ucc article 6, bulk sales (1989)
#> 16320 ucc article 6, bulk sales (1989)
#> 16321 ucc article 6, bulk sales (1989)
#> 16322 ucc article 6, bulk sales (1989)
#> 16323 ucc article 6, bulk sales (1989)
#> 16324 ucc article 6, bulk sales (1989)
#> 16325 ucc article 6, bulk sales (1989)
#> 16326 ucc article 6, bulk sales (1989)
#> 16327 ucc article 6, bulk sales (1989)
#> 16328 ucc article 6, bulk sales (1989)
#> 16329 ucc article 6, bulk sales (1989)
#> 16330 ucc article 6, bulk sales (1989)
#> 16331 ucc article 6, bulk sales (1989)
#> 16332 ucc article 6, bulk sales (1989)
#> 16333 ucc article 6, bulk sales (1989)
#> 16334 ucc article 6, bulk sales (1989)
#> 16335 ucc article 6, bulk sales (1989)
#> 16336 ucc article 6, bulk sales (1989)
#> 16337 ucc article 6, bulk sales (1989)
#> 16338 ucc article 6, bulk sales (1989)
#> 16339 ucc article 6, bulk sales (1989)
#> 16340 ucc article 6, bulk sales (1989)
#> 16341 ucc article 6, bulk sales (1989)
#> 16342 ucc article 6, bulk sales (1989)
#> 16343 ucc article 6, bulk sales (1989)
#> 16344 ucc article 6, bulk sales (1989)
#> 16345 ucc article 6, bulk sales (1989)
#> 16346 ucc article 6, bulk sales (1989)
#> 16347 ucc article 6, bulk sales (1989)
#> 16348 ucc article 6, bulk sales (1989)
#> 16349 ucc article 6, bulk sales (1989)
#> 16350 ucc article 6, bulk sales (1989)
#> 16351 ucc article 6, bulk sales (1989)
#> 16352 ucc article 6, bulk sales (1989)
#> 16353 ucc article 6, bulk sales (1989)
#> 16354 ucc article 6, bulk sales (1989)
#> 16355 ucc article 6, bulk sales (1989)
#> 16356 ucc article 7, documents of title (2003)
#> 16357 ucc article 7, documents of title (2003)
#> 16358 ucc article 7, documents of title (2003)
#> 16359 ucc article 7, documents of title (2003)
#> 16360 ucc article 7, documents of title (2003)
#> 16361 ucc article 7, documents of title (2003)
#> 16362 ucc article 7, documents of title (2003)
#> 16363 ucc article 7, documents of title (2003)
#> 16364 ucc article 7, documents of title (2003)
#> 16365 ucc article 7, documents of title (2003)
#> 16366 ucc article 7, documents of title (2003)
#> 16367 ucc article 7, documents of title (2003)
#> 16368 ucc article 7, documents of title (2003)
#> 16369 ucc article 7, documents of title (2003)
#> 16370 ucc article 7, documents of title (2003)
#> 16371 ucc article 7, documents of title (2003)
#> 16372 ucc article 7, documents of title (2003)
#> 16373 ucc article 7, documents of title (2003)
#> 16374 ucc article 7, documents of title (2003)
#> 16375 ucc article 7, documents of title (2003)
#> 16376 ucc article 7, documents of title (2003)
#> 16377 ucc article 7, documents of title (2003)
#> 16378 ucc article 7, documents of title (2003)
#> 16379 ucc article 7, documents of title (2003)
#> 16380 ucc article 7, documents of title (2003)
#> 16381 ucc article 7, documents of title (2003)
#> 16382 ucc article 7, documents of title (2003)
#> 16383 ucc article 7, documents of title (2003)
#> 16384 ucc article 7, documents of title (2003)
#> 16385 ucc article 7, documents of title (2003)
#> 16386 ucc article 7, documents of title (2003)
#> 16387 ucc article 7, documents of title (2003)
#> 16388 ucc article 7, documents of title (2003)
#> 16389 ucc article 7, documents of title (2003)
#> 16390 ucc article 7, documents of title (2003)
#> 16391 ucc article 7, documents of title (2003)
#> 16392 ucc article 7, documents of title (2003)
#> 16393 ucc article 7, documents of title (2003)
#> 16394 ucc article 7, documents of title (2003)
#> 16395 ucc article 7, documents of title (2003)
#> 16396 ucc article 7, documents of title (2003)
#> 16397 ucc article 7, documents of title (2003)
#> 16398 ucc article 7, documents of title (2003)
#> 16399 ucc article 7, documents of title (2003)
#> 16400 ucc article 7, documents of title (2003)
#> 16401 ucc article 7, documents of title (2003)
#> 16402 ucc article 7, documents of title (2003)
#> 16403 ucc article 7, documents of title (2003)
#> 16404 ucc article 8, investment securities
#> 16405 ucc article 8, investment securities
#> 16406 ucc article 8, investment securities
#> 16407 ucc article 8, investment securities
#> 16408 ucc article 8, investment securities
#> 16409 ucc article 8, investment securities
#> 16410 ucc article 8, investment securities
#> 16411 ucc article 8, investment securities
#> 16412 ucc article 8, investment securities
#> 16413 ucc article 8, investment securities
#> 16414 ucc article 8, investment securities
#> 16415 ucc article 8, investment securities
#> 16416 ucc article 8, investment securities
#> 16417 ucc article 8, investment securities
#> 16418 ucc article 8, investment securities
#> 16419 ucc article 8, investment securities
#> 16420 ucc article 8, investment securities
#> 16421 ucc article 8, investment securities
#> 16422 ucc article 8, investment securities
#> 16423 ucc article 8, investment securities
#> 16424 ucc article 8, investment securities
#> 16425 ucc article 8, investment securities
#> 16426 ucc article 8, investment securities (1994)
#> 16427 ucc article 8, investment securities (1994)
#> 16428 ucc article 8, investment securities (1994)
#> 16429 ucc article 8, investment securities (1994)
#> 16430 ucc article 8, investment securities (1994)
#> 16431 ucc article 8, investment securities (1994)
#> 16432 ucc article 8, investment securities (1994)
#> 16433 ucc article 8, investment securities (1994)
#> 16434 ucc article 8, investment securities (1994)
#> 16435 ucc article 8, investment securities (1994)
#> 16436 ucc article 8, investment securities (1994)
#> 16437 ucc article 8, investment securities (1994)
#> 16438 ucc article 8, investment securities (1994)
#> 16439 ucc article 8, investment securities (1994)
#> 16440 ucc article 8, investment securities (1994)
#> 16441 ucc article 8, investment securities (1994)
#> 16442 ucc article 8, investment securities (1994)
#> 16443 ucc article 8, investment securities (1994)
#> 16444 ucc article 8, investment securities (1994)
#> 16445 ucc article 8, investment securities (1994)
#> 16446 ucc article 8, investment securities (1994)
#> 16447 ucc article 8, investment securities (1994)
#> 16448 ucc article 8, investment securities (1994)
#> 16449 ucc article 8, investment securities (1994)
#> 16450 ucc article 8, investment securities (1994)
#> 16451 ucc article 8, investment securities (1994)
#> 16452 ucc article 8, investment securities (1994)
#> 16453 ucc article 8, investment securities (1994)
#> 16454 ucc article 8, investment securities (1994)
#> 16455 ucc article 8, investment securities (1994)
#> 16456 ucc article 8, investment securities (1994)
#> 16457 ucc article 8, investment securities (1994)
#> 16458 ucc article 8, investment securities (1994)
#> 16459 ucc article 8, investment securities (1994)
#> 16460 ucc article 8, investment securities (1994)
#> 16461 ucc article 8, investment securities (1994)
#> 16462 ucc article 8, investment securities (1994)
#> 16463 ucc article 8, investment securities (1994)
#> 16464 ucc article 8, investment securities (1994)
#> 16465 ucc article 8, investment securities (1994)
#> 16466 ucc article 8, investment securities (1994)
#> 16467 ucc article 8, investment securities (1994)
#> 16468 ucc article 8, investment securities (1994)
#> 16469 ucc article 8, investment securities (1994)
#> 16470 ucc article 8, investment securities (1994)
#> 16471 ucc article 8, investment securities (1994)
#> 16472 ucc article 8, investment securities (1994)
#> 16473 ucc article 8, investment securities (1994)
#> 16474 ucc article 8, investment securities (1994)
#> 16475 ucc article 9 amendments
#> 16476 ucc article 9 amendments
#> 16477 ucc article 9 amendments
#> 16478 ucc article 9 amendments
#> 16479 ucc article 9 amendments
#> 16480 ucc article 9 amendments
#> 16481 ucc article 9 amendments
#> 16482 ucc article 9 amendments
#> 16483 ucc article 9 amendments
#> 16484 ucc article 9 amendments
#> 16485 ucc article 9 amendments
#> 16486 ucc article 9 amendments
#> 16487 ucc article 9 amendments
#> 16488 ucc article 9 amendments
#> 16489 ucc article 9 amendments
#> 16490 ucc article 9 amendments
#> 16491 ucc article 9 amendments
#> 16492 ucc article 9 amendments
#> 16493 ucc article 9 amendments
#> 16494 ucc article 9 amendments
#> 16495 ucc article 9 amendments
#> 16496 ucc article 9 amendments
#> 16497 ucc article 9 amendments
#> 16498 ucc article 9 amendments
#> 16499 ucc article 9 amendments
#> 16500 ucc article 9 amendments
#> 16501 ucc article 9 amendments
#> 16502 ucc article 9 amendments
#> 16503 ucc article 9 amendments
#> 16504 ucc article 9 amendments
#> 16505 ucc article 9 amendments
#> 16506 ucc article 9 amendments
#> 16507 ucc article 9 amendments
#> 16508 ucc article 9 amendments
#> 16509 ucc article 9 amendments
#> 16510 ucc article 9 amendments
#> 16511 ucc article 9 amendments
#> 16512 ucc article 9 amendments (2010)
#> 16513 ucc article 9 amendments (2010)
#> 16514 ucc article 9 amendments (2010)
#> 16515 ucc article 9 amendments (2010)
#> 16516 ucc article 9 amendments (2010)
#> 16517 ucc article 9 amendments (2010)
#> 16518 ucc article 9 amendments (2010)
#> 16519 ucc article 9 amendments (2010)
#> 16520 ucc article 9 amendments (2010)
#> 16521 ucc article 9 amendments (2010)
#> 16522 ucc article 9 amendments (2010)
#> 16523 ucc article 9 amendments (2010)
#> 16524 ucc article 9 amendments (2010)
#> 16525 ucc article 9 amendments (2010)
#> 16526 ucc article 9 amendments (2010)
#> 16527 ucc article 9 amendments (2010)
#> 16528 ucc article 9 amendments (2010)
#> 16529 ucc article 9 amendments (2010)
#> 16530 ucc article 9 amendments (2010)
#> 16531 ucc article 9 amendments (2010)
#> 16532 ucc article 9 amendments (2010)
#> 16533 ucc article 9 amendments (2010)
#> 16534 ucc article 9 amendments (2010)
#> 16535 ucc article 9 amendments (2010)
#> 16536 ucc article 9 amendments (2010)
#> 16537 ucc article 9 amendments (2010)
#> 16538 ucc article 9 amendments (2010)
#> 16539 ucc article 9 amendments (2010)
#> 16540 ucc article 9 amendments (2010)
#> 16541 ucc article 9 amendments (2010)
#> 16542 ucc article 9 amendments (2010)
#> 16543 ucc article 9 amendments (2010)
#> 16544 ucc article 9 amendments (2010)
#> 16545 ucc article 9 amendments (2010)
#> 16546 ucc article 9 amendments (2010)
#> 16547 ucc article 9 amendments (2010)
#> 16548 ucc article 9 amendments (2010)
#> 16549 ucc article 9 amendments (2010)
#> 16550 ucc article 9 amendments (2010)
#> 16551 ucc article 9 amendments (2010)
#> 16552 ucc article 9 amendments (2010)
#> 16553 ucc article 9 amendments (2010)
#> 16554 ucc article 9 amendments (2010)
#> 16555 ucc article 9 amendments (2010)
#> 16556 ucc article 9 amendments (2010)
#> 16557 ucc article 9 amendments (2010)
#> 16558 ucc article 9 amendments (2010)
#> 16559 ucc article 9 amendments (2010)
#> 16560 ucc article 9 amendments (2010)
#> 16561 ucc article 9, secured transactions (1998)
#> 16562 ucc article 9, secured transactions (1998)
#> 16563 ucc article 9, secured transactions (1998)
#> 16564 ucc article 9, secured transactions (1998)
#> 16565 ucc article 9, secured transactions (1998)
#> 16566 ucc article 9, secured transactions (1998)
#> 16567 ucc article 9, secured transactions (1998)
#> 16568 ucc article 9, secured transactions (1998)
#> 16569 ucc article 9, secured transactions (1998)
#> 16570 ucc article 9, secured transactions (1998)
#> 16571 ucc article 9, secured transactions (1998)
#> 16572 ucc article 9, secured transactions (1998)
#> 16573 ucc article 9, secured transactions (1998)
#> 16574 ucc article 9, secured transactions (1998)
#> 16575 ucc article 9, secured transactions (1998)
#> 16576 ucc article 9, secured transactions (1998)
#> 16577 ucc article 9, secured transactions (1998)
#> 16578 ucc article 9, secured transactions (1998)
#> 16579 ucc article 9, secured transactions (1998)
#> 16580 ucc article 9, secured transactions (1998)
#> 16581 ucc article 9, secured transactions (1998)
#> 16582 ucc article 9, secured transactions (1998)
#> 16583 ucc article 9, secured transactions (1998)
#> 16584 ucc article 9, secured transactions (1998)
#> 16585 ucc article 9, secured transactions (1998)
#> 16586 ucc article 9, secured transactions (1998)
#> 16587 ucc article 9, secured transactions (1998)
#> 16588 ucc article 9, secured transactions (1998)
#> 16589 ucc article 9, secured transactions (1998)
#> 16590 ucc article 9, secured transactions (1998)
#> 16591 ucc article 9, secured transactions (1998)
#> 16592 ucc article 9, secured transactions (1998)
#> 16593 ucc article 9, secured transactions (1998)
#> 16594 ucc article 9, secured transactions (1998)
#> 16595 ucc article 9, secured transactions (1998)
#> 16596 ucc article 9, secured transactions (1998)
#> 16597 ucc article 9, secured transactions (1998)
#> 16598 ucc article 9, secured transactions (1998)
#> 16599 ucc article 9, secured transactions (1998)
#> 16600 ucc article 9, secured transactions (1998)
#> 16601 ucc article 9, secured transactions (1998)
#> 16602 ucc article 9, secured transactions (1998)
#> 16603 ucc article 9, secured transactions (1998)
#> 16604 ucc article 9, secured transactions (1998)
#> 16605 ucc article 9, secured transactions (1998)
#> 16606 ucc article 9, secured transactions (1998)
#> 16607 ucc article 9, secured transactions (1998)
#> 16608 ucc article 9, secured transactions (1998)
#> 16609 ucc article 9, secured transactions (1998)
#> 16610 ultrasound
#> 16611 ultrasound
#> 16612 ultrasound
#> 16613 ultrasound
#> 16614 ultrasound
#> 16615 ultrasound
#> 16616 ultrasound
#> 16617 ultrasound
#> 16618 ultrasound
#> 16619 ultrasound
#> 16620 ultrasound
#> 16621 ultrasound
#> 16622 ultrasound
#> 16623 ultrasound
#> 16624 ultrasound
#> 16625 ultrasound
#> 16626 ultrasound
#> 16627 ultrasound
#> 16628 ultrasound
#> 16629 ultrasound
#> 16630 ultrasound
#> 16631 ultrasound
#> 16632 ultrasound
#> 16633 ultrasound
#> 16634 unclaimed property act
#> 16635 unclaimed property act
#> 16636 unclaimed property act
#> 16637 unclaimed property act
#> 16638 unclaimed property act
#> 16639 unclaimed property act
#> 16640 unclaimed property act
#> 16641 unclaimed property act
#> 16642 unclaimed property act
#> 16643 unclaimed property act
#> 16644 unclaimed property act
#> 16645 unclaimed property act
#> 16646 unclaimed property act
#> 16647 unclaimed property act
#> 16648 unclaimed property act (1952)(1981)
#> 16649 unclaimed property act (1952)(1981)
#> 16650 unclaimed property act (1952)(1981)
#> 16651 unclaimed property act (1952)(1981)
#> 16652 unclaimed property act (1952)(1981)
#> 16653 unclaimed property act (1952)(1981)
#> 16654 unclaimed property act (1952)(1981)
#> 16655 unclaimed property act (1952)(1981)
#> 16656 unclaimed property act (1952)(1981)
#> 16657 unclaimed property act (1952)(1981)
#> 16658 unclaimed property act (1952)(1981)
#> 16659 unclaimed property act (1952)(1981)
#> 16660 unclaimed property act (1952)(1981)
#> 16661 unclaimed property act (1952)(1981)
#> 16662 unclaimed property act (1952)(1981)
#> 16663 unclaimed property act (1952)(1981)
#> 16664 unclaimed property act (1952)(1981)
#> 16665 unclaimed property act (1952)(1981)
#> 16666 unclaimed property act (1952)(1981)
#> 16667 unclaimed property act (1952)(1981)
#> 16668 unclaimed property act (1952)(1981)
#> 16669 unclaimed property act (1952)(1981)
#> 16670 unclaimed property act (1952)(1981)
#> 16671 unclaimed property act (1952)(1981)
#> 16672 unclaimed property act (1952)(1981)
#> 16673 unclaimed property act (1952)(1981)
#> 16674 unclaimed property act (1952)(1981)
#> 16675 unclaimed property act (1952)(1981)
#> 16676 unclaimed property act (1952)(1981)
#> 16677 unclaimed property act (1952)(1981)
#> 16678 unclaimed property act (1952)(1981)
#> 16679 unclaimed property act (1952)(1981)
#> 16680 undoctuit
#> 16681 undoctuit
#> 16682 undoctuit
#> 16683 undoctuit
#> 16684 undoctuit
#> 16685 undoctuit
#> 16686 undoctuit
#> 16687 undoctuit
#> 16688 undoctuit
#> 16689 undoctuit
#> 16690 uniform unclaimed property act
#> 16691 uniform unclaimed property act
#> 16692 uniform unclaimed property act
#> 16693 uniform unclaimed property act
#> 16694 uniform unclaimed property act
#> 16695 uniform unclaimed property act
#> 16696 uniform unclaimed property act
#> 16697 uniform unclaimed property act
#> 16698 uniform unclaimed property act
#> 16699 unincorporated nonprofit association act (1992)(1996)
#> 16700 unincorporated nonprofit association act (1992)(1996)
#> 16701 unincorporated nonprofit association act (1992)(1996)
#> 16702 unincorporated nonprofit association act (1992)(1996)
#> 16703 unincorporated nonprofit association act (1992)(1996)
#> 16704 unincorporated nonprofit association act (1992)(1996)
#> 16705 unincorporated nonprofit association act (1992)(1996)
#> 16706 unincorporated nonprofit association act (1992)(1996)
#> 16707 unincorporated nonprofit association act (1992)(1996)
#> 16708 unincorporated nonprofit association act (1992)(1996)
#> 16709 unincorporated nonprofit association act (1992)(1996)
#> 16710 unincorporated nonprofit association act (1992)(1996)
#> 16711 unincorporated nonprofit association act (2008) (last amended 2011)
#> 16712 unincorporated nonprofit association act (2008) (last amended 2011)
#> 16713 unincorporated nonprofit association act (2008) (last amended 2011)
#> 16714 unincorporated nonprofit association act (2008) (last amended 2011)
#> 16715 unincorporated nonprofit association act (2008) (last amended 2011)
#> 16716 unionlimits
#> 16717 unionlimits
#> 16718 unionlimits
#> 16719 unionlimits
#> 16720 unionlimits
#> 16721 unionlimits
#> 16722 unionlimits
#> 16723 unionlimits
#> 16724 unionlimits
#> 16725 unionlimits
#> 16726 unionlimits
#> 16727 unionlimits
#> 16728 unionlimits
#> 16729 unionlimits
#> 16730 unionlimits
#> 16731 unionlimits
#> 16732 unionlimits
#> 16733 unionlimits
#> 16734 unionlimits
#> 16735 unionlimits
#> 16736 unionlimits
#> 16737 unionlimits
#> 16738 unionlimits
#> 16739 unionlimits
#> 16740 unionlimits
#> 16741 unionlimits
#> 16742 unionlimits
#> 16743 unionlimits
#> 16744 unionlimits
#> 16745 unionlimits
#> 16746 unionlimits
#> 16747 unionlimits
#> 16748 unionlimits
#> 16749 unionlimits
#> 16750 unionlimits
#> 16751 unionlimits
#> 16752 unionlimits
#> 16753 unionlimits
#> 16754 unionlimits
#> 16755 unionlimits
#> 16756 unionlimits
#> 16757 unionlimits
#> 16758 unionlimits
#> 16759 unionlimits
#> 16760 unionlimits
#> 16761 unionlimits
#> 16762 unionlimits
#> 16763 unionlimits
#> 16764 unionlimits
#> 16765 unionlimits
#> 16766 universal health care
#> 16767 universal health care
#> 16768 universal health care
#> 16769 universal health care
#> 16770 universal health care
#> 16771 universal health care
#> 16772 universal health care
#> 16773 universal health care
#> 16774 universal health care
#> 16775 universal health care
#> 16776 universal health care
#> 16777 universal health care
#> 16778 universal health care
#> 16779 universal health care
#> 16780 universal health care
#> 16781 universalprek
#> 16782 universalprek
#> 16783 universalprek
#> 16784 universalprek
#> 16785 universalprek
#> 16786 universalprek
#> 16787 universalprek
#> 16788 universalprek
#> 16789 universalprek
#> 16790 universalprek
#> 16791 unsworn declarations act
#> 16792 unsworn foreign declarations act (2008)
#> 16793 unsworn foreign declarations act (2008)
#> 16794 unsworn foreign declarations act (2008)
#> 16795 unsworn foreign declarations act (2008)
#> 16796 unsworn foreign declarations act (2008)
#> 16797 unsworn foreign declarations act (2008)
#> 16798 unsworn foreign declarations act (2008)
#> 16799 unsworn foreign declarations act (2008)
#> 16800 unsworn foreign declarations act (2008)
#> 16801 unsworn foreign declarations act (2008)
#> 16802 unsworn foreign declarations act (2008)
#> 16803 unsworn foreign declarations act (2008)
#> 16804 unsworn foreign declarations act (2008)
#> 16805 unsworn foreign declarations act (2008)
#> 16806 unsworn foreign declarations act (2008)
#> 16807 unsworn foreign declarations act (2008)
#> 16808 unsworn foreign declarations act (2008)
#> 16809 unsworn foreign declarations act (2008)
#> 16810 unsworn foreign declarations act (2008)
#> 16811 unsworn foreign declarations act (2008)
#> 16812 unsworn foreign declarations act (2008)
#> 16813 unsworn foreign declarations act (2008)
#> 16814 unsworn foreign declarations act (2008)
#> 16815 urbrenen
#> 16816 urbrenen
#> 16817 urbrenen
#> 16818 urbrenen
#> 16819 urbrenen
#> 16820 urbrenen
#> 16821 urbrenen
#> 16822 urbrenen
#> 16823 urbrenen
#> 16824 urbrenen
#> 16825 urbrenen
#> 16826 urbrenen
#> 16827 urbrenen
#> 16828 urbrenen
#> 16829 urbrenen
#> 16830 urbrenen
#> 16831 urbrenen
#> 16832 urbrenen
#> 16833 urbrenen
#> 16834 urbrenen
#> 16835 urbrenen
#> 16836 urbrenen
#> 16837 urbrenen
#> 16838 urbrenen
#> 16839 urbrenen
#> 16840 urbrenen
#> 16841 urbrenen
#> 16842 urbrenen
#> 16843 urbrenen
#> 16844 urbrenen
#> 16845 urbrenen
#> 16846 urbrenen
#> 16847 urbrenen
#> 16848 urbrenen
#> 16849 utreg
#> 16850 utreg
#> 16851 utreg
#> 16852 utreg
#> 16853 utreg
#> 16854 utreg
#> 16855 utreg
#> 16856 utreg
#> 16857 utreg
#> 16858 utreg
#> 16859 utreg
#> 16860 utreg
#> 16861 utreg
#> 16862 utreg
#> 16863 utreg
#> 16864 utreg
#> 16865 utreg
#> 16866 utreg
#> 16867 utreg
#> 16868 utreg
#> 16869 utreg
#> 16870 utreg
#> 16871 utreg
#> 16872 utreg
#> 16873 utreg
#> 16874 utreg
#> 16875 utreg
#> 16876 utreg
#> 16877 utreg
#> 16878 utreg
#> 16879 utreg
#> 16880 utreg
#> 16881 utreg
#> 16882 utreg
#> 16883 utreg
#> 16884 utreg
#> 16885 utreg
#> 16886 utreg
#> 16887 utreg
#> 16888 utreg
#> 16889 utreg
#> 16890 utreg
#> 16891 utreg
#> 16892 utreg
#> 16893 utreg
#> 16894 utreg
#> 16895 utreg
#> 16896 vendor and purchaser risk act (1935)
#> 16897 vendor and purchaser risk act (1935)
#> 16898 vendor and purchaser risk act (1935)
#> 16899 vendor and purchaser risk act (1935)
#> 16900 vendor and purchaser risk act (1935)
#> 16901 vendor and purchaser risk act (1935)
#> 16902 vendor and purchaser risk act (1935)
#> 16903 vendor and purchaser risk act (1935)
#> 16904 vendor and purchaser risk act (1935)
#> 16905 vendor and purchaser risk act (1935)
#> 16906 vendor and purchaser risk act (1935)
#> 16907 vendor and purchaser risk act (1935)
#> 16908 vendor and purchaser risk act (1935)
#> 16909 veterans guardianship act (1942)
#> 16910 veterans guardianship act (1942)
#> 16911 veterans guardianship act (1942)
#> 16912 veterans guardianship act (1942)
#> 16913 veterans guardianship act (1942)
#> 16914 veterans guardianship act (1942)
#> 16915 veterans guardianship act (1942)
#> 16916 veterans guardianship act (1942)
#> 16917 veterans guardianship act (1942)
#> 16918 veterans guardianship act (1942)
#> 16919 veterans guardianship act (1942)
#> 16920 veterans guardianship act (1942)
#> 16921 veterans guardianship act (1942)
#> 16922 veterans guardianship act (1942)
#> 16923 veterans guardianship act (1942)
#> 16924 viatesting
#> 16925 viatesting
#> 16926 viatesting
#> 16927 viatesting
#> 16928 viatesting
#> 16929 viatesting
#> 16930 vicrtsamd
#> 16931 vicrtsamd
#> 16932 vicrtsamd
#> 16933 vicrtsamd
#> 16934 vicrtsamd
#> 16935 vicrtsamd
#> 16936 vicrtsamd
#> 16937 vicrtsamd
#> 16938 vicrtsamd
#> 16939 vicrtsamd
#> 16940 vicrtsamd
#> 16941 vicrtsamd
#> 16942 vicrtsamd
#> 16943 vicrtsamd
#> 16944 vicrtsamd
#> 16945 vicrtsamd
#> 16946 vicrtsamd
#> 16947 vicrtsamd
#> 16948 vicrtsamd
#> 16949 vicrtsamd
#> 16950 vicrtsamd
#> 16951 vicrtsamd
#> 16952 vicrtsamd
#> 16953 vicrtsamd
#> 16954 vicrtsamd
#> 16955 vicrtsamd
#> 16956 vicrtsamd
#> 16957 vicrtsamd
#> 16958 vicrtsamd
#> 16959 vicrtsamd
#> 16960 vicrtsamd
#> 16961 vicrtsamd
#> 16962 victim notification
#> 16963 victim notification
#> 16964 victim notification
#> 16965 victim notification
#> 16966 victim notification
#> 16967 victim notification
#> 16968 victim notification
#> 16969 victim notification
#> 16970 victim notification
#> 16971 victim notification
#> 16972 victim notification
#> 16973 victim notification
#> 16974 victim notification
#> 16975 victim notification
#> 16976 victim notification
#> 16977 victim notification
#> 16978 victim notification
#> 16979 victim notification
#> 16980 victim notification
#> 16981 victim notification
#> 16982 victim notification
#> 16983 victim notification
#> 16984 victim notification
#> 16985 victim notification
#> 16986 victim notification
#> 16987 victim notification
#> 16988 victim notification
#> 16989 victim notification
#> 16990 victim notification
#> 16991 victim notification
#> 16992 victim notification
#> 16993 victim notification
#> 16994 victim notification
#> 16995 victim notification
#> 16996 victim notification
#> 16997 victim notification
#> 16998 victim notification
#> 16999 victim notification
#> 17000 victim notification
#> 17001 victim notification
#> 17002 victim notification
#> 17003 victim notification
#> 17004 victim notification
#> 17005 victim notification
#> 17006 victim notification
#> 17007 victim notification
#> 17008 victimnotif
#> 17009 victimnotif
#> 17010 victimnotif
#> 17011 victimnotif
#> 17012 victimnotif
#> 17013 victimnotif
#> 17014 victimnotif
#> 17015 victimnotif
#> 17016 victimnotif
#> 17017 victimnotif
#> 17018 victimnotif
#> 17019 victimnotif
#> 17020 victimnotif
#> 17021 victimnotif
#> 17022 victimnotif
#> 17023 victimnotif
#> 17024 victimnotif
#> 17025 victimnotif
#> 17026 victimnotif
#> 17027 victimnotif
#> 17028 victimnotif
#> 17029 victimnotif
#> 17030 victimnotif
#> 17031 victimnotif
#> 17032 victimnotif
#> 17033 victimnotif
#> 17034 victimnotif
#> 17035 victimnotif
#> 17036 victimnotif
#> 17037 victimnotif
#> 17038 victimnotif
#> 17039 victimnotif
#> 17040 victimnotif
#> 17041 victimnotif
#> 17042 victimnotif
#> 17043 victimnotif
#> 17044 victimnotif
#> 17045 victimnotif
#> 17046 victimnotif
#> 17047 victimnotif
#> 17048 victimnotif
#> 17049 victimnotif
#> 17050 victimnotif
#> 17051 victimnotif
#> 17052 victimnotif
#> 17053 victimnotif
#> 17054 victimnotif
#> 17055 victimnotif
#> 17056 victimnotif
#> 17057 victimnotif
#> 17058 victimrights
#> 17059 victimrights
#> 17060 victimrights
#> 17061 victimrights
#> 17062 victimrights
#> 17063 victimrights
#> 17064 victimrights
#> 17065 victimrights
#> 17066 victimrights
#> 17067 victimrights
#> 17068 victimrights
#> 17069 victimrights
#> 17070 victimrights
#> 17071 victimrights
#> 17072 victimrights
#> 17073 victimrights
#> 17074 victimrights
#> 17075 victimrights
#> 17076 victimrights
#> 17077 victimrights
#> 17078 victimrights
#> 17079 victimrights
#> 17080 victimrights
#> 17081 victimrights
#> 17082 victimrights
#> 17083 victimrights
#> 17084 victimrights
#> 17085 victimrights
#> 17086 victimrights
#> 17087 victimrights
#> 17088 victimrights
#> 17089 victimrights
#> 17090 victimrights
#> 17091 victims of crime act, model
#> 17092 voidable transactions act amendments (2014) - formerly fraudulent transfer act
#> 17093 voidable transactions act amendments (2014) - formerly fraudulent transfer act
#> 17094 voidable transactions act amendments (2014) - formerly fraudulent transfer act
#> 17095 voidable transactions act amendments (2014) - formerly fraudulent transfer act
#> 17096 voidable transactions act amendments (2014) - formerly fraudulent transfer act
#> 17097 voidable transactions act amendments (2014) - formerly fraudulent transfer act
#> 17098 voidable transactions act amendments (2014) - formerly fraudulent transfer act
#> 17099 voidable transactions act amendments (2014) - formerly fraudulent transfer act
#> 17100 voidable transactions act amendments (2014) - formerly fraudulent transfer act
#> 17101 voidable transactions act amendments (2014) - formerly fraudulent transfer act
#> 17102 voidable transactions act amendments (2014) - formerly fraudulent transfer act
#> 17103 voidable transactions act amendments (2014) - formerly fraudulent transfer act
#> 17104 voidable transactions act amendments (2014) - formerly fraudulent transfer act
#> 17105 vouchers
#> 17106 w_abortion_parental_notice_1983
#> 17107 w_abortion_parental_notice_1983
#> 17108 w_abortion_parental_notice_1983
#> 17109 w_abortion_parental_notice_1983
#> 17110 w_abortion_parental_notice_1983
#> 17111 w_abortion_parental_notice_1983
#> 17112 w_abortion_parental_notice_1983
#> 17113 w_abortion_parental_notice_1983
#> 17114 w_abortion_parental_notice_1983
#> 17115 w_abortion_parental_notice_1983
#> 17116 w_abortion_parental_notice_1983
#> 17117 w_abortion_parental_notice_1983
#> 17118 w_abortion_parental_notice_1983
#> 17119 w_abortion_parental_notice_1983
#> 17120 w_abortion_parental_notice_1983
#> 17121 w_abortion_parental_notice_1983
#> 17122 w_abortion_parental_notice_1983
#> 17123 w_abortion_parental_notice_1983
#> 17124 w_abortion_parental_notice_1983
#> 17125 w_animal_cruelty_felon
#> 17126 w_animal_cruelty_felon
#> 17127 w_animal_cruelty_felon
#> 17128 w_animal_cruelty_felon
#> 17129 w_animal_cruelty_felon
#> 17130 w_animal_cruelty_felon
#> 17131 w_animal_cruelty_felon
#> 17132 w_animal_cruelty_felon
#> 17133 w_animal_cruelty_felon
#> 17134 w_animal_cruelty_felon
#> 17135 w_animal_cruelty_felon
#> 17136 w_animal_cruelty_felon
#> 17137 w_animal_cruelty_felon
#> 17138 w_ec_access_expan
#> 17139 w_ec_access_expan
#> 17140 w_ec_access_expan
#> 17141 w_ec_access_expan
#> 17142 w_ec_access_expan
#> 17143 w_ec_access_expan
#> 17144 w_ec_access_expan
#> 17145 w_ec_access_expan
#> 17146 w_ec_access_expan
#> 17147 w_ec_access_expan
#> 17148 w_educ_biblepubli
#> 17149 w_educ_biblepubli
#> 17150 w_educ_biblepubli
#> 17151 w_educ_bibleschoo
#> 17152 w_educ_bibleschoo
#> 17153 w_educ_mom_silentmandator
#> 17154 w_educ_mom_silentmandator
#> 17155 w_educ_mom_silentmandator
#> 17156 w_educ_mom_silentmandator
#> 17157 w_educ_mom_silentmandator
#> 17158 w_educ_mom_silentmandator
#> 17159 w_educ_mom_silentmandator
#> 17160 w_educ_mom_silentmandator
#> 17161 w_educ_mom_silentmandator
#> 17162 w_educ_mom_silentmandator
#> 17163 w_educ_mom_silentmandator
#> 17164 w_educ_mom_silentpermis
#> 17165 w_educ_mom_silentpermis
#> 17166 w_educ_mom_silentpermis
#> 17167 w_educ_mom_silentpermis
#> 17168 w_educ_mom_silentpermis
#> 17169 w_educ_mom_silentpermis
#> 17170 w_educ_mom_silentpermis
#> 17171 w_educ_mom_silentpermis
#> 17172 w_educ_mom_silentpermis
#> 17173 w_educ_mom_silentpermis
#> 17174 w_educ_mom_silentpermis
#> 17175 w_educ_mom_silentpermis
#> 17176 w_educ_mom_silentpermis
#> 17177 w_educ_mom_silentpermis
#> 17178 w_educ_mom_silentpermis
#> 17179 w_educ_mom_silentpermis
#> 17180 w_educ_mom_silentpermis
#> 17181 w_educ_mom_silentpermis
#> 17182 w_educ_mom_silentpermis
#> 17183 w_educ_mom_silentpermis
#> 17184 w_educ_mom_silentpermis
#> 17185 w_educ_mom_silentpermis
#> 17186 w_educ_mom_silentpermis
#> 17187 w_educ_mom_silentpermis
#> 17188 w_educ_mom_silentpermis
#> 17189 w_educ_mom_silentpermis
#> 17190 w_educ_mom_silentpermis
#> 17191 w_educ_mom_silentpermis
#> 17192 w_educ_mom_silentpermis
#> 17193 w_envir_solar_taxcredit_loca
#> 17194 w_envir_solar_taxcredit_loca
#> 17195 w_envir_solar_taxcredit_loca
#> 17196 w_envir_solar_taxcredit_loca
#> 17197 w_envir_solar_taxcredit_loca
#> 17198 w_envir_solar_taxcredit_loca
#> 17199 w_envir_solar_taxcredit_loca
#> 17200 w_envir_solar_taxcredit_loca
#> 17201 w_envir_solar_taxcredit_loca
#> 17202 w_envir_solar_taxcredit_stat
#> 17203 w_envir_solar_taxcredit_stat
#> 17204 w_envir_solar_taxcredit_stat
#> 17205 w_envir_solar_taxcredit_stat
#> 17206 w_envir_solar_taxcredit_stat
#> 17207 w_envir_solar_taxcredit_stat
#> 17208 w_envir_solar_taxcredit_stat
#> 17209 w_envir_solar_taxcredit_stat
#> 17210 w_envir_solar_taxcredit_stat
#> 17211 w_envir_solar_taxcredit_stat
#> 17212 w_envir_solar_taxcredit_stat
#> 17213 w_envir_solar_taxcredit_stat
#> 17214 w_envir_solar_taxcredit_stat
#> 17215 w_envir_solar_taxcredit_stat
#> 17216 w_envir_solar_taxcredit_stat
#> 17217 w_envir_solar_taxcredit_stat
#> 17218 w_envir_solar_taxcredit_stat
#> 17219 w_envir_solar_taxcredit_stat
#> 17220 w_envir_solar_taxcredit_stat
#> 17221 w_envir_solar_taxcredit_stat
#> 17222 w_envir_solar_taxcredit_stat
#> 17223 w_envir_solar_taxcredit_stat
#> 17224 w_envir_solar_taxcredit_stat
#> 17225 w_envir_solar_taxcredit_stat
#> 17226 w_envir_solar_taxcredit_stat
#> 17227 w_envir_solar_taxcredit_stat
#> 17228 w_envir_solar_taxcredit_stat
#> 17229 w_envir_solar_taxcredit_stat
#> 17230 w_envir_solar_taxcredit_stat
#> 17231 w_envir_solar_taxcredit_stat
#> 17232 w_envir_solar_taxcredit_stat
#> 17233 w_envir_solar_taxcredit_stat
#> 17234 w_envir_solar_taxcredit_stat
#> 17235 w_envir_solar_taxcredit_stat
#> 17236 w_envir_solar_taxcredit_stat
#> 17237 w_envir_solar_taxcredit_stat
#> 17238 w_environment_endangered_specie
#> 17239 w_environment_endangered_specie
#> 17240 w_environment_endangered_specie
#> 17241 w_environment_endangered_specie
#> 17242 w_environment_endangered_specie
#> 17243 w_environment_endangered_specie
#> 17244 w_environment_endangered_specie
#> 17245 w_environment_endangered_specie
#> 17246 w_environment_endangered_specie
#> 17247 w_environment_endangered_specie
#> 17248 w_environment_endangered_specie
#> 17249 w_environment_endangered_specie
#> 17250 w_environment_endangered_specie
#> 17251 w_environment_endangered_specie
#> 17252 w_environment_endangered_specie
#> 17253 w_environment_endangered_specie
#> 17254 w_environment_endangered_specie
#> 17255 w_environment_endangered_specie
#> 17256 w_environment_endangered_specie
#> 17257 w_environment_endangered_specie
#> 17258 w_environment_endangered_specie
#> 17259 w_environment_endangered_specie
#> 17260 w_environment_endangered_specie
#> 17261 w_environment_endangered_specie
#> 17262 w_environment_endangered_specie
#> 17263 w_environment_endangered_specie
#> 17264 w_environment_endangered_specie
#> 17265 w_environment_endangered_specie
#> 17266 w_environment_endangered_specie
#> 17267 w_environment_endangered_specie
#> 17268 w_environment_endangered_specie
#> 17269 w_environment_endangered_specie
#> 17270 w_environment_endangered_specie
#> 17271 w_environment_endangered_specie
#> 17272 w_environment_endangered_specie
#> 17273 w_environment_endangered_specie
#> 17274 w_environment_endangered_specie
#> 17275 w_environment_endangered_specie
#> 17276 w_environment_endangered_specie
#> 17277 w_gayright_publi_accom_genderi
#> 17278 w_gayright_publi_accom_genderi
#> 17279 w_gayright_publi_accom_genderi
#> 17280 w_gayright_publi_accom_genderi
#> 17281 w_gayright_publi_accom_genderi
#> 17282 w_gayright_publi_accom_genderi
#> 17283 w_gayright_publi_accom_genderi
#> 17284 w_gayright_publi_accom_genderi
#> 17285 w_gayright_publi_accom_genderi
#> 17286 w_gayright_publi_accom_genderi
#> 17287 w_gayright_publi_accom_genderi
#> 17288 w_gayright_publi_accom_genderi
#> 17289 w_gayright_publi_accom_genderi
#> 17290 w_gayright_publi_accom_genderi
#> 17291 w_gayright_publi_accom_genderi
#> 17292 w_gayright_publi_accom_genderi
#> 17293 w_gayright_publi_accom_genderi
#> 17294 w_gayrights_employment_discrimi
#> 17295 w_gayrights_employment_discrimi
#> 17296 w_gayrights_employment_discrimi
#> 17297 w_gayrights_employment_discrimi
#> 17298 w_gayrights_employment_discrimi
#> 17299 w_gayrights_employment_discrimi
#> 17300 w_gayrights_employment_discrimi
#> 17301 w_gayrights_employment_discrimi
#> 17302 w_gayrights_employment_discrimi
#> 17303 w_gayrights_employment_discrimi
#> 17304 w_gayrights_employment_discrimi
#> 17305 w_gayrights_employment_discrimi
#> 17306 w_gayrights_employment_discrimi
#> 17307 w_gayrights_public_accomodation
#> 17308 w_gayrights_public_accomodation
#> 17309 w_gayrights_public_accomodation
#> 17310 w_gayrights_public_accomodation
#> 17311 w_gayrights_public_accomodation
#> 17312 w_gayrights_public_accomodation
#> 17313 w_gayrights_public_accomodation
#> 17314 w_gayrights_public_accomodation
#> 17315 w_gayrights_public_accomodation
#> 17316 w_gayrights_public_accomodation
#> 17317 w_gayrights_public_accomodation
#> 17318 w_guncontrl_bc_dealer_handgu
#> 17319 w_guncontrl_bc_dealer_handgu
#> 17320 w_guncontrl_bc_dealer_handgu
#> 17321 w_guncontrl_bc_dealer_handgu
#> 17322 w_guncontrl_bc_dealer_handgu
#> 17323 w_guncontrl_bc_dealer_handgu
#> 17324 w_guncontrl_bc_dealer_handgu
#> 17325 w_guncontrl_bc_dealer_handgu
#> 17326 w_guncontrl_bc_dealer_handgu
#> 17327 w_guncontrl_bc_dealer_handgu
#> 17328 w_guncontrl_bc_dealer_handgu
#> 17329 w_guncontrl_bc_dealer_handgu
#> 17330 w_guncontrl_bc_dealer_handgu
#> 17331 w_guncontrl_bc_dealer_handgu
#> 17332 w_guncontrl_bc_dealer_handgu
#> 17333 w_guncontrl_bc_dealer_handgu
#> 17334 w_guncontrl_bc_dealer_handgu
#> 17335 w_guncontrl_bc_dealer_handgu
#> 17336 w_guncontrl_bc_dealer_rifl
#> 17337 w_guncontrl_bc_dealer_rifl
#> 17338 w_guncontrl_bc_dealer_rifl
#> 17339 w_guncontrl_bc_dealer_rifl
#> 17340 w_guncontrl_bc_dealer_rifl
#> 17341 w_guncontrl_bc_dealer_rifl
#> 17342 w_guncontrl_bc_dealer_rifl
#> 17343 w_guncontrl_bc_dealer_rifl
#> 17344 w_guncontrol_registration_requi
#> 17345 w_guncontrol_registration_requi
#> 17346 w_guncontrol_registration_requi
#> 17347 w_guncontrol_registration_requi
#> 17348 w_guncontrol_waitingperio
#> 17349 w_guncontrol_waitingperio
#> 17350 w_guncontrol_waitingperio
#> 17351 w_race_disc_public_accommodatio
#> 17352 w_race_disc_public_accommodatio
#> 17353 w_race_disc_public_accommodatio
#> 17354 w_race_disc_public_accommodatio
#> 17355 w_race_disc_public_accommodatio
#> 17356 w_race_disc_public_accommodatio
#> 17357 w_race_disc_public_accommodatio
#> 17358 w_race_disc_public_accommodatio
#> 17359 w_race_disc_public_accommodatio
#> 17360 w_race_disc_public_accommodatio
#> 17361 w_race_disc_public_accommodatio
#> 17362 w_race_disc_public_accommodatio
#> 17363 w_race_disc_public_accommodatio
#> 17364 w_race_disc_public_accommodatio
#> 17365 w_race_disc_public_accommodatio
#> 17366 w_race_disc_public_accommodatio
#> 17367 w_race_disc_public_accommodatio
#> 17368 w_race_disc_public_accommodatio
#> 17369 w_race_disc_public_accommodatio
#> 17370 w_race_disc_public_accommodatio
#> 17371 w_race_disc_public_accommodatio
#> 17372 w_race_disc_public_accommodatio
#> 17373 w_race_disc_public_accommodatio
#> 17374 w_race_disc_public_accommodatio
#> 17375 w_race_disc_public_accommodatio
#> 17376 w_race_disc_public_accommodatio
#> 17377 w_race_disc_public_accommodatio
#> 17378 w_race_disc_public_accommodatio
#> 17379 w_race_disc_public_accommodatio
#> 17380 w_race_disc_public_accommodatio
#> 17381 w_race_disc_public_accommodatio
#> 17382 waiting
#> 17383 waiting
#> 17384 waiting
#> 17385 waiting
#> 17386 waiting
#> 17387 waiting
#> 17388 waiting
#> 17389 waiting
#> 17390 waiting
#> 17391 waiting
#> 17392 waiting
#> 17393 waiting
#> 17394 waiting
#> 17395 waiting
#> 17396 waiting
#> 17397 waiting
#> 17398 waiting
#> 17399 waiting
#> 17400 waiting
#> 17401 waiting
#> 17402 waiting
#> 17403 waiting
#> 17404 waiting
#> 17405 waiting
#> 17406 waiting
#> 17407 waiting
#> 17408 waiting
#> 17409 waiting
#> 17410 waiting
#> 17411 waiting
#> 17412 waiting
#> 17413 welfagy
#> 17414 welfagy
#> 17415 welfagy
#> 17416 welfagy
#> 17417 welfagy
#> 17418 welfagy
#> 17419 welfagy
#> 17420 welfagy
#> 17421 welfagy
#> 17422 welfagy
#> 17423 welfagy
#> 17424 welfagy
#> 17425 welfagy
#> 17426 welfagy
#> 17427 welfagy
#> 17428 welfagy
#> 17429 welfagy
#> 17430 welfagy
#> 17431 welfagy
#> 17432 welfagy
#> 17433 welfagy
#> 17434 welfagy
#> 17435 welfagy
#> 17436 welfagy
#> 17437 welfagy
#> 17438 welfagy
#> 17439 welfagy
#> 17440 welfagy
#> 17441 welfagy
#> 17442 welfagy
#> 17443 welfagy
#> 17444 welfagy
#> 17445 welfagy
#> 17446 welfagy
#> 17447 welfagy
#> 17448 welfagy
#> 17449 welfagy
#> 17450 welfagy
#> 17451 welfagy
#> 17452 welfagy
#> 17453 welfagy
#> 17454 welfagy
#> 17455 welfagy
#> 17456 welfagy
#> 17457 welfagy
#> 17458 welfagy
#> 17459 welfagy
#> 17460 welfagy
#> 17461 wildlife violator compact
#> 17462 wildlife violator compact
#> 17463 wildlife violator compact
#> 17464 wildlife violator compact
#> 17465 wildlife violator compact
#> 17466 wildlife violator compact
#> 17467 wildlife violator compact
#> 17468 wildlife violator compact
#> 17469 wildlife violator compact
#> 17470 wildlife violator compact
#> 17471 wildlife violator compact
#> 17472 wildlife violator compact
#> 17473 wildlife violator compact
#> 17474 wildlife violator compact
#> 17475 wildlife violator compact
#> 17476 wildlife violator compact
#> 17477 wildlife violator compact
#> 17478 wildlife violator compact
#> 17479 wildlife violator compact
#> 17480 wildlife violator compact
#> 17481 wills recognition act
#> 17482 wills recognition act
#> 17483 wills recognition act
#> 17484 wills recognition act
#> 17485 wills recognition act
#> 17486 wills recognition act
#> 17487 wills recognition act
#> 17488 wills recognition act
#> 17489 wills recognition act
#> 17490 wills recognition act
#> 17491 wills recognition act
#> 17492 wills recognition act
#> 17493 wills recognition act
#> 17494 wills recognition act
#> 17495 wills recognition act
#> 17496 wills recognition act
#> 17497 wills recognition act
#> 17498 witnessint
#> 17499 witnessint
#> 17500 witnessint
#> 17501 witnessint
#> 17502 witnessint
#> 17503 witnessint
#> 17504 witnessint
#> 17505 witnessint
#> 17506 witnessint
#> 17507 witnessint
#> 17508 witnessint
#> 17509 witnessint
#> 17510 witnessint
#> 17511 witnessint
#> 17512 witnessint
#> 17513 witnessint
#> 17514 witnessint
#> 17515 witnessint
#> 17516 witnessint
#> 17517 witnessint
#> 17518 witnessint
#> 17519 witnessint
#> 17520 witnessint
#> 17521 witnessint
#> 17522 witnessint
#> 17523 witnessint
#> 17524 witnessint
#> 17525 witnessint
#> 17526 witnessint
#> 17527 witnessint
#> 17528 witnessint
#> 17529 witnessint
#> 17530 witnessint
#> 17531 witnessint
#> 17532 witnessint
#> 17533 witnessint
#> 17534 witnessint
#> 17535 witnessint
#> 17536 witnessint
#> 17537 witnessint
#> 17538 witnessint
#> 17539 witnessint
#> 17540 witnessint
#> 17541 witnessint
#> 17542 witnessint
#> 17543 witnessint
#> 17544 witnessint
#> 17545 witnessint
#> 17546 witnessint
#> 17547 wk20via
#> 17548 wk20via
#> 17549 wk20via
#> 17550 wk20via
#> 17551 wk20via
#> 17552 wk20via
#> 17553 wk20via
#> 17554 wk20via
#> 17555 wk20via
#> 17556 wk20via
#> 17557 wk20via
#> 17558 wk20via
#> 17559 wk20via
#> 17560 wk20via
#> 17561 wk20via
#> 17562 wk20via
#> 17563 wk20via
#> 17564 wk20via
#> 17565 wk20via
#> 17566 wk20via
#> 17567 wk20via
#> 17568 wmd
#> 17569 wmd
#> 17570 wmd
#> 17571 wmd
#> 17572 wmd
#> 17573 wmd
#> 17574 wmd
#> 17575 wmd
#> 17576 wmd
#> 17577 wmd
#> 17578 wmd
#> 17579 wmd
#> 17580 wmd
#> 17581 wmd
#> 17582 wmd
#> 17583 wmd
#> 17584 wmd
#> 17585 wmd
#> 17586 wmd
#> 17587 wmd
#> 17588 wmd
#> 17589 wmd
#> 17590 wmd
#> 17591 wmd
#> 17592 wmd
#> 17593 wmd
#> 17594 wmd
#> 17595 wmd
#> 17596 wmd
#> 17597 wmd
#> 17598 wmd
#> 17599 wmd
#> 17600 wmd
#> 17601 wmd
#> 17602 wmd
#> 17603 workcom
#> 17604 workcom
#> 17605 workcom
#> 17606 workcom
#> 17607 workcom
#> 17608 workcom
#> 17609 workcom
#> 17610 workcom
#> 17611 workcom
#> 17612 workcom
#> 17613 workcom
#> 17614 workcom
#> 17615 workcom
#> 17616 workcom
#> 17617 workcom
#> 17618 workcom
#> 17619 workcom
#> 17620 workcom
#> 17621 workcom
#> 17622 workcom
#> 17623 workcom
#> 17624 workcom
#> 17625 workcom
#> 17626 workcom
#> 17627 workcom
#> 17628 workcom
#> 17629 workcom
#> 17630 workcom
#> 17631 workcom
#> 17632 workcom
#> 17633 workcom
#> 17634 workcom
#> 17635 workcom
#> 17636 workcom
#> 17637 workcom
#> 17638 workcom
#> 17639 workcom
#> 17640 workcom
#> 17641 workcom
#> 17642 workcom
#> 17643 workcom
#> 17644 workcom
#> 17645 workcom
#> 17646 workcom
#> 17647 workcom
#> 17648 workcom
#> 17649 workcom
#> 17650 workcom
#> 17651 workcom
#> 17652 workcom
#> 17653 worksitebanstate
#> 17654 worksitebanstate
#> 17655 worksitebanstate
#> 17656 worksitebanstate
#> 17657 worksitebanstate
#> 17658 worksitebanstate
#> 17659 worksitebanstate
#> 17660 worksitebanstate
#> 17661 worksitebanstate
#> 17662 worksitebanstate
#> 17663 worksitebanstate
#> 17664 worksitebanstate
#> 17665 worksitebanstate
#> 17666 worksitebanstate
#> 17667 worksitebanstate
#> 17668 worksitebanstate
#> 17669 worksitebanstate
#> 17670 worksitebanstate
#> 17671 worksitebanstate
#> 17672 worksitebanstate
#> 17673 worksitebanstate
#> 17674 worksitebanstate
#> 17675 worksitebanstate
#> 17676 worksitebanstate
#> 17677 worksitebanstate
#> 17678 worksitebanstate
#> 17679 writreq
#> 17680 writreq
#> 17681 writreq
#> 17682 writreq
#> 17683 writreq
#> 17684 writreq
#> 17685 writreq
#> 17686 zerotol
#> 17687 zerotol
#> 17688 zerotol
#> 17689 zerotol
#> 17690 zerotol
#> 17691 zerotol
#> 17692 zerotol
#> 17693 zerotol
#> 17694 zerotol
#> 17695 zerotol
#> 17696 zerotol
#> 17697 zerotol
#> 17698 zerotol
#> 17699 zerotol
#> 17700 zerotol
#> 17701 zerotol
#> 17702 zerotol
#> 17703 zerotol
#> 17704 zerotol
#> 17705 zerotol
#> 17706 zerotol
#> 17707 zerotol
#> 17708 zerotol
#> 17709 zerotol
#> 17710 zerotol
#> 17711 zerotol
#> 17712 zerotol
#> 17713 zerotol
#> 17714 zerotol
#> 17715 zerotol
#> 17716 zerotol
#> 17717 zerotol
#> 17718 zerotol
#> 17719 zerotol
#> 17720 zerotol
#> 17721 zerotol
#> 17722 zerotol
#> 17723 zerotol
#> 17724 zerotol
#> 17725 zerotol
#> 17726 zerotol
#> 17727 zerotol
#> 17728 zerotol
#> 17729 zerotol
#> 17730 zerotol
#> 17731 zerotol
#> 17732 zerotol
#> 17733 zerotol
#> 17734 zerotol
#> 17735 zerotol
#> 17736 zerotoleranceapis
#> 17737 zerotoleranceapis
#> 17738 zerotoleranceapis
#> 17739 zerotoleranceapis
#> 17740 zerotoleranceapis
#> 17741 zerotoleranceapis
#> 17742 zerotoleranceapis
#> 17743 zerotoleranceapis
#> 17744 zerotoleranceapis
#> 17745 zerotoleranceapis
#> 17746 zerotoleranceapis
#> 17747 zerotoleranceapis
#> 17748 zerotoleranceapis
#> 17749 zerotoleranceapis
#> 17750 zerotoleranceapis
#> 17751 zerotoleranceapis
#> 17752 zerotoleranceapis
#> 17753 zerotoleranceapis
#> 17754 zerotoleranceapis
#> 17755 zerotoleranceapis
#> 17756 zerotoleranceapis
#> 17757 zerotoleranceapis
#> 17758 zerotoleranceapis
#> 17759 zerotoleranceapis
#> 17760 zerotoleranceapis
#> 17761 zerotoleranceapis
#> 17762 zerotoleranceapis
#> 17763 zerotoleranceapis
#> 17764 zerotoleranceapis
#> 17765 zerotoleranceapis
#> 17766 zerotoleranceapis
#> 17767 zerotoleranceapis
#> 17768 zerotoleranceapis
#> 17769 zerotoleranceapis
#> 17770 zerotoleranceapis
#> 17771 zerotoleranceapis
#> 17772 zerotoleranceapis
#> 17773 zerotoleranceapis
#> 17774 zerotoleranceapis
#> 17775 zerotoleranceapis
#> 17776 zerotoleranceapis
#> 17777 zerotoleranceapis
#> 17778 zerotoleranceapis
#> 17779 zerotoleranceapis
#> 17780 zerotoleranceapis
#> 17781 zerotoleranceapis
#> 17782 zerotoleranceapis
#> 17783 zerotoleranceapis
#> 17784 zerotoleranceapis
#> 17785 zerotoleranceapis
#> 17786 zerotolerancelaw
#> 17787 zerotolerancelaw
#> 17788 zerotolerancelaw
#> 17789 zerotolerancelaw
#> 17790 zerotolerancelaw
#> 17791 zerotolerancelaw
#> 17792 zerotolerancelaw
#> 17793 zerotolerancelaw
#> 17794 zerotolerancelaw
#> 17795 zerotolerancelaw
#> 17796 zerotolerancelaw
#> 17797 zerotolerancelaw
#> 17798 zerotolerancelaw
#> 17799 zerotolerancelaw
#> 17800 zerotolerancelaw
#> 17801 zerotolerancelaw
#> 17802 zerotolerancelaw
#> 17803 zerotolerancelaw
#> 17804 zerotolerancelaw
#> 17805 zerotolerancelaw
#> 17806 zerotolerancelaw
#> 17807 zerotolerancelaw
#> 17808 zerotolerancelaw
#> 17809 zerotolerancelaw
#> 17810 zerotolerancelaw
#> 17811 zerotolerancelaw
#> 17812 zerotolerancelaw
#> 17813 zerotolerancelaw
#> 17814 zerotolerancelaw
#> 17815 zerotolerancelaw
#> 17816 zerotolerancelaw
#> 17817 zerotolerancelaw
#> 17818 zerotolerancelaw
#> 17819 zerotolerancelaw
#> 17820 zerotolerancelaw
#> 17821 zerotolerancelaw
#> 17822 zerotolerancelaw
#> 17823 zerotolerancelaw
#> 17824 zerotolerancelaw
#> 17825 zerotolerancelaw
#> 17826 zerotolerancelaw
#> 17827 zerotolerancelaw
#> 17828 zerotolerancelaw
#> 17829 zerotolerancelaw
#> 17830 zerotolerancelaw
#> 17831 zerotolerancelaw
#> 17832 zerotolerancelaw
#> 17833 zerotolerancelaw
#> 17834 zerotolerancelaw
#> 17835 zerotolerancelaw
#> adopt_year
#> 1 1957
#> 2 1958
#> 3 1957
#> 4 1965
#> 5 1887
#> 6 1846
#> 7 1911
#> 8 1969
#> 9 1965
#> 10 1915
#> 11 1964
#> 12 1852
#> 13 1965
#> 14 1965
#> 15 1853
#> 16 1987
#> 17 1984
#> 18 1994
#> 19 1981
#> 20 1989
#> 21 1981
#> 22 1991
#> 23 1983
#> 24 1996
#> 25 1994
#> 26 1982
#> 27 1990
#> 28 1999
#> 29 1992
#> 30 1989
#> 31 1982
#> 32 1989
#> 33 1990
#> 34 1996
#> 35 1991
#> 36 1996
#> 37 1992
#> 38 1992
#> 39 1981
#> 40 1991
#> 41 1990
#> 42 1998
#> 43 1992
#> 44 2000
#> 45 1981
#> 46 1998
#> 47 1984
#> 48 1970
#> 49 1969
#> 50 1967
#> 51 1967
#> 52 1969
#> 53 1972
#> 54 1968
#> 55 1970
#> 56 1969
#> 57 1968
#> 58 1966
#> 59 1969
#> 60 1970
#> 61 1967
#> 62 1969
#> 63 1970
#> 64 1970
#> 65 1970
#> 66 1979
#> 67 1973
#> 68 1981
#> 69 1980
#> 70 2002
#> 71 2004
#> 72 2011
#> 73 2001
#> 74 1992
#> 75 2006
#> 76 2005
#> 77 1992
#> 78 1997
#> 79 1997
#> 80 2001
#> 81 1995
#> 82 1992
#> 83 1999
#> 84 2003
#> 85 1992
#> 86 2010
#> 87 1993
#> 88 2011
#> 89 1994
#> 90 1994
#> 91 2005
#> 92 1992
#> 93 1995
#> 94 1992
#> 95 2003
#> 96 1994
#> 97 2001
#> 98 2003
#> 99 1999
#> 100 1981
#> 101 2002
#> 102 1981
#> 103 1986
#> 104 1981
#> 105 1994
#> 106 1995
#> 107 1981
#> 108 1981
#> 109 1981
#> 110 1994
#> 111 1995
#> 112 1982
#> 113 1998
#> 114 1981
#> 115 1981
#> 116 1983
#> 117 1985
#> 118 1981
#> 119 1981
#> 120 1997
#> 121 1997
#> 122 1997
#> 123 1998
#> 124 1996
#> 125 1999
#> 126 1998
#> 127 1997
#> 128 1997
#> 129 1997
#> 130 1996
#> 131 1998
#> 132 1970
#> 133 1969
#> 134 1967
#> 135 1967
#> 136 1969
#> 137 1972
#> 138 1968
#> 139 1970
#> 140 1969
#> 141 1968
#> 142 1969
#> 143 1970
#> 144 1967
#> 145 1969
#> 146 1970
#> 147 1970
#> 148 1970
#> 149 1996
#> 150 1992
#> 151 1969
#> 152 1978
#> 153 1992
#> 154 1998
#> 155 2003
#> 156 1970
#> 157 1973
#> 158 2003
#> 159 1991
#> 160 1996
#> 161 2000
#> 162 1997
#> 163 1994
#> 164 1960
#> 165 1994
#> 166 2000
#> 167 2000
#> 168 1992
#> 169 1983
#> 170 2003
#> 171 1993
#> 172 1976
#> 173 2000
#> 174 1999
#> 175 1919
#> 176 1919
#> 177 1915
#> 178 1901
#> 179 1907
#> 180 1907
#> 181 1913
#> 182 1951
#> 183 1908
#> 184 1917
#> 185 1897
#> 186 1929
#> 187 1915
#> 188 1915
#> 189 1916
#> 190 1908
#> 191 1913
#> 192 1900
#> 193 1909
#> 194 1905
#> 195 1909
#> 196 1920
#> 197 1909
#> 198 1909
#> 199 1909
#> 200 1913
#> 201 1917
#> 202 1904
#> 203 1921
#> 204 1896
#> 205 1913
#> 206 1913
#> 207 1908
#> 208 1917
#> 209 1915
#> 210 1906
#> 211 1906
#> 212 1915
#> 213 1917
#> 214 1913
#> 215 1915
#> 216 1907
#> 217 1912
#> 218 1910
#> 219 1903
#> 220 1911
#> 221 1913
#> 222 1911
#> 223 1953
#> 224 1950
#> 225 1953
#> 226 1953
#> 227 1956
#> 228 1953
#> 229 1950
#> 230 1964
#> 231 1967
#> 232 1964
#> 233 1956
#> 234 1953
#> 235 1957
#> 236 1950
#> 237 1956
#> 238 1956
#> 239 1964
#> 240 1962
#> 241 1964
#> 242 1964
#> 243 1962
#> 244 1953
#> 245 1956
#> 246 1956
#> 247 1956
#> 248 1967
#> 249 1962
#> 250 1957
#> 251 1936
#> 252 1936
#> 253 1936
#> 254 1936
#> 255 1936
#> 256 1941
#> 257 1936
#> 258 1938
#> 259 1937
#> 260 1936
#> 261 1941
#> 262 1936
#> 263 1943
#> 264 1937
#> 265 1942
#> 266 1936
#> 267 1936
#> 268 1936
#> 269 1936
#> 270 1936
#> 271 1937
#> 272 1941
#> 273 1937
#> 274 1937
#> 275 1936
#> 276 1955
#> 277 1936
#> 278 1936
#> 279 1936
#> 280 1937
#> 281 1937
#> 282 1937
#> 283 1936
#> 284 1936
#> 285 1937
#> 286 1936
#> 287 1937
#> 288 1937
#> 289 1940
#> 290 1937
#> 291 1941
#> 292 1936
#> 293 1936
#> 294 1938
#> 295 1936
#> 296 1936
#> 297 1936
#> 298 1936
#> 299 1939
#> 300 1937
#> 301 1937
#> 302 1935
#> 303 1939
#> 304 1925
#> 305 1937
#> 306 1939
#> 307 1939
#> 308 1939
#> 309 1936
#> 310 1936
#> 311 1927
#> 312 1939
#> 313 1937
#> 314 1929
#> 315 1933
#> 316 1936
#> 317 1936
#> 318 1939
#> 319 1936
#> 320 1935
#> 321 1937
#> 322 1935
#> 323 1935
#> 324 1937
#> 325 1925
#> 326 1939
#> 327 1937
#> 328 1935
#> 329 1939
#> 330 1939
#> 331 1939
#> 332 1937
#> 333 1936
#> 334 1933
#> 335 1934
#> 336 1937
#> 337 1939
#> 338 1936
#> 339 1927
#> 340 2013
#> 341 2011
#> 342 2013
#> 343 2011
#> 344 2013
#> 345 2013
#> 346 2013
#> 347 2013
#> 348 2013
#> 349 2013
#> 350 2013
#> 351 2013
#> 352 2013
#> 353 1977
#> 354 1976
#> 355 1971
#> 356 1971
#> 357 1973
#> 358 1996
#> 359 2010
#> 360 2008
#> 361 2010
#> 362 2011
#> 363 2014
#> 364 2008
#> 365 2012
#> 366 2008
#> 367 2016
#> 368 2012
#> 369 2011
#> 370 2009
#> 371 2011
#> 372 2010
#> 373 2011
#> 374 2016
#> 375 2012
#> 376 2010
#> 377 2014
#> 378 2009
#> 379 2014
#> 380 2011
#> 381 2009
#> 382 2011
#> 383 2009
#> 384 2015
#> 385 2012
#> 386 2011
#> 387 2014
#> 388 2016
#> 389 2009
#> 390 2013
#> 391 2010
#> 392 2009
#> 393 2012
#> 394 2015
#> 395 2010
#> 396 2011
#> 397 2010
#> 398 2008
#> 399 2011
#> 400 2011
#> 401 2009
#> 402 2013
#> 403 1995
#> 404 1997
#> 405 1993
#> 406 2001
#> 407 1996
#> 408 1992
#> 409 1994
#> 410 1989
#> 411 1998
#> 412 1997
#> 413 1997
#> 414 1999
#> 415 1992
#> 416 1997
#> 417 1993
#> 418 1995
#> 419 1963
#> 420 1966
#> 421 1961
#> 422 1962
#> 423 1961
#> 424 1961
#> 425 1974
#> 426 1963
#> 427 1975
#> 428 1969
#> 429 1961
#> 430 1961
#> 431 1964
#> 432 1970
#> 433 1969
#> 434 1975
#> 435 1965
#> 436 1969
#> 437 1961
#> 438 1962
#> 439 1964
#> 440 1962
#> 441 1962
#> 442 1961
#> 443 1961
#> 444 1985
#> 445 1961
#> 446 1968
#> 447 1961
#> 448 1961
#> 449 1966
#> 450 1974
#> 451 1989
#> 452 1987
#> 453 1987
#> 454 1983
#> 455 1988
#> 456 1987
#> 457 1980
#> 458 1991
#> 459 1988
#> 460 1986
#> 461 1989
#> 462 1987
#> 463 1991
#> 464 1986
#> 465 1990
#> 466 1989
#> 467 1986
#> 468 1988
#> 469 1981
#> 470 1981
#> 471 1970
#> 472 1971
#> 473 1963
#> 474 1969
#> 475 1957
#> 476 1969
#> 477 1973
#> 478 1972
#> 479 1965
#> 480 1971
#> 481 1973
#> 482 1981
#> 483 1965
#> 484 1969
#> 485 1974
#> 486 1971
#> 487 1965
#> 488 1965
#> 489 1961
#> 490 1967
#> 491 1971
#> 492 1963
#> 493 1963
#> 494 1971
#> 495 1959
#> 496 1958
#> 497 1971
#> 498 1957
#> 499 1965
#> 500 1971
#> 501 1969
#> 502 1977
#> 503 1969
#> 504 1978
#> 505 1974
#> 506 1962
#> 507 1972
#> 508 1970
#> 509 1975
#> 510 1980
#> 511 1951
#> 512 1970
#> 513 1967
#> 514 1971
#> 515 1970
#> 516 1971
#> 517 1977
#> 518 1970
#> 519 1977
#> 520 1969
#> 521 1969
#> 522 1969
#> 523 1969
#> 524 1969
#> 525 1969
#> 526 1973
#> 527 1984
#> 528 1970
#> 529 1969
#> 530 1968
#> 531 1968
#> 532 1976
#> 533 1969
#> 534 1977
#> 535 1972
#> 536 1969
#> 537 1969
#> 538 1968
#> 539 1969
#> 540 1969
#> 541 1970
#> 542 1969
#> 543 1969
#> 544 1962
#> 545 1969
#> 546 1988
#> 547 1969
#> 548 1970
#> 549 1969
#> 550 1969
#> 551 1969
#> 552 1950
#> 553 1952
#> 554 1957
#> 555 1951
#> 556 1954
#> 557 1950
#> 558 1955
#> 559 1952
#> 560 1950
#> 561 1950
#> 562 1950
#> 563 1957
#> 564 1950
#> 565 1955
#> 566 1951
#> 567 1951
#> 568 1951
#> 569 1954
#> 570 1950
#> 571 1950
#> 572 1950
#> 573 1955
#> 574 1952
#> 575 1951
#> 576 1950
#> 577 1950
#> 578 1951
#> 579 1951
#> 580 1950
#> 581 1951
#> 582 1950
#> 583 1951
#> 584 1951
#> 585 1950
#> 586 1951
#> 587 1953
#> 588 1957
#> 589 1950
#> 590 1951
#> 591 1950
#> 592 1950
#> 593 1951
#> 594 1950
#> 595 1950
#> 596 1940
#> 597 1959
#> 598 1960
#> 599 1959
#> 600 1957
#> 601 1959
#> 602 1957
#> 603 1957
#> 604 1958
#> 605 1959
#> 606 1960
#> 607 1961
#> 608 1951
#> 609 1907
#> 610 1952
#> 611 1959
#> 612 1954
#> 613 1950
#> 614 1954
#> 615 1959
#> 616 1957
#> 617 1958
#> 618 1958
#> 619 1959
#> 620 1959
#> 621 1971
#> 622 1955
#> 623 1954
#> 624 1953
#> 625 1957
#> 626 1959
#> 627 1943
#> 628 1957
#> 629 1959
#> 630 1959
#> 631 1960
#> 632 1956
#> 633 1960
#> 634 1970
#> 635 1959
#> 636 1959
#> 637 1953
#> 638 1959
#> 639 1950
#> 640 1957
#> 641 1961
#> 642 1957
#> 643 1973
#> 644 1940
#> 645 1939
#> 646 1935
#> 647 1935
#> 648 1935
#> 649 1935
#> 650 1941
#> 651 1937
#> 652 1939
#> 653 1933
#> 654 1935
#> 655 1946
#> 656 1935
#> 657 1948
#> 658 1944
#> 659 1932
#> 660 1933
#> 661 1945
#> 662 1942
#> 663 1939
#> 664 1935
#> 665 1942
#> 666 1935
#> 667 1937
#> 668 1941
#> 669 1934
#> 670 1943
#> 671 1926
#> 672 1938
#> 673 1942
#> 674 1939
#> 675 1933
#> 676 1935
#> 677 1935
#> 678 1934
#> 679 1933
#> 680 1933
#> 681 1935
#> 682 1935
#> 683 1972
#> 684 1973
#> 685 1974
#> 686 1972
#> 687 1975
#> 688 1973
#> 689 1972
#> 690 1974
#> 691 1972
#> 692 1974
#> 693 1945
#> 694 1955
#> 695 1954
#> 696 1949
#> 697 1945
#> 698 1948
#> 699 1953
#> 700 1951
#> 701 1957
#> 702 1953
#> 703 1955
#> 704 1953
#> 705 1956
#> 706 1948
#> 707 1953
#> 708 1952
#> 709 1956
#> 710 1951
#> 711 1953
#> 712 1949
#> 713 1947
#> 714 1948
#> 715 1949
#> 716 1952
#> 717 1949
#> 718 1951
#> 719 1957
#> 720 1943
#> 721 1953
#> 722 1951
#> 723 1957
#> 724 1955
#> 725 1950
#> 726 1947
#> 727 1951
#> 728 1948
#> 729 1957
#> 730 1957
#> 731 1947
#> 732 1991
#> 733 1986
#> 734 1992
#> 735 1986
#> 736 1987
#> 737 1995
#> 738 1986
#> 739 1996
#> 740 1994
#> 741 1987
#> 742 1988
#> 743 1987
#> 744 1985
#> 745 1986
#> 746 2007
#> 747 1991
#> 748 1991
#> 749 1989
#> 750 1986
#> 751 1986
#> 752 1994
#> 753 1986
#> 754 1988
#> 755 1989
#> 756 2003
#> 757 2002
#> 758 2001
#> 759 2002
#> 760 2002
#> 761 2002
#> 762 2003
#> 763 2000
#> 764 2002
#> 765 2003
#> 766 2002
#> 767 2002
#> 768 2003
#> 769 2002
#> 770 2003
#> 771 2002
#> 772 2002
#> 773 2002
#> 774 2002
#> 775 2001
#> 776 2003
#> 777 2002
#> 778 2002
#> 779 2003
#> 780 2002
#> 781 2003
#> 782 2003
#> 783 2002
#> 784 2003
#> 785 2002
#> 786 2003
#> 787 2002
#> 788 2003
#> 789 1999
#> 790 2002
#> 791 2002
#> 792 2002
#> 793 2002
#> 794 2003
#> 795 2003
#> 796 2002
#> 797 2002
#> 798 2003
#> 799 2002
#> 800 2002
#> 801 2002
#> 802 2003
#> 803 2004
#> 804 1970
#> 805 1970
#> 806 1970
#> 807 1970
#> 808 1970
#> 809 1970
#> 810 1970
#> 811 1970
#> 812 1970
#> 813 1970
#> 814 1970
#> 815 1970
#> 816 1970
#> 817 1970
#> 818 1971
#> 819 1970
#> 820 1970
#> 821 1970
#> 822 1970
#> 823 1971
#> 824 1970
#> 825 1970
#> 826 1970
#> 827 1970
#> 828 1970
#> 829 1970
#> 830 1970
#> 831 1970
#> 832 1970
#> 833 1970
#> 834 1970
#> 835 1970
#> 836 1970
#> 837 1970
#> 838 1970
#> 839 1970
#> 840 1970
#> 841 1970
#> 842 2003
#> 843 1996
#> 844 1989
#> 845 1989
#> 846 1988
#> 847 1989
#> 848 1995
#> 849 1995
#> 850 1991
#> 851 1989
#> 852 1989
#> 853 1997
#> 854 1995
#> 855 1989
#> 856 1995
#> 857 1989
#> 858 1990
#> 859 1990
#> 860 1993
#> 861 1990
#> 862 2008
#> 863 2008
#> 864 2007
#> 865 2007
#> 866 2008
#> 867 2007
#> 868 2010
#> 869 2008
#> 870 2008
#> 871 2007
#> 872 2013
#> 873 2007
#> 874 2007
#> 875 2007
#> 876 2010
#> 877 2010
#> 878 2008
#> 879 2011
#> 880 2012
#> 881 2008
#> 882 2007
#> 883 2008
#> 884 2008
#> 885 2007
#> 886 2010
#> 887 2007
#> 888 2010
#> 889 2008
#> 890 2007
#> 891 2007
#> 892 2007
#> 893 2009
#> 894 2009
#> 895 2007
#> 896 2007
#> 897 2009
#> 898 2007
#> 899 2007
#> 900 2009
#> 901 2007
#> 902 2010
#> 903 2007
#> 904 2008
#> 905 2008
#> 906 2009
#> 907 2000
#> 908 1999
#> 909 1988
#> 910 2002
#> 911 1996
#> 912 1994
#> 913 1989
#> 914 2000
#> 915 2007
#> 916 1999
#> 917 2002
#> 918 2006
#> 919 2003
#> 920 1995
#> 921 1999
#> 922 2002
#> 923 1935
#> 924 1994
#> 925 2001
#> 926 1994
#> 927 1993
#> 928 2003
#> 929 2011
#> 930 1994
#> 931 2001
#> 932 1999
#> 933 1999
#> 934 1998
#> 935 2013
#> 936 1935
#> 937 1995
#> 938 1935
#> 939 2000
#> 940 2004
#> 941 2001
#> 942 2008
#> 943 1998
#> 944 2002
#> 945 1994
#> 946 2003
#> 947 1986
#> 948 2003
#> 949 2000
#> 950 1999
#> 951 1988
#> 952 2002
#> 953 1996
#> 954 1994
#> 955 1989
#> 956 2000
#> 957 1999
#> 958 1998
#> 959 2000
#> 960 2003
#> 961 1995
#> 962 2001
#> 963 2001
#> 964 1804
#> 965 1931
#> 966 2001
#> 967 1994
#> 968 1993
#> 969 2002
#> 970 1999
#> 971 1994
#> 972 2001
#> 973 1999
#> 974 1999
#> 975 1998
#> 976 2002
#> 977 1887
#> 978 1995
#> 979 1995
#> 980 1896
#> 981 2000
#> 982 2002
#> 983 1997
#> 984 1998
#> 985 1999
#> 986 1994
#> 987 2003
#> 988 1986
#> 989 2003
#> 990 1968
#> 991 1970
#> 992 1961
#> 993 1903
#> 994 1959
#> 995 1960
#> 996 1965
#> 997 1965
#> 998 1934
#> 999 1965
#> 1000 1937
#> 1001 1965
#> 1002 1963
#> 1003 1975
#> 1004 1962
#> 1005 1958
#> 1006 1965
#> 1007 1961
#> 1008 1959
#> 1009 1955
#> 1010 1956
#> 1011 1967
#> 1012 1961
#> 1013 1959
#> 1014 2009
#> 1015 2006
#> 1016 2005
#> 1017 2003
#> 1018 2003
#> 1019 2001
#> 1020 2002
#> 1021 2007
#> 1022 2008
#> 1023 1999
#> 1024 2011
#> 1025 2006
#> 1026 2001
#> 1027 2005
#> 1028 2007
#> 1029 2007
#> 1030 2008
#> 1031 2001
#> 1032 2005
#> 1033 2005
#> 1034 2010
#> 1035 2011
#> 1036 2007
#> 1037 2001
#> 1038 2006
#> 1039 2015
#> 1040 2008
#> 1041 2005
#> 1042 2000
#> 1043 2002
#> 1044 2006
#> 1045 2010
#> 1046 2009
#> 1047 2011
#> 1048 2006
#> 1049 2002
#> 1050 2001
#> 1051 2008
#> 1052 2003
#> 1053 2006
#> 1054 2012
#> 1055 2005
#> 1056 2005
#> 1057 2008
#> 1058 2004
#> 1059 2005
#> 1060 2002
#> 1061 2001
#> 1062 2010
#> 1063 2009
#> 1064 1913
#> 1065 1933
#> 1066 1939
#> 1067 1933
#> 1068 1925
#> 1069 1933
#> 1070 1913
#> 1071 1934
#> 1072 1933
#> 1073 1935
#> 1074 1914
#> 1075 1917
#> 1076 1913
#> 1077 1926
#> 1078 1939
#> 1079 1935
#> 1080 1919
#> 1081 1919
#> 1082 1937
#> 1083 1936
#> 1084 1917
#> 1085 1919
#> 1086 1919
#> 1087 1933
#> 1088 1822
#> 1089 1865
#> 1090 1838
#> 1091 1850
#> 1092 1864
#> 1093 1721
#> 1094 1832
#> 1095 1750
#> 1096 1864
#> 1097 1829
#> 1098 1818
#> 1099 1839
#> 1100 1855
#> 1101 1792
#> 1102 1724
#> 1103 1821
#> 1104 1692
#> 1105 1705
#> 1106 1838
#> 1107 1822
#> 1108 1835
#> 1109 1909
#> 1110 1857
#> 1111 1715
#> 1112 1861
#> 1113 1897
#> 1114 1862
#> 1115 1725
#> 1116 1798
#> 1117 1717
#> 1118 1909
#> 1119 1741
#> 1120 1837
#> 1121 1852
#> 1122 1691
#> 1123 1855
#> 1124 1863
#> 1125 1913
#> 1126 2005
#> 1127 1999
#> 1128 2005
#> 1129 1992
#> 1130 1993
#> 1131 1993
#> 1132 1993
#> 1133 1990
#> 1134 1995
#> 1135 1992
#> 1136 1992
#> 1137 1992
#> 1138 1993
#> 1139 1995
#> 1140 1992
#> 1141 1992
#> 1142 1993
#> 1143 1994
#> 1144 1992
#> 1145 1992
#> 1146 1992
#> 1147 1995
#> 1148 1993
#> 1149 1992
#> 1150 1993
#> 1151 1993
#> 1152 1992
#> 1153 1993
#> 1154 1992
#> 1155 1993
#> 1156 1993
#> 1157 1993
#> 1158 1993
#> 1159 1993
#> 1160 1993
#> 1161 1993
#> 1162 1993
#> 1163 1992
#> 1164 1992
#> 1165 1993
#> 1166 1993
#> 1167 1992
#> 1168 1992
#> 1169 1992
#> 1170 1992
#> 1171 1995
#> 1172 1992
#> 1173 1993
#> 1174 1992
#> 1175 1992
#> 1176 1992
#> 1177 1993
#> 1178 1993
#> 1179 1999
#> 1180 1995
#> 1181 2003
#> 1182 1998
#> 1183 1998
#> 1184 1996
#> 1185 2006
#> 1186 1998
#> 1187 1995
#> 1188 1996
#> 1189 1996
#> 1190 1995
#> 1191 1996
#> 1192 2006
#> 1193 2003
#> 1194 1980
#> 1195 2004
#> 1196 1999
#> 1197 2003
#> 1198 1993
#> 1199 1996
#> 1200 1977
#> 1201 1997
#> 1202 1972
#> 1203 2010
#> 1204 2005
#> 1205 2011
#> 1206 1988
#> 1207 1997
#> 1208 1997
#> 1209 2002
#> 1210 2003
#> 1211 2012
#> 1212 2005
#> 1213 2013
#> 1214 2003
#> 1215 2006
#> 1216 2009
#> 1217 2012
#> 1218 2011
#> 1219 1972
#> 1220 2003
#> 1221 1989
#> 1222 1972
#> 1223 2009
#> 1224 2000
#> 1225 2005
#> 1226 2011
#> 1227 2011
#> 1228 2013
#> 1229 1998
#> 1230 2005
#> 1231 1972
#> 1232 2010
#> 1233 2005
#> 1234 2011
#> 1235 1997
#> 1236 1997
#> 1237 2006
#> 1238 2012
#> 1239 2013
#> 1240 2012
#> 1241 2011
#> 1242 2011
#> 1243 2003
#> 1244 2011
#> 1245 2011
#> 1246 2013
#> 1247 2011
#> 1248 2005
#> 1249 2000
#> 1250 2003
#> 1251 2005
#> 1252 2006
#> 1253 2001
#> 1254 2005
#> 1255 2006
#> 1256 2006
#> 1257 2005
#> 1258 2006
#> 1259 2006
#> 1260 2005
#> 1261 2005
#> 1262 2004
#> 1263 1986
#> 1264 2011
#> 1265 2005
#> 1266 2005
#> 1267 2007
#> 1268 2005
#> 1269 2004
#> 1270 2007
#> 1271 2003
#> 1272 2004
#> 1273 2003
#> 1274 2013
#> 1275 2006
#> 1276 2005
#> 1277 2003
#> 1278 1999
#> 1279 2006
#> 1280 2006
#> 1281 2005
#> 1282 2002
#> 1283 2005
#> 1284 2004
#> 1285 1951
#> 1286 1953
#> 1287 1945
#> 1288 1921
#> 1289 1954
#> 1290 1955
#> 1291 1950
#> 1292 1945
#> 1293 1951
#> 1294 1947
#> 1295 1949
#> 1296 1975
#> 1297 1976
#> 1298 1978
#> 1299 1975
#> 1300 1970
#> 1301 1981
#> 1302 1973
#> 1303 1984
#> 1304 1968
#> 1305 1980
#> 1306 1985
#> 1307 1987
#> 1308 1970
#> 1309 1971
#> 1310 1973
#> 1311 1987
#> 1312 1978
#> 1313 1978
#> 1314 1971
#> 1315 1985
#> 1316 1986
#> 1317 2004
#> 1318 2010
#> 1319 2011
#> 1320 2004
#> 1321 2013
#> 1322 2001
#> 1323 2013
#> 1324 2010
#> 1325 2001
#> 1326 2003
#> 1327 2001
#> 1328 2003
#> 1329 2003
#> 1330 2005
#> 1331 2003
#> 1332 2002
#> 1333 2005
#> 1334 1931
#> 1335 1921
#> 1336 1941
#> 1337 1901
#> 1338 1909
#> 1339 1933
#> 1340 1933
#> 1341 1915
#> 1342 1919
#> 1343 1917
#> 1344 1897
#> 1345 1929
#> 1346 1927
#> 1347 1949
#> 1348 1930
#> 1349 1910
#> 1350 1945
#> 1351 1935
#> 1352 1915
#> 1353 1921
#> 1354 1928
#> 1355 1941
#> 1356 1917
#> 1357 1937
#> 1358 1949
#> 1359 1947
#> 1360 1902
#> 1361 1931
#> 1362 1915
#> 1363 1915
#> 1364 1913
#> 1365 1931
#> 1366 1925
#> 1367 1919
#> 1368 1936
#> 1369 1936
#> 1370 1917
#> 1371 1925
#> 1372 1921
#> 1373 1937
#> 1374 1921
#> 1375 1951
#> 1376 1920
#> 1377 1903
#> 1378 1921
#> 1379 1917
#> 1380 1951
#> 1381 2015
#> 1382 2015
#> 1383 1966
#> 1384 1964
#> 1385 1965
#> 1386 1965
#> 1387 1960
#> 1388 1965
#> 1389 1965
#> 1390 1965
#> 1391 1966
#> 1392 1964
#> 1393 1966
#> 1394 1963
#> 1395 1965
#> 1396 1966
#> 1397 1965
#> 1398 1965
#> 1399 1962
#> 1400 1965
#> 1401 1960
#> 1402 1965
#> 1403 1965
#> 1404 1966
#> 1405 1965
#> 1406 1965
#> 1407 1937
#> 1408 1965
#> 1409 1936
#> 1410 1961
#> 1411 2007
#> 1412 2011
#> 1413 2013
#> 1414 2011
#> 1415 2009
#> 1416 2001
#> 1417 2001
#> 1418 2001
#> 1419 2008
#> 1420 2004
#> 1421 2001
#> 1422 2002
#> 1423 2003
#> 1424 2007
#> 1425 2001
#> 1426 2010
#> 1427 2001
#> 1428 2009
#> 1429 2003
#> 1430 2003
#> 1431 2004
#> 1432 2003
#> 1433 2002
#> 1434 2001
#> 1435 2004
#> 1436 2009
#> 1437 2001
#> 1438 2006
#> 1439 2009
#> 1440 2003
#> 1441 2003
#> 1442 2003
#> 1443 2003
#> 1444 2005
#> 1445 2003
#> 1446 2008
#> 1447 2004
#> 1448 2006
#> 1449 2001
#> 1450 2003
#> 1451 2001
#> 1452 2002
#> 1453 2004
#> 1454 2005
#> 1455 2016
#> 1456 2016
#> 1457 2017
#> 1458 2017
#> 1459 2016
#> 1460 1977
#> 1461 1962
#> 1462 1937
#> 1463 1935
#> 1464 1937
#> 1465 1939
#> 1466 1937
#> 1467 1937
#> 1468 1941
#> 1469 1976
#> 1470 1972
#> 1471 1935
#> 1472 1959
#> 1473 1935
#> 1474 1935
#> 1475 1951
#> 1476 1952
#> 1477 1936
#> 1478 1939
#> 1479 1955
#> 1480 1937
#> 1481 1970
#> 1482 1935
#> 1483 1938
#> 1484 1959
#> 1485 1937
#> 1486 1937
#> 1487 1957
#> 1488 1937
#> 1489 1941
#> 1490 1937
#> 1491 1936
#> 1492 1937
#> 1493 1931
#> 1494 1937
#> 1495 1949
#> 1496 1937
#> 1497 1941
#> 1498 1936
#> 1499 1948
#> 1500 1937
#> 1501 1939
#> 1502 1951
#> 1503 1937
#> 1504 1937
#> 1505 1938
#> 1506 1943
#> 1507 1969
#> 1508 1935
#> 1509 1984
#> 1510 1980
#> 1511 1983
#> 1512 1893
#> 1513 1891
#> 1514 1891
#> 1515 1891
#> 1516 1891
#> 1517 1909
#> 1518 1891
#> 1519 1895
#> 1520 1922
#> 1521 1891
#> 1522 1891
#> 1523 1891
#> 1524 1891
#> 1525 1893
#> 1526 1888
#> 1527 1896
#> 1528 1891
#> 1529 1890
#> 1530 1888
#> 1531 1891
#> 1532 1889
#> 1533 1890
#> 1534 1889
#> 1535 1889
#> 1536 1891
#> 1537 1891
#> 1538 1891
#> 1539 1911
#> 1540 1905
#> 1541 1895
#> 1542 1909
#> 1543 1891
#> 1544 1891
#> 1545 1890
#> 1546 1891
#> 1547 1891
#> 1548 1889
#> 1549 1950
#> 1550 1891
#> 1551 1889
#> 1552 1892
#> 1553 1878
#> 1554 1890
#> 1555 1894
#> 1556 1890
#> 1557 1891
#> 1558 1889
#> 1559 1890
#> 1560 2012
#> 1561 2012
#> 1562 2008
#> 1563 2011
#> 1564 2011
#> 1565 2009
#> 1566 2009
#> 1567 2008
#> 1568 2008
#> 1569 2001
#> 1570 2005
#> 1571 2001
#> 1572 2010
#> 1573 2008
#> 1574 2010
#> 1575 2008
#> 1576 2012
#> 1577 2010
#> 1578 2009
#> 1579 2009
#> 1580 2010
#> 1581 2009
#> 1582 2009
#> 1583 2011
#> 1584 2008
#> 1585 2011
#> 1586 2007
#> 1587 2007
#> 1588 2010
#> 1589 1999
#> 1590 2011
#> 1591 2009
#> 1592 1903
#> 1593 1912
#> 1594 1911
#> 1595 1905
#> 1596 1913
#> 1597 1903
#> 1598 1905
#> 1599 1905
#> 1600 1910
#> 1601 1913
#> 1602 1907
#> 1603 1905
#> 1604 1904
#> 1605 1913
#> 1606 1910
#> 1607 1915
#> 1608 1905
#> 1609 1904
#> 1610 1903
#> 1611 1905
#> 1612 1903
#> 1613 1912
#> 1614 1907
#> 1615 1913
#> 1616 1905
#> 1617 1913
#> 1618 1905
#> 1619 1903
#> 1620 1912
#> 1621 1901
#> 1622 1907
#> 1623 1911
#> 1624 1908
#> 1625 1911
#> 1626 1905
#> 1627 1903
#> 1628 1904
#> 1629 1906
#> 1630 1905
#> 1631 1905
#> 1632 1907
#> 1633 1909
#> 1634 1904
#> 1635 1906
#> 1636 1905
#> 1637 1905
#> 1638 1905
#> 1639 1913
#> 1640 1964
#> 1641 1965
#> 1642 1963
#> 1643 1965
#> 1644 1963
#> 1645 1963
#> 1646 1964
#> 1647 1963
#> 1648 1963
#> 1649 1965
#> 1650 1965
#> 1651 1963
#> 1652 1964
#> 1653 1964
#> 1654 1963
#> 1655 1965
#> 1656 1963
#> 1657 1963
#> 1658 1965
#> 1659 1965
#> 1660 1965
#> 1661 1963
#> 1662 1963
#> 1663 1963
#> 1664 1964
#> 1665 1963
#> 1666 1962
#> 1667 1963
#> 1668 1965
#> 1669 1963
#> 1670 1965
#> 1671 1963
#> 1672 1963
#> 1673 1963
#> 1674 1965
#> 1675 1965
#> 1676 1963
#> 1677 1963
#> 1678 1963
#> 1679 1964
#> 1680 1963
#> 1681 1965
#> 1682 1963
#> 1683 1998
#> 1684 2000
#> 1685 1996
#> 1686 1998
#> 1687 1996
#> 1688 1997
#> 1689 1997
#> 1690 1997
#> 1691 1997
#> 1692 1997
#> 1693 2000
#> 1694 1996
#> 1695 2000
#> 1696 1997
#> 1697 1997
#> 1698 1997
#> 1699 1997
#> 1700 2000
#> 1701 1997
#> 1702 1997
#> 1703 2001
#> 1704 1999
#> 1705 1997
#> 1706 1998
#> 1707 1996
#> 1708 1999
#> 1709 1997
#> 1710 1997
#> 1711 1997
#> 1712 1998
#> 1713 1997
#> 1714 1997
#> 1715 1996
#> 1716 1996
#> 1717 1997
#> 1718 1996
#> 1719 1996
#> 1720 1997
#> 1721 1998
#> 1722 1997
#> 1723 1999
#> 1724 1996
#> 1725 1997
#> 1726 1997
#> 1727 1998
#> 1728 1997
#> 1729 1996
#> 1730 1996
#> 1731 1996
#> 1732 1997
#> 1733 1997
#> 1734 1997
#> 1735 1997
#> 1736 1997
#> 1737 1996
#> 1738 1997
#> 1739 1997
#> 1740 1996
#> 1741 1997
#> 1742 1997
#> 1743 1997
#> 1744 1997
#> 1745 1996
#> 1746 1996
#> 1747 1998
#> 1748 1999
#> 1749 1996
#> 1750 1997
#> 1751 1997
#> 1752 1996
#> 1753 1996
#> 1754 1996
#> 1755 1997
#> 1756 1975
#> 1757 1997
#> 1758 2007
#> 1759 1998
#> 1760 2004
#> 1761 2003
#> 1762 2007
#> 1763 2008
#> 1764 2009
#> 1765 2004
#> 1766 2008
#> 1767 2005
#> 1768 2010
#> 1769 2008
#> 1770 2010
#> 1771 2009
#> 1772 2008
#> 1773 2006
#> 1774 1980
#> 1775 2004
#> 1776 2010
#> 1777 2007
#> 1778 2009
#> 1779 2005
#> 1780 2009
#> 1781 2006
#> 1782 2006
#> 1783 1928
#> 1784 1947
#> 1785 1927
#> 1786 1931
#> 1787 1927
#> 1788 1935
#> 1789 1914
#> 1790 1929
#> 1791 1925
#> 1792 1935
#> 1793 1927
#> 1794 1927
#> 1795 1932
#> 1796 1924
#> 1797 1933
#> 1798 1935
#> 1799 1935
#> 1800 1931
#> 1801 1927
#> 1802 1948
#> 1803 1929
#> 1804 1929
#> 1805 1929
#> 1806 1931
#> 1807 1937
#> 1808 1936
#> 1809 1925
#> 1810 1946
#> 1811 1933
#> 1812 1927
#> 1813 1933
#> 1814 1935
#> 1815 1927
#> 1816 1933
#> 1817 1926
#> 1818 1933
#> 1819 1927
#> 1820 1939
#> 1821 1935
#> 1822 1925
#> 1823 1937
#> 1824 1927
#> 1825 1933
#> 1826 1925
#> 1827 1937
#> 1828 1995
#> 1829 1993
#> 1830 1993
#> 1831 1996
#> 1832 1997
#> 1833 1993
#> 1834 2001
#> 1835 2002
#> 1836 1999
#> 1837 1995
#> 1838 1990
#> 1839 2006
#> 1840 1992
#> 1841 2007
#> 1842 1989
#> 1843 2001
#> 1844 1994
#> 1845 1991
#> 1846 1996
#> 1847 1994
#> 1848 1996
#> 1849 2006
#> 1850 1998
#> 1851 2005
#> 1852 2005
#> 1853 2005
#> 1854 2006
#> 1855 2004
#> 1856 2007
#> 1857 2006
#> 1858 2008
#> 1859 2005
#> 1860 2008
#> 1861 2005
#> 1862 2008
#> 1863 2007
#> 1864 2003
#> 1865 1992
#> 1866 2007
#> 1867 2008
#> 1868 2001
#> 1869 1993
#> 1870 2005
#> 1871 2002
#> 1872 2006
#> 1873 2001
#> 1874 2007
#> 1875 2007
#> 1876 2008
#> 1877 1991
#> 1878 2004
#> 1879 2005
#> 1880 1995
#> 1881 2006
#> 1882 2007
#> 1883 2005
#> 1884 2006
#> 1885 1937
#> 1886 1936
#> 1887 1936
#> 1888 1936
#> 1889 1936
#> 1890 1938
#> 1891 1945
#> 1892 1937
#> 1893 1937
#> 1894 1936
#> 1895 1943
#> 1896 1936
#> 1897 1937
#> 1898 1937
#> 1899 1942
#> 1900 1937
#> 1901 1936
#> 1902 1936
#> 1903 1936
#> 1904 1936
#> 1905 1937
#> 1906 1938
#> 1907 1951
#> 1908 1938
#> 1909 1936
#> 1910 1953
#> 1911 1936
#> 1912 1936
#> 1913 1936
#> 1914 1937
#> 1915 1937
#> 1916 1936
#> 1917 1936
#> 1918 1936
#> 1919 1936
#> 1920 1951
#> 1921 1939
#> 1922 1937
#> 1923 1938
#> 1924 1937
#> 1925 1941
#> 1926 1936
#> 1927 1936
#> 1928 1938
#> 1929 1936
#> 1930 1936
#> 1931 1936
#> 1932 1936
#> 1933 2001
#> 1934 1999
#> 1935 1986
#> 1936 1999
#> 1937 2000
#> 1938 1985
#> 1939 2000
#> 1940 2000
#> 1941 1975
#> 1942 1979
#> 1943 1996
#> 1944 1988
#> 1945 1997
#> 1946 1999
#> 1947 1975
#> 1948 1987
#> 1949 1999
#> 1950 1984
#> 1951 1985
#> 1952 2000
#> 1953 1996
#> 1954 1988
#> 1955 1875
#> 1956 1903
#> 1957 1913
#> 1958 1870
#> 1959 1893
#> 1960 1878
#> 1961 1879
#> 1962 1889
#> 1963 1903
#> 1964 1907
#> 1965 1877
#> 1966 1881
#> 1967 1880
#> 1968 1885
#> 1969 1878
#> 1970 1898
#> 1971 1885
#> 1972 1874
#> 1973 1869
#> 1974 1873
#> 1975 1873
#> 1976 1877
#> 1977 1883
#> 1978 1901
#> 1979 1891
#> 1980 1893
#> 1981 1881
#> 1982 1877
#> 1983 1919
#> 1984 1881
#> 1985 1877
#> 1986 1889
#> 1987 1886
#> 1988 1890
#> 1989 1903
#> 1990 1885
#> 1991 1878
#> 1992 1878
#> 1993 1895
#> 1994 1877
#> 1995 1909
#> 1996 1898
#> 1997 1886
#> 1998 1872
#> 1999 1891
#> 2000 1881
#> 2001 1876
#> 2002 1901
#> 2003 1991
#> 2004 1996
#> 2005 1989
#> 2006 1993
#> 2007 1996
#> 2008 1994
#> 2009 1999
#> 2010 1994
#> 2011 1982
#> 2012 1990
#> 2013 1982
#> 2014 1994
#> 2015 1992
#> 2016 1996
#> 2017 1995
#> 2018 1993
#> 2019 1995
#> 2020 1996
#> 2021 1995
#> 2022 1994
#> 2023 1994
#> 2024 1994
#> 2025 1989
#> 2026 1986
#> 2027 1978
#> 2028 1982
#> 2029 2002
#> 2030 1979
#> 2031 1976
#> 2032 1981
#> 2033 1976
#> 2034 1982
#> 2035 1971
#> 2036 1972
#> 2037 1991
#> 2038 1990
#> 2039 1994
#> 2040 1989
#> 2041 1992
#> 2042 1999
#> 2043 1990
#> 2044 1992
#> 2045 1998
#> 2046 1993
#> 2047 1991
#> 2048 2000
#> 2049 1991
#> 2050 1993
#> 2051 1995
#> 2052 1991
#> 2053 1991
#> 2054 2013
#> 2055 2012
#> 2056 2009
#> 2057 2013
#> 2058 2013
#> 2059 2013
#> 2060 2012
#> 2061 2013
#> 2062 2013
#> 2063 2013
#> 2064 2013
#> 2065 2011
#> 2066 2012
#> 2067 2006
#> 2068 1998
#> 2069 2006
#> 2070 2007
#> 2071 1997
#> 2072 2004
#> 2073 1997
#> 2074 1997
#> 2075 1993
#> 2076 1999
#> 2077 1999
#> 2078 1995
#> 2079 2003
#> 2080 2002
#> 2081 2006
#> 2082 2006
#> 2083 2001
#> 2084 2001
#> 2085 2003
#> 2086 2008
#> 2087 1994
#> 2088 1998
#> 2089 2006
#> 2090 1999
#> 2091 1999
#> 2092 2003
#> 2093 1995
#> 2094 1999
#> 2095 1997
#> 2096 1999
#> 2097 1994
#> 2098 1993
#> 2099 2009
#> 2100 2005
#> 2101 2004
#> 2102 1999
#> 2103 2007
#> 2104 1998
#> 2105 2005
#> 2106 2002
#> 2107 2006
#> 2108 1995
#> 2109 1995
#> 2110 2002
#> 2111 2002
#> 2112 2001
#> 2113 1995
#> 2114 2003
#> 2115 1996
#> 2116 1996
#> 2117 1997
#> 2118 1994
#> 2119 1995
#> 2120 1992
#> 2121 1996
#> 2122 1996
#> 2123 1991
#> 2124 1995
#> 2125 1994
#> 2126 1997
#> 2127 1993
#> 2128 1996
#> 2129 1994
#> 2130 1995
#> 2131 1990
#> 2132 1997
#> 2133 1919
#> 2134 1919
#> 2135 1913
#> 2136 1911
#> 2137 1919
#> 2138 1915
#> 2139 1917
#> 2140 1921
#> 2141 1918
#> 2142 1919
#> 2143 1917
#> 2144 1921
#> 2145 1915
#> 2146 1917
#> 2147 1918
#> 2148 1914
#> 2149 1919
#> 2150 1916
#> 2151 1918
#> 2152 1919
#> 2153 1915
#> 2154 1918
#> 2155 1917
#> 2156 1919
#> 2157 1915
#> 2158 1919
#> 2159 1919
#> 2160 1916
#> 2161 1917
#> 2162 1921
#> 2163 1919
#> 2164 1915
#> 2165 1913
#> 2166 1919
#> 2167 1913
#> 2168 1923
#> 2169 1926
#> 2170 1919
#> 2171 1917
#> 2172 1917
#> 2173 1919
#> 2174 1917
#> 2175 1915
#> 2176 1918
#> 2177 1916
#> 2178 1918
#> 2179 1911
#> 2180 1919
#> 2181 1957
#> 2182 1955
#> 2183 1978
#> 2184 1970
#> 2185 1969
#> 2186 1953
#> 2187 1998
#> 2188 1981
#> 2189 1975
#> 2190 1998
#> 2191 1972
#> 2192 1980
#> 2193 2005
#> 2194 2010
#> 2195 1993
#> 2196 1974
#> 2197 1972
#> 2198 1977
#> 2199 1972
#> 2200 1987
#> 2201 1978
#> 2202 2002
#> 2203 1975
#> 2204 1983
#> 2205 1981
#> 2206 1973
#> 2207 1979
#> 2208 1981
#> 2209 2009
#> 2210 1974
#> 2211 2003
#> 2212 1976
#> 2213 1986
#> 2214 1978
#> 2215 1974
#> 2216 2001
#> 2217 1988
#> 2218 1972
#> 2219 1973
#> 2220 1985
#> 2221 1988
#> 2222 1980
#> 2223 1977
#> 2224 1965
#> 2225 1983
#> 2226 1982
#> 2227 1967
#> 2228 1965
#> 2229 2015
#> 2230 2013
#> 2231 2011
#> 2232 1992
#> 2233 1994
#> 2234 1992
#> 2235 1992
#> 2236 1996
#> 2237 1998
#> 2238 2000
#> 2239 1994
#> 2240 2002
#> 2241 2004
#> 2242 2006
#> 2243 2012
#> 2244 2010
#> 2245 2008
#> 2246 1992
#> 2247 1994
#> 2248 1996
#> 2249 1998
#> 2250 2000
#> 2251 2002
#> 2252 2004
#> 2253 2006
#> 2254 2008
#> 2255 2010
#> 2256 2012
#> 2257 1996
#> 2258 2000
#> 2259 1998
#> 2260 2002
#> 2261 2006
#> 2262 2004
#> 2263 2008
#> 2264 1997
#> 2265 2001
#> 2266 1996
#> 2267 2004
#> 2268 2001
#> 2269 2003
#> 2270 1998
#> 2271 2004
#> 2272 1996
#> 2273 2006
#> 2274 2004
#> 2275 2003
#> 2276 1992
#> 2277 1993
#> 2278 2005
#> 2279 1989
#> 2280 2008
#> 2281 2001
#> 2282 1999
#> 2283 2002
#> 2284 2003
#> 2285 2002
#> 2286 2003
#> 2287 2003
#> 2288 2003
#> 2289 2002
#> 2290 2004
#> 2291 2001
#> 2292 2002
#> 2293 2002
#> 2294 2004
#> 2295 2002
#> 2296 2002
#> 2297 2003
#> 2298 2002
#> 2299 2003
#> 2300 2002
#> 2301 2003
#> 2302 2005
#> 2303 2002
#> 2304 2003
#> 2305 2004
#> 2306 2008
#> 2307 2005
#> 2308 2003
#> 2309 2002
#> 2310 2000
#> 2311 1977
#> 2312 1978
#> 2313 1997
#> 2314 1979
#> 2315 1967
#> 2316 1984
#> 2317 1971
#> 2318 1973
#> 2319 1967
#> 2320 1969
#> 2321 1986
#> 2322 1981
#> 2323 1984
#> 2324 1976
#> 2325 1987
#> 2326 1969
#> 2327 1978
#> 2328 1979
#> 2329 1999
#> 2330 1979
#> 2331 1969
#> 2332 1967
#> 2333 1985
#> 2334 1968
#> 2335 1977
#> 2336 1973
#> 2337 1989
#> 2338 1971
#> 2339 1971
#> 2340 1979
#> 2341 1971
#> 2342 1965
#> 2343 1967
#> 2344 1973
#> 2345 1974
#> 2346 1973
#> 2347 1971
#> 2348 1998
#> 2349 1969
#> 2350 1980
#> 2351 1977
#> 2352 1989
#> 2353 1973
#> 2354 1991
#> 2355 1961
#> 2356 1975
#> 2357 1993
#> 2358 1961
#> 2359 1973
#> 2360 1982
#> 2361 1985
#> 2362 2001
#> 2363 2003
#> 2364 2005
#> 2365 2001
#> 2366 1995
#> 2367 2005
#> 2368 2003
#> 2369 1986
#> 2370 1988
#> 2371 2003
#> 2372 2001
#> 2373 2001
#> 2374 1995
#> 2375 2003
#> 2376 2002
#> 2377 2001
#> 2378 2014
#> 2379 2013
#> 2380 1970
#> 2381 1985
#> 2382 1979
#> 2383 1979
#> 2384 1972
#> 2385 1973
#> 2386 1993
#> 2387 1977
#> 2388 1991
#> 2389 1983
#> 2390 1982
#> 2391 1999
#> 2392 1996
#> 2393 1998
#> 2394 1997
#> 2395 1997
#> 2396 1997
#> 2397 2000
#> 2398 1995
#> 2399 1994
#> 2400 1995
#> 2401 1992
#> 2402 1993
#> 2403 1996
#> 2404 1995
#> 2405 1996
#> 2406 1993
#> 2407 1994
#> 2408 1996
#> 2409 1994
#> 2410 1995
#> 2411 1993
#> 2412 1993
#> 2413 1991
#> 2414 1995
#> 2415 1996
#> 2416 1993
#> 2417 1996
#> 2418 1995
#> 2419 1996
#> 2420 1995
#> 2421 1993
#> 2422 1995
#> 2423 2010
#> 2424 2007
#> 2425 2010
#> 2426 2007
#> 2427 2007
#> 2428 2015
#> 2429 2009
#> 2430 2007
#> 2431 2007
#> 2432 2013
#> 2433 2014
#> 2434 2007
#> 2435 2010
#> 2436 2007
#> 2437 1980
#> 2438 1998
#> 2439 1978
#> 2440 1979
#> 2441 1974
#> 2442 1973
#> 2443 1999
#> 2444 1976
#> 2445 1977
#> 2446 1978
#> 2447 2002
#> 2448 1977
#> 2449 1979
#> 2450 1977
#> 2451 1977
#> 2452 1978
#> 2453 1980
#> 2454 1978
#> 2455 1979
#> 2456 1975
#> 2457 1976
#> 2458 1977
#> 2459 1982
#> 2460 1978
#> 2461 1977
#> 2462 1979
#> 2463 1979
#> 2464 1979
#> 2465 1979
#> 2466 2001
#> 2467 1977
#> 2468 1979
#> 2469 1970
#> 2470 1977
#> 2471 1998
#> 2472 1999
#> 2473 1977
#> 2474 1978
#> 2475 1981
#> 2476 1978
#> 2477 1999
#> 2478 1983
#> 2479 1980
#> 2480 1980
#> 2481 1979
#> 2482 1979
#> 2483 1976
#> 2484 1973
#> 2485 1989
#> 2486 1998
#> 2487 1983
#> 2488 1981
#> 2489 1979
#> 2490 1985
#> 2491 1983
#> 2492 1978
#> 2493 1983
#> 2494 1994
#> 2495 1983
#> 2496 1983
#> 2497 1978
#> 2498 1974
#> 2499 1977
#> 2500 1994
#> 2501 1977
#> 2502 1977
#> 2503 1982
#> 2504 1979
#> 2505 1985
#> 2506 1979
#> 2507 1983
#> 2508 1983
#> 2509 1979
#> 2510 1984
#> 2511 1977
#> 2512 1985
#> 2513 1985
#> 2514 1984
#> 2515 1985
#> 2516 1995
#> 2517 2001
#> 2518 1987
#> 2519 1978
#> 2520 1990
#> 2521 1985
#> 2522 2001
#> 2523 1983
#> 2524 1979
#> 2525 1984
#> 2526 1979
#> 2527 1987
#> 2528 1999
#> 2529 2003
#> 2530 2003
#> 2531 2011
#> 2532 2003
#> 2533 1965
#> 2534 1965
#> 2535 1964
#> 2536 1965
#> 2537 1963
#> 2538 1963
#> 2539 1965
#> 2540 1965
#> 2541 1963
#> 2542 1965
#> 2543 1967
#> 2544 1963
#> 2545 1965
#> 2546 1965
#> 2547 1965
#> 2548 1965
#> 2549 1964
#> 2550 1964
#> 2551 1965
#> 2552 1964
#> 2553 1964
#> 2554 1964
#> 2555 1963
#> 2556 1966
#> 2557 1965
#> 2558 1965
#> 2559 1965
#> 2560 1965
#> 2561 1965
#> 2562 1964
#> 2563 1965
#> 2564 1964
#> 2565 1965
#> 2566 1965
#> 2567 1963
#> 2568 1965
#> 2569 1963
#> 2570 1967
#> 2571 1964
#> 2572 1965
#> 2573 1964
#> 2574 1963
#> 2575 1965
#> 2576 1965
#> 2577 1965
#> 2578 1966
#> 2579 1965
#> 2580 1965
#> 2581 1965
#> 2582 1963
#> 2583 1919
#> 2584 1912
#> 2585 1914
#> 2586 1909
#> 2587 1911
#> 2588 1911
#> 2589 1914
#> 2590 1914
#> 2591 1914
#> 2592 1911
#> 2593 1905
#> 2594 1911
#> 2595 1913
#> 2596 1913
#> 2597 1915
#> 2598 1911
#> 2599 1911
#> 2600 1902
#> 2601 1909
#> 2602 1907
#> 2603 1908
#> 2604 1909
#> 2605 1907
#> 2606 1907
#> 2607 1915
#> 2608 1901
#> 2609 1910
#> 2610 1909
#> 2611 1908
#> 2612 1909
#> 2613 1912
#> 2614 1909
#> 2615 1910
#> 2616 1909
#> 2617 1909
#> 2618 1915
#> 2619 1913
#> 2620 1911
#> 2621 1911
#> 2622 1911
#> 2623 1911
#> 2624 1907
#> 2625 1912
#> 2626 1914
#> 2627 1911
#> 2628 1915
#> 2629 1982
#> 2630 1984
#> 2631 1983
#> 2632 1983
#> 2633 1982
#> 2634 1983
#> 2635 1982
#> 2636 1982
#> 2637 1982
#> 2638 1983
#> 2639 1983
#> 2640 1984
#> 2641 1982
#> 2642 1983
#> 2643 1984
#> 2644 1981
#> 2645 1982
#> 2646 1984
#> 2647 1983
#> 2648 1983
#> 2649 1981
#> 2650 1981
#> 2651 1981
#> 2652 1983
#> 2653 1983
#> 2654 1983
#> 2655 1982
#> 2656 1983
#> 2657 1983
#> 2658 1983
#> 2659 1983
#> 2660 1981
#> 2661 1981
#> 2662 1983
#> 2663 1982
#> 2664 1983
#> 2665 1983
#> 2666 1983
#> 2667 1981
#> 2668 1983
#> 2669 1984
#> 2670 1981
#> 2671 1984
#> 2672 1984
#> 2673 1984
#> 2674 1982
#> 2675 1983
#> 2676 1981
#> 2677 1982
#> 2678 1911
#> 2679 1921
#> 2680 1915
#> 2681 1922
#> 2682 1933
#> 2683 1917
#> 2684 1937
#> 2685 1919
#> 2686 1921
#> 2687 1919
#> 2688 1899
#> 2689 1927
#> 2690 1921
#> 2691 1913
#> 2692 1928
#> 2693 1923
#> 2694 1920
#> 2695 1933
#> 2696 1919
#> 2697 1927
#> 2698 1917
#> 2699 1915
#> 2700 1923
#> 2701 1921
#> 2702 1923
#> 2703 1921
#> 2704 1917
#> 2705 1915
#> 2706 1916
#> 2707 1921
#> 2708 1915
#> 2709 1913
#> 2710 1927
#> 2711 1934
#> 2712 1921
#> 2713 1923
#> 2714 1949
#> 2715 1921
#> 2716 1919
#> 2717 1913
#> 2718 1919
#> 2719 1925
#> 2720 1925
#> 2721 1929
#> 2722 1927
#> 2723 1933
#> 2724 1924
#> 2725 1959
#> 2726 1964
#> 2727 1935
#> 2728 1949
#> 2729 1943
#> 2730 1923
#> 2731 1945
#> 2732 1941
#> 2733 1947
#> 2734 1921
#> 2735 1927
#> 2736 1936
#> 2737 1926
#> 2738 1941
#> 2739 1958
#> 2740 1939
#> 2741 1947
#> 2742 1947
#> 2743 1930
#> 2744 1956
#> 2745 1947
#> 2746 1947
#> 2747 1947
#> 2748 1939
#> 2749 1948
#> 2750 1943
#> 2751 1939
#> 2752 1925
#> 2753 1931
#> 2754 1933
#> 2755 1935
#> 2756 1939
#> 2757 1923
#> 2758 1923
#> 2759 1925
#> 2760 1931
#> 2761 1923
#> 2762 1937
#> 2763 1960
#> 2764 1935
#> 2765 1947
#> 2766 1939
#> 2767 1951
#> 2768 1923
#> 2769 1925
#> 2770 1924
#> 2771 1917
#> 2772 1923
#> 2773 1925
#> 2774 1923
#> 2775 1923
#> 2776 1928
#> 2777 1925
#> 2778 1921
#> 2779 1921
#> 2780 1917
#> 2781 1921
#> 2782 1922
#> 2783 1923
#> 2784 1925
#> 2785 1924
#> 2786 1918
#> 2787 1921
#> 2788 1919
#> 2789 1924
#> 2790 1925
#> 2791 1929
#> 2792 1921
#> 2793 1923
#> 2794 1925
#> 2795 1917
#> 2796 1927
#> 2797 1921
#> 2798 1923
#> 2799 1923
#> 2800 1919
#> 2801 1923
#> 2802 1919
#> 2803 1923
#> 2804 1923
#> 2805 1924
#> 2806 1927
#> 2807 1927
#> 2808 1927
#> 2809 1925
#> 2810 1929
#> 2811 1922
#> 2812 1927
#> 2813 1913
#> 2814 1923
#> 2815 1955
#> 2816 1973
#> 2817 1977
#> 2818 1951
#> 2819 1973
#> 2820 1953
#> 2821 1975
#> 2822 1951
#> 2823 1953
#> 2824 1953
#> 2825 1975
#> 2826 1951
#> 2827 1978
#> 2828 1973
#> 2829 1962
#> 2830 1951
#> 2831 1953
#> 2832 1951
#> 2833 1952
#> 2834 1998
#> 2835 2001
#> 2836 1999
#> 2837 1999
#> 2838 2001
#> 2839 1999
#> 2840 2001
#> 2841 2001
#> 2842 1998
#> 2843 2001
#> 2844 1998
#> 2845 2001
#> 2846 1998
#> 2847 1999
#> 2848 2000
#> 2849 1980
#> 2850 1977
#> 2851 1990
#> 2852 1993
#> 2853 1993
#> 2854 1988
#> 2855 1995
#> 2856 1989
#> 2857 1993
#> 2858 1995
#> 2859 1993
#> 2860 2005
#> 2861 1991
#> 2862 1999
#> 2863 1993
#> 2864 1973
#> 2865 1993
#> 2866 1985
#> 2867 1998
#> 2868 1985
#> 2869 1961
#> 2870 1992
#> 2871 1986
#> 2872 1973
#> 2873 1988
#> 2874 1998
#> 2875 1970
#> 2876 1990
#> 2877 2004
#> 2878 2006
#> 2879 2005
#> 2880 1992
#> 2881 2001
#> 2882 2000
#> 2883 2002
#> 2884 1999
#> 2885 2000
#> 2886 2005
#> 2887 2001
#> 2888 1998
#> 2889 1999
#> 2890 2007
#> 2891 2003
#> 2892 2001
#> 2893 2007
#> 2894 1991
#> 2895 2001
#> 2896 2005
#> 2897 2000
#> 2898 2003
#> 2899 2001
#> 2900 2000
#> 2901 2007
#> 2902 2000
#> 2903 2001
#> 2904 2013
#> 2905 2015
#> 2906 2016
#> 2907 2012
#> 2908 2014
#> 2909 2014
#> 2910 2015
#> 2911 2011
#> 2912 2014
#> 2913 2017
#> 2914 2016
#> 2915 2013
#> 2916 2011
#> 2917 2010
#> 2918 2013
#> 2919 2014
#> 2920 2002
#> 2921 1997
#> 2922 1999
#> 2923 1997
#> 2924 1999
#> 2925 1997
#> 2926 1998
#> 2927 2002
#> 2928 2002
#> 2929 2001
#> 2930 2000
#> 2931 1996
#> 2932 1998
#> 2933 1999
#> 2934 1988
#> 2935 1995
#> 2936 1997
#> 2937 1997
#> 2938 1999
#> 2939 2000
#> 2940 1997
#> 2941 1996
#> 2942 1999
#> 2943 1997
#> 2944 2001
#> 2945 1997
#> 2946 1998
#> 2947 1997
#> 2948 2000
#> 2949 1997
#> 2950 1997
#> 2951 2001
#> 2952 1989
#> 2953 1998
#> 2954 1999
#> 2955 2002
#> 2956 1997
#> 2957 2002
#> 2958 2002
#> 2959 2000
#> 2960 1995
#> 2961 1996
#> 2962 1998
#> 2963 1999
#> 2964 2001
#> 2965 1995
#> 2966 2000
#> 2967 1952
#> 2968 1953
#> 2969 1945
#> 2970 1955
#> 2971 1954
#> 2972 1955
#> 2973 1953
#> 2974 1947
#> 2975 1950
#> 2976 1951
#> 2977 1953
#> 2978 1954
#> 2979 1947
#> 2980 1949
#> 2981 1953
#> 2982 1954
#> 2983 1951
#> 2984 1951
#> 2985 1953
#> 2986 1952
#> 2987 1951
#> 2988 2017
#> 2989 2010
#> 2990 1985
#> 2991 1983
#> 2992 1983
#> 2993 1993
#> 2994 1991
#> 2995 1995
#> 2996 1998
#> 2997 2009
#> 2998 2009
#> 2999 2010
#> 3000 2014
#> 3001 2014
#> 3002 2015
#> 3003 2015
#> 3004 1969
#> 3005 1980
#> 3006 1981
#> 3007 1965
#> 3008 1966
#> 3009 1967
#> 3010 1967
#> 3011 1966
#> 3012 1967
#> 3013 1977
#> 3014 1966
#> 3015 1967
#> 3016 1967
#> 3017 1973
#> 3018 1972
#> 3019 1990
#> 3020 1967
#> 3021 1965
#> 3022 1967
#> 3023 1972
#> 3024 1967
#> 3025 1979
#> 3026 1967
#> 3027 2001
#> 3028 1967
#> 3029 1989
#> 3030 1970
#> 3031 1968
#> 3032 1966
#> 3033 1966
#> 3034 1967
#> 3035 1967
#> 3036 1967
#> 3037 1967
#> 3038 1967
#> 3039 1966
#> 3040 1966
#> 3041 1967
#> 3042 1967
#> 3043 1967
#> 3044 1967
#> 3045 1968
#> 3046 1967
#> 3047 1965
#> 3048 1967
#> 3049 1991
#> 3050 1989
#> 3051 1985
#> 3052 1985
#> 3053 1999
#> 3054 1985
#> 3055 2002
#> 3056 1986
#> 3057 1994
#> 3058 1987
#> 3059 1985
#> 3060 1999
#> 3061 1987
#> 3062 2002
#> 3063 1984
#> 3064 1987
#> 3065 1985
#> 3066 1998
#> 3067 1986
#> 3068 1989
#> 3069 1990
#> 3070 1985
#> 3071 1995
#> 3072 1986
#> 3073 1975
#> 3074 1957
#> 3075 1959
#> 3076 1965
#> 3077 1955
#> 3078 1962
#> 3079 1971
#> 3080 1973
#> 3081 1967
#> 3082 1961
#> 3083 1965
#> 3084 1959
#> 3085 1970
#> 3086 1967
#> 3087 1958
#> 3088 1957
#> 3089 1962
#> 3090 1956
#> 3091 1974
#> 3092 1957
#> 3093 1980
#> 3094 1971
#> 3095 1969
#> 3096 1957
#> 3097 1956
#> 3098 1969
#> 3099 1956
#> 3100 1959
#> 3101 1963
#> 3102 1980
#> 3103 1959
#> 3104 1957
#> 3105 1967
#> 3106 1957
#> 3107 1959
#> 3108 1959
#> 3109 1971
#> 3110 1969
#> 3111 1989
#> 3112 1959
#> 3113 1965
#> 3114 1957
#> 3115 1966
#> 3116 1969
#> 3117 1979
#> 3118 1976
#> 3119 1979
#> 3120 1974
#> 3121 1975
#> 3122 1967
#> 3123 1969
#> 3124 1974
#> 3125 1977
#> 3126 1985
#> 3127 1976
#> 3128 1985
#> 3129 1978
#> 3130 1967
#> 3131 1976
#> 3132 1986
#> 3133 1961
#> 3134 1975
#> 3135 1975
#> 3136 1984
#> 3137 1973
#> 3138 1976
#> 3139 1975
#> 3140 1975
#> 3141 1974
#> 3142 1985
#> 3143 1965
#> 3144 1990
#> 3145 1977
#> 3146 1960
#> 3147 1963
#> 3148 1976
#> 3149 1974
#> 3150 1975
#> 3151 1973
#> 3152 1967
#> 3153 1981
#> 3154 1974
#> 3155 1974
#> 3156 1975
#> 3157 1988
#> 3158 1972
#> 3159 1975
#> 3160 1971
#> 3161 1975
#> 3162 1977
#> 3163 1963
#> 3164 1963
#> 3165 1963
#> 3166 1985
#> 3167 1985
#> 3168 1978
#> 3169 1987
#> 3170 1987
#> 3171 1979
#> 3172 1994
#> 3173 1984
#> 3174 1978
#> 3175 1981
#> 3176 1992
#> 3177 1984
#> 3178 1987
#> 3179 1986
#> 3180 1984
#> 3181 1985
#> 3182 1984
#> 3183 1999
#> 3184 1989
#> 3185 2000
#> 3186 1994
#> 3187 1979
#> 3188 1982
#> 3189 1985
#> 3190 1982
#> 3191 1981
#> 3192 1991
#> 3193 1995
#> 3194 1985
#> 3195 1984
#> 3196 1989
#> 3197 1986
#> 3198 1979
#> 3199 1997
#> 3200 1986
#> 3201 1984
#> 3202 1985
#> 3203 1983
#> 3204 1979
#> 3205 1984
#> 3206 1982
#> 3207 1989
#> 3208 1997
#> 3209 1979
#> 3210 1999
#> 3211 1983
#> 3212 1984
#> 3213 1989
#> 3214 1981
#> 3215 1982
#> 3216 1915
#> 3217 1899
#> 3218 1909
#> 3219 1874
#> 3220 1889
#> 3221 1872
#> 3222 1907
#> 3223 1915
#> 3224 1916
#> 3225 1887
#> 3226 1883
#> 3227 1897
#> 3228 1902
#> 3229 1874
#> 3230 1896
#> 3231 1910
#> 3232 1875
#> 3233 1902
#> 3234 1852
#> 3235 1871
#> 3236 1885
#> 3237 1918
#> 3238 1905
#> 3239 1883
#> 3240 1887
#> 3241 1873
#> 3242 1871
#> 3243 1875
#> 3244 1891
#> 3245 1874
#> 3246 1907
#> 3247 1883
#> 3248 1877
#> 3249 1907
#> 3250 1889
#> 3251 1895
#> 3252 1883
#> 3253 1915
#> 3254 1883
#> 3255 1905
#> 3256 1915
#> 3257 1890
#> 3258 1867
#> 3259 1908
#> 3260 1871
#> 3261 1897
#> 3262 1879
#> 3263 1876
#> 3264 2000
#> 3265 2000
#> 3266 1983
#> 3267 1982
#> 3268 1983
#> 3269 1986
#> 3270 1982
#> 3271 1986
#> 3272 1994
#> 3273 1982
#> 3274 1983
#> 3275 1982
#> 3276 1994
#> 3277 1983
#> 3278 1983
#> 3279 1994
#> 3280 1983
#> 3281 1992
#> 3282 1982
#> 3283 1994
#> 3284 1983
#> 3285 1983
#> 3286 1982
#> 3287 1983
#> 3288 1983
#> 3289 1983
#> 3290 2000
#> 3291 1983
#> 3292 1982
#> 3293 2005
#> 3294 1994
#> 3295 1983
#> 3296 1994
#> 3297 1983
#> 3298 1983
#> 3299 1982
#> 3300 1983
#> 3301 1983
#> 3302 1982
#> 3303 1983
#> 3304 1982
#> 3305 1985
#> 3306 1994
#> 3307 1982
#> 3308 2002
#> 3309 2005
#> 3310 1987
#> 3311 1994
#> 3312 1956
#> 3313 1939
#> 3314 1953
#> 3315 1939
#> 3316 1941
#> 3317 1939
#> 3318 1945
#> 3319 1943
#> 3320 1943
#> 3321 1951
#> 3322 1943
#> 3323 1945
#> 3324 1953
#> 3325 1946
#> 3326 1942
#> 3327 1939
#> 3328 1941
#> 3329 1943
#> 3330 1941
#> 3331 1959
#> 3332 1956
#> 3333 1955
#> 3334 1957
#> 3335 1943
#> 3336 1945
#> 3337 1945
#> 3338 1937
#> 3339 1957
#> 3340 1941
#> 3341 1945
#> 3342 1945
#> 3343 1937
#> 3344 1956
#> 3345 1941
#> 3346 1943
#> 3347 1945
#> 3348 1955
#> 3349 1942
#> 3350 1951
#> 3351 1943
#> 3352 1949
#> 3353 1949
#> 3354 1975
#> 3355 1994
#> 3356 1995
#> 3357 1987
#> 3358 1976
#> 3359 1990
#> 3360 1980
#> 3361 1996
#> 3362 1996
#> 3363 1985
#> 3364 2001
#> 3365 1990
#> 3366 1991
#> 3367 1995
#> 3368 1995
#> 3369 1985
#> 3370 2001
#> 3371 2001
#> 3372 1986
#> 3373 1994
#> 3374 1996
#> 3375 1995
#> 3376 1988
#> 3377 1989
#> 3378 1994
#> 3379 1991
#> 3380 1982
#> 3381 2010
#> 3382 1982
#> 3383 1980
#> 3384 1983
#> 3385 1983
#> 3386 1982
#> 3387 1980
#> 3388 1982
#> 3389 1993
#> 3390 1982
#> 3391 1989
#> 3392 1985
#> 3393 1984
#> 3394 2004
#> 3395 2006
#> 3396 1985
#> 3397 1987
#> 3398 1983
#> 3399 1997
#> 3400 1989
#> 3401 1985
#> 3402 1983
#> 3403 1996
#> 3404 1988
#> 3405 1984
#> 3406 1992
#> 3407 1988
#> 3408 1985
#> 3409 1985
#> 3410 1986
#> 3411 1983
#> 3412 1991
#> 3413 1983
#> 3414 1991
#> 3415 1984
#> 3416 1983
#> 3417 1988
#> 3418 1982
#> 3419 2005
#> 3420 1945
#> 3421 1927
#> 3422 1939
#> 3423 1940
#> 3424 1915
#> 3425 1945
#> 3426 1945
#> 3427 1931
#> 3428 1941
#> 3429 1947
#> 3430 1939
#> 3431 1935
#> 3432 1892
#> 3433 1940
#> 3434 1937
#> 3435 1942
#> 3436 1933
#> 3437 1941
#> 3438 1935
#> 3439 1931
#> 3440 1929
#> 3441 1893
#> 3442 1933
#> 3443 1923
#> 3444 1939
#> 3445 1941
#> 3446 1943
#> 3447 1932
#> 3448 1948
#> 3449 1931
#> 3450 1921
#> 3451 1997
#> 3452 2002
#> 3453 1981
#> 3454 1986
#> 3455 1989
#> 3456 1994
#> 3457 1994
#> 3458 2000
#> 3459 1981
#> 3460 1995
#> 3461 1995
#> 3462 1982
#> 3463 1998
#> 3464 1983
#> 3465 2000
#> 3466 1986
#> 3467 1993
#> 3468 1971
#> 3469 1983
#> 3470 1971
#> 3471 1974
#> 3472 1973
#> 3473 1973
#> 3474 1969
#> 3475 1974
#> 3476 1985
#> 3477 1972
#> 3478 1971
#> 3479 2002
#> 3480 1973
#> 3481 1972
#> 3482 1973
#> 3483 2002
#> 3484 2005
#> 3485 1999
#> 3486 2010
#> 3487 1999
#> 3488 2000
#> 3489 1999
#> 3490 1999
#> 3491 2003
#> 3492 2000
#> 3493 1999
#> 3494 1998
#> 3495 2002
#> 3496 2001
#> 3497 1999
#> 3498 1999
#> 3499 2005
#> 3500 2001
#> 3501 2002
#> 3502 1999
#> 3503 2007
#> 3504 2000
#> 3505 2001
#> 3506 1999
#> 3507 1997
#> 3508 2007
#> 3509 1996
#> 3510 2009
#> 3511 2002
#> 3512 2005
#> 3513 1999
#> 3514 2010
#> 3515 1999
#> 3516 2000
#> 3517 1999
#> 3518 1999
#> 3519 1998
#> 3520 2000
#> 3521 1999
#> 3522 1998
#> 3523 2002
#> 3524 2006
#> 3525 2001
#> 3526 2006
#> 3527 1999
#> 3528 1999
#> 3529 2006
#> 3530 2001
#> 3531 2002
#> 3532 1999
#> 3533 2007
#> 3534 2000
#> 3535 2005
#> 3536 1999
#> 3537 2001
#> 3538 2005
#> 3539 2004
#> 3540 1972
#> 3541 1979
#> 3542 1971
#> 3543 1973
#> 3544 1992
#> 3545 1972
#> 3546 1972
#> 3547 1971
#> 3548 1971
#> 3549 1971
#> 3550 1972
#> 3551 1971
#> 3552 1971
#> 3553 1971
#> 3554 1973
#> 3555 1991
#> 3556 1971
#> 3557 1972
#> 3558 1971
#> 3559 1971
#> 3560 1977
#> 3561 1974
#> 3562 1971
#> 3563 1971
#> 3564 1973
#> 3565 1971
#> 3566 1971
#> 3567 1972
#> 3568 1971
#> 3569 2006
#> 3570 2006
#> 3571 2008
#> 3572 1990
#> 3573 2005
#> 3574 2007
#> 3575 2000
#> 3576 1990
#> 3577 1997
#> 3578 2001
#> 3579 2002
#> 3580 2001
#> 3581 1990
#> 3582 2001
#> 3583 1990
#> 3584 2002
#> 3585 1990
#> 3586 2006
#> 3587 2006
#> 3588 1990
#> 3589 2001
#> 3590 2008
#> 3591 2001
#> 3592 2008
#> 3593 2008
#> 3594 2001
#> 3595 1990
#> 3596 2004
#> 3597 2007
#> 3598 2000
#> 3599 1990
#> 3600 1992
#> 3601 1992
#> 3602 1992
#> 3603 1992
#> 3604 1992
#> 3605 1994
#> 3606 1992
#> 3607 1992
#> 3608 1992
#> 3609 1992
#> 3610 1992
#> 3611 1996
#> 3612 1998
#> 3613 2000
#> 3614 1994
#> 3615 1992
#> 3616 1992
#> 3617 1992
#> 3618 1992
#> 3619 1992
#> 3620 1994
#> 3621 1992
#> 3622 1992
#> 3623 1996
#> 3624 1994
#> 3625 1992
#> 3626 1996
#> 3627 1992
#> 3628 1992
#> 3629 1994
#> 3630 1994
#> 3631 1994
#> 3632 1992
#> 3633 1994
#> 3634 1994
#> 3635 1992
#> 3636 1994
#> 3637 1996
#> 3638 1992
#> 3639 1992
#> 3640 1994
#> 3641 1996
#> 3642 1998
#> 3643 1996
#> 3644 1992
#> 3645 1998
#> 3646 1994
#> 3647 1992
#> 3648 1992
#> 3649 1994
#> 3650 1987
#> 3651 1991
#> 3652 1989
#> 3653 1991
#> 3654 1989
#> 3655 1980
#> 3656 1991
#> 3657 1988
#> 3658 1989
#> 3659 1982
#> 3660 1988
#> 3661 1990
#> 3662 1988
#> 3663 1980
#> 3664 1984
#> 3665 1991
#> 3666 1970
#> 3667 1990
#> 3668 1995
#> 3669 2013
#> 3670 2013
#> 3671 1989
#> 3672 1994
#> 3673 1998
#> 3674 1983
#> 3675 1981
#> 3676 1979
#> 3677 1985
#> 3678 2000
#> 3679 1983
#> 3680 1978
#> 3681 1978
#> 3682 1983
#> 3683 1994
#> 3684 1983
#> 3685 1983
#> 3686 1978
#> 3687 1974
#> 3688 1977
#> 3689 2003
#> 3690 1994
#> 3691 1977
#> 3692 1977
#> 3693 1982
#> 3694 1979
#> 3695 1985
#> 3696 1979
#> 3697 1978
#> 3698 1983
#> 3699 1983
#> 3700 1979
#> 3701 1984
#> 3702 1977
#> 3703 1985
#> 3704 1985
#> 3705 1984
#> 3706 2000
#> 3707 1985
#> 3708 1995
#> 3709 2001
#> 3710 1987
#> 3711 1978
#> 3712 1990
#> 3713 1985
#> 3714 2001
#> 3715 1983
#> 3716 1979
#> 3717 1984
#> 3718 1979
#> 3719 1987
#> 3720 1999
#> 3721 2001
#> 3722 2005
#> 3723 2005
#> 3724 2005
#> 3725 2006
#> 3726 2006
#> 3727 2006
#> 3728 2006
#> 3729 2006
#> 3730 2004
#> 3731 2005
#> 3732 2006
#> 3733 2005
#> 3734 2006
#> 3735 2005
#> 3736 2006
#> 3737 2005
#> 3738 2006
#> 3739 2006
#> 3740 2006
#> 3741 2003
#> 3742 2006
#> 3743 2004
#> 3744 2005
#> 3745 2006
#> 3746 1984
#> 3747 1972
#> 3748 1986
#> 3749 1987
#> 3750 1965
#> 3751 1981
#> 3752 1978
#> 3753 1974
#> 3754 1977
#> 3755 1988
#> 3756 1967
#> 3757 1986
#> 3758 1973
#> 3759 1977
#> 3760 1982
#> 3761 1978
#> 3762 1976
#> 3763 1972
#> 3764 1992
#> 3765 1968
#> 3766 1967
#> 3767 1976
#> 3768 1974
#> 3769 1990
#> 3770 1981
#> 3771 1978
#> 3772 1978
#> 3773 1969
#> 3774 1990
#> 3775 1971
#> 3776 1981
#> 3777 1966
#> 3778 1983
#> 3779 1975
#> 3780 1976
#> 3781 1981
#> 3782 1977
#> 3783 1976
#> 3784 1972
#> 3785 1982
#> 3786 1991
#> 3787 1976
#> 3788 1979
#> 3789 1986
#> 3790 1990
#> 3791 1976
#> 3792 1973
#> 3793 1981
#> 3794 1975
#> 3795 1985
#> 3796 1960
#> 3797 1965
#> 3798 1960
#> 3799 1959
#> 3800 1937
#> 3801 1959
#> 3802 1955
#> 3803 1965
#> 3804 1954
#> 3805 1954
#> 3806 1955
#> 3807 1956
#> 3808 1953
#> 3809 1963
#> 3810 1948
#> 3811 1959
#> 3812 1955
#> 3813 1965
#> 3814 1955
#> 3815 1953
#> 3816 1952
#> 3817 1964
#> 3818 1952
#> 3819 1957
#> 3820 1962
#> 3821 1994
#> 3822 2002
#> 3823 1991
#> 3824 1999
#> 3825 1989
#> 3826 1989
#> 3827 2003
#> 3828 1995
#> 3829 1994
#> 3830 1990
#> 3831 1997
#> 3832 2007
#> 3833 1992
#> 3834 1995
#> 3835 1988
#> 3836 1990
#> 3837 1992
#> 3838 1998
#> 3839 2000
#> 3840 2000
#> 3841 1999
#> 3842 2001
#> 3843 2001
#> 3844 1999
#> 3845 2000
#> 3846 1999
#> 3847 2001
#> 3848 1999
#> 3849 1999
#> 3850 2000
#> 3851 2001
#> 3852 1999
#> 3853 2001
#> 3854 2001
#> 3855 2001
#> 3856 2001
#> 3857 2000
#> 3858 1999
#> 3859 1991
#> 3860 1991
#> 3861 1986
#> 3862 1987
#> 3863 1986
#> 3864 1986
#> 3865 1985
#> 3866 1985
#> 3867 1993
#> 3868 1985
#> 3869 1984
#> 3870 1995
#> 3871 1986
#> 3872 1991
#> 3873 1994
#> 3874 1988
#> 3875 1992
#> 3876 1999
#> 3877 1987
#> 3878 1973
#> 3879 1999
#> 3880 1999
#> 3881 1985
#> 3882 1995
#> 3883 1990
#> 3884 1994
#> 3885 1998
#> 3886 1997
#> 3887 1997
#> 3888 1996
#> 3889 1996
#> 3890 1989
#> 3891 1967
#> 3892 1868
#> 3893 1860
#> 3894 1921
#> 3895 1846
#> 3896 1839
#> 3897 1844
#> 3898 1855
#> 3899 1861
#> 3900 1822
#> 3901 1852
#> 3902 1897
#> 3903 1867
#> 3904 1848
#> 3905 1863
#> 3906 1854
#> 3907 1851
#> 3908 1882
#> 3909 1887
#> 3910 1845
#> 3911 1889
#> 3912 1829
#> 3913 1908
#> 3914 1870
#> 3915 1913
#> 3916 1891
#> 3917 1890
#> 3918 1844
#> 3919 1856
#> 3920 1884
#> 3921 1886
#> 3922 1852
#> 3923 1976
#> 3924 1973
#> 3925 1973
#> 3926 1977
#> 3927 1975
#> 3928 1973
#> 3929 1974
#> 3930 1972
#> 3931 1973
#> 3932 1995
#> 3933 1973
#> 3934 1974
#> 3935 1973
#> 3936 1994
#> 3937 1975
#> 3938 1973
#> 3939 1975
#> 3940 1974
#> 3941 1975
#> 3942 1974
#> 3943 1973
#> 3944 1973
#> 3945 1991
#> 3946 1982
#> 3947 1979
#> 3948 1995
#> 3949 1977
#> 3950 1974
#> 3951 1973
#> 3952 1978
#> 3953 1974
#> 3954 1974
#> 3955 1979
#> 3956 1974
#> 3957 1974
#> 3958 1973
#> 3959 1975
#> 3960 1975
#> 3961 1977
#> 3962 2012
#> 3963 2007
#> 3964 2006
#> 3965 2009
#> 3966 2011
#> 3967 2006
#> 3968 2009
#> 3969 2006
#> 3970 1970
#> 3971 1968
#> 3972 1970
#> 3973 1968
#> 3974 1969
#> 3975 1973
#> 3976 1970
#> 3977 1970
#> 3978 1935
#> 3979 1927
#> 3980 1953
#> 3981 1923
#> 3982 1981
#> 3983 1943
#> 3984 1945
#> 3985 1933
#> 3986 1945
#> 3987 1998
#> 3988 1943
#> 3989 1993
#> 3990 1948
#> 3991 1941
#> 3992 1945
#> 3993 1945
#> 3994 1933
#> 3995 1935
#> 3996 1935
#> 3997 1929
#> 3998 1929
#> 3999 1924
#> 4000 1975
#> 4001 1931
#> 4002 1923
#> 4003 1933
#> 4004 1961
#> 4005 1927
#> 4006 1923
#> 4007 1959
#> 4008 1948
#> 4009 1925
#> 4010 1923
#> 4011 1943
#> 4012 2008
#> 4013 1931
#> 4014 1922
#> 4015 1935
#> 4016 1927
#> 4017 1923
#> 4018 1881
#> 4019 1913
#> 4020 1887
#> 4021 1885
#> 4022 1889
#> 4023 1893
#> 4024 1885
#> 4025 1887
#> 4026 1920
#> 4027 1919
#> 4028 1881
#> 4029 1887
#> 4030 1900
#> 4031 1903
#> 4032 1878
#> 4033 1880
#> 4034 1891
#> 4035 1884
#> 4036 1887
#> 4037 1883
#> 4038 1885
#> 4039 1892
#> 4040 1917
#> 4041 1895
#> 4042 1905
#> 4043 1895
#> 4044 1895
#> 4045 1890
#> 4046 1893
#> 4047 1868
#> 4048 1935
#> 4049 1885
#> 4050 1868
#> 4051 1890
#> 4052 1887
#> 4053 1876
#> 4054 1888
#> 4055 1875
#> 4056 1901
#> 4057 1925
#> 4058 1889
#> 4059 1909
#> 4060 1882
#> 4061 1887
#> 4062 1888
#> 4063 1881
#> 4064 1885
#> 4065 1905
#> 4066 2015
#> 4067 2013
#> 4068 2016
#> 4069 2015
#> 4070 2015
#> 4071 2013
#> 4072 2013
#> 4073 2013
#> 4074 2015
#> 4075 2014
#> 4076 2014
#> 4077 2016
#> 4078 2000
#> 4079 1984
#> 4080 1985
#> 4081 1982
#> 4082 1981
#> 4083 1986
#> 4084 1982
#> 4085 1981
#> 4086 1986
#> 4087 1984
#> 4088 1983
#> 4089 1982
#> 4090 1992
#> 4091 1989
#> 4092 1981
#> 4093 1982
#> 4094 1983
#> 4095 1985
#> 4096 1986
#> 4097 2014
#> 4098 1993
#> 4099 1985
#> 4100 1989
#> 4101 1982
#> 4102 1986
#> 4103 1987
#> 4104 1983
#> 4105 1982
#> 4106 1984
#> 4107 1990
#> 4108 1982
#> 4109 1989
#> 4110 1981
#> 4111 1982
#> 4112 1985
#> 4113 1996
#> 4114 1999
#> 4115 2009
#> 4116 2004
#> 4117 2007
#> 4118 2009
#> 4119 1997
#> 4120 2009
#> 4121 1993
#> 4122 1994
#> 4123 2009
#> 4124 1995
#> 4125 2001
#> 4126 1988
#> 4127 2009
#> 4128 2003
#> 4129 1995
#> 4130 2007
#> 4131 2008
#> 4132 1989
#> 4133 2009
#> 4134 2008
#> 4135 1988
#> 4136 1999
#> 4137 2008
#> 4138 2009
#> 4139 2003
#> 4140 1996
#> 4141 2003
#> 4142 2007
#> 4143 2008
#> 4144 2009
#> 4145 2009
#> 4146 2007
#> 4147 2009
#> 4148 2006
#> 4149 2004
#> 4150 2007
#> 4151 2000
#> 4152 2007
#> 4153 1989
#> 4154 2004
#> 4155 2009
#> 4156 2006
#> 4157 2009
#> 4158 1978
#> 4159 2007
#> 4160 2003
#> 4161 2002
#> 4162 2008
#> 4163 1997
#> 4164 2003
#> 4165 2008
#> 4166 2004
#> 4167 2008
#> 4168 2008
#> 4169 1989
#> 4170 1997
#> 4171 2006
#> 4172 1996
#> 4173 2008
#> 4174 2008
#> 4175 2008
#> 4176 1997
#> 4177 1996
#> 4178 2003
#> 4179 2000
#> 4180 1911
#> 4181 1910
#> 4182 1911
#> 4183 1912
#> 4184 1972
#> 4185 1912
#> 4186 1970
#> 4187 1910
#> 4188 1908
#> 4189 1915
#> 4190 1918
#> 4191 1913
#> 4192 1914
#> 4193 1908
#> 4194 1904
#> 4195 1912
#> 4196 1905
#> 4197 1911
#> 4198 1914
#> 4199 1912
#> 4200 1907
#> 4201 1902
#> 4202 1898
#> 4203 1900
#> 4204 1912
#> 4205 1968
#> 4206 1904
#> 4207 1909
#> 4208 1909
#> 4209 1909
#> 4210 1910
#> 4211 1955
#> 4212 1903
#> 4213 1901
#> 4214 1917
#> 4215 1909
#> 4216 1905
#> 4217 1915
#> 4218 1907
#> 4219 1908
#> 4220 1912
#> 4221 1906
#> 4222 1911
#> 4223 1910
#> 4224 1911
#> 4225 1905
#> 4226 1901
#> 4227 1902
#> 4228 1907
#> 4229 1905
#> 4230 1907
#> 4231 1909
#> 4232 1909
#> 4233 1911
#> 4234 1938
#> 4235 1913
#> 4236 1915
#> 4237 1907
#> 4238 1908
#> 4239 1908
#> 4240 1901
#> 4241 1906
#> 4242 1947
#> 4243 1915
#> 4244 1905
#> 4245 1909
#> 4246 1905
#> 4247 1937
#> 4248 1915
#> 4249 1912
#> 4250 1907
#> 4251 1915
#> 4252 1903
#> 4253 1911
#> 4254 2010
#> 4255 2005
#> 4256 2003
#> 4257 2011
#> 4258 2006
#> 4259 2005
#> 4260 2000
#> 4261 2003
#> 4262 2004
#> 4263 2004
#> 4264 2009
#> 4265 2007
#> 4266 2001
#> 4267 2001
#> 4268 2001
#> 4269 2015
#> 4270 2003
#> 4271 1981
#> 4272 1981
#> 4273 1974
#> 4274 1978
#> 4275 1994
#> 4276 1993
#> 4277 1981
#> 4278 1995
#> 4279 1986
#> 4280 2011
#> 4281 2009
#> 4282 1999
#> 4283 1995
#> 4284 1998
#> 4285 2006
#> 4286 1995
#> 4287 1996
#> 4288 2005
#> 4289 2006
#> 4290 1984
#> 4291 1981
#> 4292 1973
#> 4293 1985
#> 4294 1992
#> 4295 1973
#> 4296 1974
#> 4297 1975
#> 4298 2013
#> 4299 1989
#> 4300 1981
#> 4301 1981
#> 4302 1973
#> 4303 2012
#> 4304 1982
#> 4305 1985
#> 4306 1967
#> 4307 1959
#> 4308 1983
#> 4309 1961
#> 4310 1967
#> 4311 1968
#> 4312 1968
#> 4313 1959
#> 4314 1963
#> 4315 1950
#> 4316 1969
#> 4317 1969
#> 4318 1976
#> 4319 1967
#> 4320 1969
#> 4321 1965
#> 4322 1965
#> 4323 1968
#> 4324 1971
#> 4325 1976
#> 4326 1967
#> 4327 1958
#> 4328 1967
#> 4329 2003
#> 4330 2002
#> 4331 2003
#> 4332 2001
#> 4333 2003
#> 4334 2002
#> 4335 2001
#> 4336 2000
#> 4337 2002
#> 4338 2001
#> 4339 2002
#> 4340 2002
#> 4341 2003
#> 4342 2003
#> 4343 2003
#> 4344 2001
#> 4345 2002
#> 4346 2003
#> 4347 2004
#> 4348 2001
#> 4349 2001
#> 4350 2003
#> 4351 2003
#> 4352 2004
#> 4353 2001
#> 4354 2001
#> 4355 2004
#> 4356 2003
#> 4357 2001
#> 4358 2002
#> 4359 2002
#> 4360 2004
#> 4361 2000
#> 4362 2005
#> 4363 2000
#> 4364 2003
#> 4365 2000
#> 4366 2000
#> 4367 2001
#> 4368 2003
#> 4369 2005
#> 4370 2001
#> 4371 1997
#> 4372 2001
#> 4373 2005
#> 4374 2001
#> 4375 2002
#> 4376 2001
#> 4377 2001
#> 4378 2001
#> 4379 2000
#> 4380 1999
#> 4381 2001
#> 4382 2003
#> 4383 2001
#> 4384 2003
#> 4385 2004
#> 4386 2001
#> 4387 2001
#> 4388 1999
#> 4389 2001
#> 4390 2005
#> 4391 2003
#> 4392 2000
#> 4393 2001
#> 4394 2002
#> 4395 2002
#> 4396 2000
#> 4397 2001
#> 4398 2001
#> 4399 2004
#> 4400 2001
#> 4401 2000
#> 4402 2004
#> 4403 2005
#> 4404 2008
#> 4405 1987
#> 4406 1987
#> 4407 1966
#> 4408 1986
#> 4409 1963
#> 4410 1969
#> 4411 1963
#> 4412 1965
#> 4413 1993
#> 4414 1964
#> 4415 1967
#> 4416 1971
#> 4417 1963
#> 4418 1970
#> 4419 1967
#> 4420 1965
#> 4421 1965
#> 4422 1996
#> 4423 1987
#> 4424 1988
#> 4425 1989
#> 4426 1962
#> 4427 1985
#> 4428 1963
#> 4429 1963
#> 4430 1961
#> 4431 1986
#> 4432 1967
#> 4433 1963
#> 4434 1965
#> 4435 1993
#> 4436 1986
#> 4437 1987
#> 4438 1967
#> 4439 1983
#> 4440 1996
#> 4441 1987
#> 4442 1987
#> 4443 1986
#> 4444 1993
#> 4445 1965
#> 4446 1987
#> 4447 1968
#> 4448 1963
#> 4449 1972
#> 4450 1987
#> 4451 1977
#> 4452 1983
#> 4453 1993
#> 4454 1975
#> 4455 1993
#> 4456 1975
#> 4457 1993
#> 4458 1988
#> 4459 1996
#> 4460 1995
#> 4461 1992
#> 4462 1984
#> 4463 1994
#> 4464 1976
#> 4465 1974
#> 4466 1977
#> 4467 1975
#> 4468 1976
#> 4469 1975
#> 4470 1994
#> 4471 1973
#> 4472 1977
#> 4473 1977
#> 4474 1978
#> 4475 1975
#> 4476 1950
#> 4477 1995
#> 4478 1977
#> 4479 1972
#> 4480 1981
#> 4481 1971
#> 4482 1990
#> 4483 1979
#> 4484 1989
#> 4485 1989
#> 4486 1973
#> 4487 1983
#> 4488 1975
#> 4489 1988
#> 4490 1976
#> 4491 1982
#> 4492 1990
#> 4493 1993
#> 4494 1987
#> 4495 1991
#> 4496 1994
#> 4497 1983
#> 4498 1990
#> 4499 1994
#> 4500 1993
#> 4501 1994
#> 4502 1993
#> 4503 1993
#> 4504 1984
#> 4505 1984
#> 4506 1990
#> 4507 1989
#> 4508 1990
#> 4509 1993
#> 4510 1994
#> 4511 1992
#> 4512 1991
#> 4513 1994
#> 4514 1994
#> 4515 1994
#> 4516 1984
#> 4517 1975
#> 4518 1976
#> 4519 1975
#> 4520 2011
#> 4521 1976
#> 4522 2009
#> 4523 1976
#> 4524 1977
#> 4525 1978
#> 4526 2002
#> 4527 1977
#> 4528 1977
#> 4529 1975
#> 4530 1973
#> 4531 2013
#> 4532 1977
#> 4533 2013
#> 4534 1999
#> 4535 2011
#> 4536 1996
#> 4537 2001
#> 4538 2012
#> 4539 2011
#> 4540 2001
#> 4541 2000
#> 4542 2013
#> 4543 2009
#> 4544 2005
#> 4545 2001
#> 4546 2013
#> 4547 2010
#> 4548 2007
#> 4549 1999
#> 4550 2006
#> 4551 2004
#> 4552 1999
#> 4553 2007
#> 4554 1998
#> 4555 2006
#> 4556 2003
#> 4557 2003
#> 4558 2003
#> 4559 2007
#> 4560 2004
#> 4561 2008
#> 4562 2012
#> 4563 2008
#> 4564 2010
#> 4565 2007
#> 4566 2004
#> 4567 2008
#> 4568 2004
#> 4569 2010
#> 4570 2007
#> 4571 2005
#> 4572 2009
#> 4573 2007
#> 4574 2007
#> 4575 2006
#> 4576 2007
#> 4577 2003
#> 4578 2010
#> 4579 2013
#> 4580 2007
#> 4581 2009
#> 4582 2005
#> 4583 2011
#> 4584 1995
#> 4585 2005
#> 4586 2006
#> 4587 2010
#> 4588 2007
#> 4589 2003
#> 4590 2003
#> 4591 2007
#> 4592 2008
#> 4593 2012
#> 4594 2008
#> 4595 2010
#> 4596 2007
#> 4597 2009
#> 4598 2008
#> 4599 2004
#> 4600 2009
#> 4601 2007
#> 4602 2005
#> 4603 2009
#> 4604 2007
#> 4605 2006
#> 4606 2007
#> 4607 2003
#> 4608 2005
#> 4609 2007
#> 4610 2009
#> 4611 2008
#> 4612 2005
#> 4613 2002
#> 4614 2006
#> 4615 2009
#> 4616 2006
#> 4617 2010
#> 4618 1995
#> 4619 1997
#> 4620 1994
#> 4621 1987
#> 4622 1990
#> 4623 1993
#> 4624 1990
#> 4625 1997
#> 4626 1987
#> 4627 1987
#> 4628 1989
#> 4629 1988
#> 4630 1987
#> 4631 1991
#> 4632 1987
#> 4633 1988
#> 4634 1991
#> 4635 1993
#> 4636 1987
#> 4637 1987
#> 4638 1997
#> 4639 1996
#> 4640 1987
#> 4641 1987
#> 4642 1997
#> 4643 1996
#> 4644 1984
#> 4645 1983
#> 4646 1976
#> 4647 1981
#> 4648 1986
#> 4649 1979
#> 4650 1992
#> 4651 1995
#> 4652 2005
#> 4653 1987
#> 4654 1993
#> 4655 2002
#> 4656 1997
#> 4657 2001
#> 4658 1993
#> 4659 1996
#> 4660 1984
#> 4661 1998
#> 4662 2001
#> 4663 1989
#> 4664 1986
#> 4665 1990
#> 4666 1983
#> 4667 1997
#> 4668 1989
#> 4669 1977
#> 4670 1997
#> 4671 2005
#> 4672 2005
#> 4673 1990
#> 4674 2005
#> 4675 1995
#> 4676 1988
#> 4677 1991
#> 4678 2000
#> 4679 1990
#> 4680 1995
#> 4681 1991
#> 4682 1995
#> 4683 1995
#> 4684 2001
#> 4685 2001
#> 4686 2001
#> 4687 1989
#> 4688 2004
#> 4689 2002
#> 4690 2004
#> 4691 1993
#> 4692 2001
#> 4693 1995
#> 4694 1997
#> 4695 1997
#> 4696 2001
#> 4697 2003
#> 4698 1993
#> 4699 2000
#> 4700 2001
#> 4701 1988
#> 4702 2001
#> 4703 2003
#> 4704 2003
#> 4705 2004
#> 4706 2002
#> 4707 2001
#> 4708 2003
#> 4709 2001
#> 4710 2003
#> 4711 1993
#> 4712 2004
#> 4713 1993
#> 4714 2002
#> 4715 1993
#> 4716 2003
#> 4717 2003
#> 4718 2001
#> 4719 1983
#> 4720 2003
#> 4721 2000
#> 4722 2003
#> 4723 2002
#> 4724 2002
#> 4725 1999
#> 4726 1983
#> 4727 1991
#> 4728 1994
#> 4729 1998
#> 4730 2004
#> 4731 2003
#> 4732 2002
#> 4733 1995
#> 4734 2001
#> 4735 2001
#> 4736 1990
#> 4737 1994
#> 4738 2001
#> 4739 1995
#> 4740 1997
#> 4741 1997
#> 4742 2001
#> 4743 1993
#> 4744 2000
#> 4745 1988
#> 4746 2001
#> 4747 2001
#> 4748 1994
#> 4749 1994
#> 4750 1993
#> 4751 1983
#> 4752 2000
#> 4753 1999
#> 4754 1983
#> 4755 1991
#> 4756 1994
#> 4757 1999
#> 4758 1981
#> 4759 1982
#> 4760 1982
#> 4761 1989
#> 4762 1985
#> 4763 1980
#> 4764 1992
#> 4765 2009
#> 4766 1994
#> 4767 1985
#> 4768 1985
#> 4769 1995
#> 4770 1985
#> 4771 1988
#> 4772 1983
#> 4773 1991
#> 4774 1982
#> 4775 1973
#> 4776 1978
#> 4777 1973
#> 4778 1973
#> 4779 1976
#> 4780 1975
#> 4781 1995
#> 4782 2001
#> 4783 2001
#> 4784 1989
#> 4785 2002
#> 4786 1993
#> 4787 2001
#> 4788 1997
#> 4789 1997
#> 4790 2001
#> 4791 1993
#> 4792 2000
#> 4793 2001
#> 4794 1988
#> 4795 2001
#> 4796 2002
#> 4797 2001
#> 4798 2001
#> 4799 1993
#> 4800 2002
#> 4801 1993
#> 4802 2001
#> 4803 1983
#> 4804 2002
#> 4805 2002
#> 4806 1999
#> 4807 1983
#> 4808 1991
#> 4809 1994
#> 4810 1998
#> 4811 2002
#> 4812 2002
#> 4813 1993
#> 4814 1996
#> 4815 1998
#> 4816 1992
#> 4817 1970
#> 4818 1970
#> 4819 1991
#> 4820 2002
#> 4821 1993
#> 4822 1994
#> 4823 2000
#> 4824 1994
#> 4825 1991
#> 4826 1993
#> 4827 1999
#> 4828 2012
#> 4829 2006
#> 4830 2000
#> 4831 2003
#> 4832 1990
#> 4833 1998
#> 4834 2008
#> 4835 2000
#> 4836 1988
#> 4837 1997
#> 4838 2008
#> 4839 1997
#> 4840 2003
#> 4841 2000
#> 4842 2007
#> 4843 1994
#> 4844 2008
#> 4845 2002
#> 4846 1997
#> 4847 1988
#> 4848 1988
#> 4849 2006
#> 4850 1989
#> 4851 1991
#> 4852 1991
#> 4853 1992
#> 4854 1990
#> 4855 1992
#> 4856 1986
#> 4857 1986
#> 4858 1981
#> 4859 1990
#> 4860 1986
#> 4861 1989
#> 4862 1989
#> 4863 1989
#> 4864 1991
#> 4865 1985
#> 4866 1990
#> 4867 1987
#> 4868 1987
#> 4869 1983
#> 4870 1987
#> 4871 1987
#> 4872 1987
#> 4873 1990
#> 4874 1989
#> 4875 1980
#> 4876 1985
#> 4877 1978
#> 4878 1989
#> 4879 1987
#> 4880 1984
#> 4881 1991
#> 4882 1989
#> 4883 1986
#> 4884 1984
#> 4885 1990
#> 4886 1986
#> 4887 1970
#> 4888 1990
#> 4889 1989
#> 4890 1986
#> 4891 1989
#> 4892 2003
#> 4893 1973
#> 4894 1993
#> 4895 1989
#> 4896 1975
#> 4897 1993
#> 4898 1971
#> 4899 1989
#> 4900 1989
#> 4901 1991
#> 4902 1988
#> 4903 1993
#> 4904 1983
#> 4905 1970
#> 4906 2011
#> 4907 1985
#> 4908 1989
#> 4909 2009
#> 4910 1989
#> 4911 2005
#> 4912 1977
#> 4913 1985
#> 4914 1989
#> 4915 1993
#> 4916 1984
#> 4917 1994
#> 4918 1955
#> 4919 1936
#> 4920 1960
#> 4921 1930
#> 4922 1940
#> 4923 1934
#> 4924 1951
#> 4925 1950
#> 4926 1941
#> 4927 1955
#> 4928 1943
#> 4929 1940
#> 4930 1960
#> 4931 1959
#> 4932 1958
#> 4933 1947
#> 4934 1936
#> 4935 1956
#> 4936 1956
#> 4937 1961
#> 4938 1956
#> 4939 1957
#> 4940 1948
#> 4941 1948
#> 4942 1957
#> 4943 1941
#> 4944 1939
#> 4945 1953
#> 4946 1957
#> 4947 1955
#> 4948 1939
#> 4949 1932
#> 4950 1953
#> 4951 1953
#> 4952 1955
#> 4953 1942
#> 4954 1952
#> 4955 1942
#> 4956 1942
#> 4957 1957
#> 4958 1956
#> 4959 1939
#> 4960 1929
#> 4961 1921
#> 4962 1960
#> 4963 1905
#> 4964 1923
#> 4965 1922
#> 4966 1951
#> 4967 1939
#> 4968 1941
#> 4969 1915
#> 4970 1929
#> 4971 1929
#> 4972 1935
#> 4973 1915
#> 4974 1935
#> 4975 1924
#> 4976 1935
#> 4977 1916
#> 4978 1956
#> 4979 1939
#> 4980 1956
#> 4981 1924
#> 4982 1934
#> 4983 1938
#> 4984 1935
#> 4985 1933
#> 4986 1920
#> 4987 1936
#> 4988 1931
#> 4989 1926
#> 4990 1957
#> 4991 1937
#> 4992 1939
#> 4993 1932
#> 4994 1921
#> 4995 1914
#> 4996 1955
#> 4997 1896
#> 4998 1927
#> 4999 1935
#> 5000 1918
#> 5001 1928
#> 5002 1932
#> 5003 1930
#> 5004 1953
#> 5005 1961
#> 5006 1961
#> 5007 1959
#> 5008 1961
#> 5009 1964
#> 5010 1957
#> 5011 1964
#> 5012 1965
#> 5013 1965
#> 5014 1962
#> 5015 1961
#> 5016 1966
#> 5017 1961
#> 5018 1963
#> 5019 1965
#> 5020 1951
#> 5021 1962
#> 5022 1963
#> 5023 1961
#> 5024 1953
#> 5025 1961
#> 5026 1963
#> 5027 1955
#> 5028 1962
#> 5029 1966
#> 5030 1963
#> 5031 1965
#> 5032 1963
#> 5033 1962
#> 5034 1965
#> 5035 1963
#> 5036 1959
#> 5037 1994
#> 5038 1974
#> 5039 1974
#> 5040 1994
#> 5041 1976
#> 5042 1976
#> 5043 1994
#> 5044 1998
#> 5045 1999
#> 5046 1996
#> 5047 1998
#> 5048 1999
#> 5049 1997
#> 5050 1997
#> 5051 1999
#> 5052 1997
#> 5053 1999
#> 5054 1997
#> 5055 1997
#> 5056 1999
#> 5057 1997
#> 5058 1996
#> 5059 1999
#> 5060 1999
#> 5061 1999
#> 5062 1997
#> 5063 1999
#> 5064 1996
#> 5065 1996
#> 5066 1999
#> 5067 1998
#> 5068 2016
#> 5069 2012
#> 5070 2012
#> 5071 2013
#> 5072 2014
#> 5073 2013
#> 5074 2014
#> 5075 2014
#> 5076 2013
#> 5077 2013
#> 5078 2013
#> 5079 2013
#> 5080 2014
#> 5081 2011
#> 5082 2014
#> 5083 2001
#> 5084 2004
#> 5085 2000
#> 5086 2001
#> 5087 1999
#> 5088 2002
#> 5089 2002
#> 5090 2000
#> 5091 2000
#> 5092 2009
#> 5093 2000
#> 5094 2000
#> 5095 2000
#> 5096 2000
#> 5097 2000
#> 5098 2000
#> 5099 2001
#> 5100 2000
#> 5101 2000
#> 5102 2004
#> 5103 2001
#> 5104 2000
#> 5105 2001
#> 5106 2003
#> 5107 2001
#> 5108 2000
#> 5109 2001
#> 5110 2001
#> 5111 2002
#> 5112 2001
#> 5113 2000
#> 5114 2001
#> 5115 2000
#> 5116 2000
#> 5117 2001
#> 5118 2000
#> 5119 2000
#> 5120 2004
#> 5121 2000
#> 5122 2001
#> 5123 2001
#> 5124 2000
#> 5125 2003
#> 5126 2000
#> 5127 2004
#> 5128 2001
#> 5129 2001
#> 5130 2007
#> 5131 2002
#> 5132 2007
#> 5133 2007
#> 5134 2003
#> 5135 2001
#> 5136 2004
#> 5137 2007
#> 5138 2005
#> 5139 2007
#> 5140 2005
#> 5141 2005
#> 5142 2003
#> 5143 2003
#> 5144 2007
#> 5145 2003
#> 5146 2008
#> 5147 1997
#> 5148 2009
#> 5149 2006
#> 5150 2002
#> 5151 2008
#> 5152 2000
#> 5153 2002
#> 5154 2000
#> 5155 1997
#> 5156 2014
#> 5157 2000
#> 5158 2000
#> 5159 1996
#> 5160 1996
#> 5161 2000
#> 5162 2011
#> 5163 2000
#> 5164 2001
#> 5165 1998
#> 5166 1997
#> 5167 2000
#> 5168 1998
#> 5169 1997
#> 5170 1996
#> 5171 2000
#> 5172 2002
#> 5173 1998
#> 5174 2000
#> 5175 1996
#> 5176 1999
#> 5177 1999
#> 5178 2000
#> 5179 1999
#> 5180 2001
#> 5181 1999
#> 5182 2000
#> 5183 1997
#> 5184 2002
#> 5185 1996
#> 5186 2002
#> 5187 1999
#> 5188 1997
#> 5189 1996
#> 5190 1996
#> 5191 1995
#> 5192 1997
#> 5193 2001
#> 5194 2000
#> 5195 1995
#> 5196 2001
#> 5197 1996
#> 5198 1999
#> 5199 2002
#> 5200 2013
#> 5201 2009
#> 5202 2007
#> 5203 2016
#> 5204 2010
#> 5205 2008
#> 5206 2007
#> 5207 2009
#> 5208 2011
#> 5209 2008
#> 5210 2009
#> 5211 2009
#> 5212 2007
#> 5213 2013
#> 5214 2008
#> 5215 1985
#> 5216 1991
#> 5217 2002
#> 5218 2006
#> 5219 2006
#> 5220 1990
#> 5221 2004
#> 5222 1997
#> 5223 1987
#> 5224 1995
#> 5225 1999
#> 5226 1986
#> 5227 1983
#> 5228 2006
#> 5229 2006
#> 5230 1997
#> 5231 1984
#> 5232 2005
#> 5233 2007
#> 5234 1998
#> 5235 2005
#> 5236 1987
#> 5237 1972
#> 5238 1971
#> 5239 1989
#> 5240 1970
#> 5241 1973
#> 5242 1986
#> 5243 1984
#> 5244 1986
#> 5245 1983
#> 5246 1974
#> 5247 1991
#> 5248 1997
#> 5249 1979
#> 5250 1970
#> 5251 1990
#> 5252 1985
#> 5253 1975
#> 5254 1987
#> 5255 1997
#> 5256 1977
#> 5257 1984
#> 5258 1987
#> 5259 1989
#> 5260 1993
#> 5261 1979
#> 5262 1994
#> 5263 1997
#> 5264 1989
#> 5265 1970
#> 5266 1989
#> 5267 1970
#> 5268 1983
#> 5269 1970
#> 5270 1979
#> 5271 1965
#> 5272 1984
#> 5273 1993
#> 5274 1975
#> 5275 1976
#> 5276 1985
#> 5277 1983
#> 5278 1988
#> 5279 1953
#> 5280 1965
#> 5281 1965
#> 5282 1935
#> 5283 1921
#> 5284 1925
#> 5285 1929
#> 5286 1919
#> 5287 1935
#> 5288 1941
#> 5289 1917
#> 5290 1937
#> 5291 1918
#> 5292 1941
#> 5293 1921
#> 5294 1919
#> 5295 1947
#> 5296 1938
#> 5297 1908
#> 5298 1935
#> 5299 1939
#> 5300 1941
#> 5301 1919
#> 5302 1921
#> 5303 1928
#> 5304 1941
#> 5305 1947
#> 5306 1937
#> 5307 1919
#> 5308 1945
#> 5309 1921
#> 5310 1935
#> 5311 1920
#> 5312 1921
#> 5313 1943
#> 5314 1933
#> 5315 1935
#> 5316 1919
#> 5317 1921
#> 5318 1938
#> 5319 1922
#> 5320 1925
#> 5321 1921
#> 5322 1937
#> 5323 1935
#> 5324 1939
#> 5325 1920
#> 5326 1935
#> 5327 1921
#> 5328 1917
#> 5329 1925
#> 5330 1990
#> 5331 1998
#> 5332 2006
#> 5333 1987
#> 5334 1986
#> 5335 1988
#> 5336 1988
#> 5337 1986
#> 5338 1978
#> 5339 2007
#> 5340 1969
#> 5341 1984
#> 5342 2002
#> 5343 2007
#> 5344 1984
#> 5345 1811
#> 5346 1975
#> 5347 1987
#> 5348 1998
#> 5349 1995
#> 5350 1920
#> 5351 1995
#> 5352 1987
#> 5353 1987
#> 5354 1987
#> 5355 1995
#> 5356 1984
#> 5357 2000
#> 5358 1981
#> 5359 1996
#> 5360 1988
#> 5361 1988
#> 5362 1984
#> 5363 1986
#> 5364 1986
#> 5365 1982
#> 5366 1985
#> 5367 1981
#> 5368 1982
#> 5369 1987
#> 5370 1983
#> 5371 1983
#> 5372 1982
#> 5373 1982
#> 5374 1981
#> 5375 1987
#> 5376 1982
#> 5377 1986
#> 5378 1983
#> 5379 1984
#> 5380 1983
#> 5381 1992
#> 5382 1984
#> 5383 1984
#> 5384 1987
#> 5385 1982
#> 5386 1983
#> 5387 1986
#> 5388 1983
#> 5389 1991
#> 5390 1987
#> 5391 1984
#> 5392 1988
#> 5393 1988
#> 5394 1986
#> 5395 1984
#> 5396 1987
#> 5397 1988
#> 5398 2013
#> 5399 2014
#> 5400 2011
#> 5401 2007
#> 5402 2009
#> 5403 2015
#> 5404 1990
#> 5405 1987
#> 5406 1991
#> 5407 1989
#> 5408 1988
#> 5409 1988
#> 5410 1988
#> 5411 1988
#> 5412 1989
#> 5413 1978
#> 5414 1990
#> 5415 1985
#> 5416 1991
#> 5417 1991
#> 5418 1959
#> 5419 1965
#> 5420 1947
#> 5421 1966
#> 5422 1966
#> 5423 1957
#> 5424 1957
#> 5425 1959
#> 5426 1963
#> 5427 1961
#> 5428 1963
#> 5429 1964
#> 5430 1963
#> 5431 1954
#> 5432 1965
#> 5433 1957
#> 5434 1966
#> 5435 1965
#> 5436 1954
#> 5437 1957
#> 5438 1959
#> 5439 1960
#> 5440 1966
#> 5441 1965
#> 5442 1959
#> 5443 1965
#> 5444 1966
#> 5445 1957
#> 5446 1961
#> 5447 1987
#> 5448 1980
#> 5449 1982
#> 5450 2005
#> 5451 1979
#> 5452 1978
#> 5453 1983
#> 5454 1979
#> 5455 1983
#> 5456 1972
#> 5457 1973
#> 5458 2006
#> 5459 2003
#> 5460 2004
#> 5461 2007
#> 5462 2005
#> 5463 2007
#> 5464 2005
#> 5465 2004
#> 5466 2007
#> 5467 2005
#> 5468 2006
#> 5469 2006
#> 5470 2005
#> 5471 2005
#> 5472 2005
#> 5473 2007
#> 5474 2002
#> 5475 2012
#> 5476 2008
#> 5477 2009
#> 5478 2009
#> 5479 2009
#> 5480 2004
#> 5481 2005
#> 5482 2000
#> 5483 2009
#> 5484 2003
#> 5485 2008
#> 5486 2006
#> 5487 2008
#> 5488 2007
#> 5489 2008
#> 5490 2008
#> 5491 2007
#> 5492 2011
#> 5493 2008
#> 5494 2010
#> 5495 2007
#> 5496 2011
#> 5497 2010
#> 5498 2008
#> 5499 2006
#> 5500 2008
#> 5501 2010
#> 5502 2007
#> 5503 2006
#> 5504 2006
#> 5505 2006
#> 5506 2006
#> 5507 2007
#> 5508 2006
#> 5509 2006
#> 5510 2006
#> 5511 2007
#> 5512 2006
#> 5513 1996
#> 5514 1999
#> 5515 1999
#> 5516 2009
#> 5517 1997
#> 5518 1997
#> 5519 1997
#> 5520 2000
#> 5521 1999
#> 5522 1997
#> 5523 2000
#> 5524 1999
#> 5525 2005
#> 5526 1996
#> 5527 1999
#> 5528 1999
#> 5529 1997
#> 5530 1996
#> 5531 1999
#> 5532 1999
#> 5533 1970
#> 5534 1975
#> 5535 1991
#> 5536 1974
#> 5537 1972
#> 5538 1973
#> 5539 1977
#> 5540 1973
#> 5541 1971
#> 5542 1976
#> 5543 1971
#> 5544 1974
#> 5545 1973
#> 5546 1971
#> 5547 1972
#> 5548 2007
#> 5549 2005
#> 5550 2008
#> 5551 2006
#> 5552 2006
#> 5553 2008
#> 5554 2005
#> 5555 2005
#> 5556 2005
#> 5557 2005
#> 5558 2007
#> 5559 2008
#> 5560 2007
#> 5561 2005
#> 5562 2005
#> 5563 2004
#> 5564 2006
#> 5565 2008
#> 5566 2005
#> 5567 2006
#> 5568 2010
#> 5569 2007
#> 5570 1972
#> 5571 1972
#> 5572 1974
#> 5573 1972
#> 5574 1970
#> 5575 1974
#> 5576 1972
#> 5577 1976
#> 5578 1972
#> 5579 1974
#> 5580 1972
#> 5581 1971
#> 5582 1972
#> 5583 1896
#> 5584 1970
#> 5585 1972
#> 5586 1890
#> 5587 1962
#> 5588 1955
#> 5589 1949
#> 5590 1955
#> 5591 1949
#> 5592 1966
#> 5593 1944
#> 5594 1966
#> 5595 1949
#> 5596 1966
#> 5597 1945
#> 5598 1919
#> 5599 1963
#> 5600 1919
#> 5601 1947
#> 5602 1952
#> 5603 1944
#> 5604 1965
#> 5605 1959
#> 5606 1965
#> 5607 1955
#> 5608 1948
#> 5609 1946
#> 5610 1966
#> 5611 1943
#> 5612 1965
#> 5613 1959
#> 5614 2007
#> 5615 2007
#> 5616 2011
#> 5617 1972
#> 5618 2004
#> 5619 2009
#> 5620 1994
#> 5621 1993
#> 5622 1976
#> 5623 1986
#> 5624 2009
#> 5625 2009
#> 5626 2010
#> 5627 2009
#> 5628 2009
#> 5629 2009
#> 5630 2009
#> 5631 2009
#> 5632 2009
#> 5633 2009
#> 5634 2009
#> 5635 2009
#> 5636 2009
#> 5637 2009
#> 5638 2009
#> 5639 2009
#> 5640 2009
#> 5641 2009
#> 5642 2009
#> 5643 2009
#> 5644 2009
#> 5645 2009
#> 5646 2003
#> 5647 2007
#> 5648 2008
#> 5649 2008
#> 5650 2009
#> 5651 2004
#> 5652 2005
#> 5653 2008
#> 5654 2007
#> 5655 2008
#> 5656 2008
#> 5657 2010
#> 5658 2007
#> 5659 2008
#> 5660 2007
#> 5661 2010
#> 5662 2008
#> 5663 2010
#> 5664 2007
#> 5665 2011
#> 5666 2010
#> 5667 2008
#> 5668 2006
#> 5669 2008
#> 5670 2009
#> 5671 1982
#> 5672 1888
#> 5673 1889
#> 5674 1888
#> 5675 1888
#> 5676 1888
#> 5677 1887
#> 5678 1888
#> 5679 1888
#> 5680 1888
#> 5681 1892
#> 5682 1888
#> 5683 1887
#> 5684 1888
#> 5685 1888
#> 5686 1888
#> 5687 1887
#> 5688 1888
#> 5689 1888
#> 5690 1888
#> 5691 1888
#> 5692 1888
#> 5693 1888
#> 5694 1888
#> 5695 1893
#> 5696 1887
#> 5697 1887
#> 5698 1888
#> 5699 1888
#> 5700 1889
#> 5701 1888
#> 5702 1889
#> 5703 1890
#> 5704 1888
#> 5705 1891
#> 5706 1888
#> 5707 1887
#> 5708 1888
#> 5709 1888
#> 5710 1887
#> 5711 1887
#> 5712 1888
#> 5713 1889
#> 5714 1888
#> 5715 1888
#> 5716 1891
#> 5717 1888
#> 5718 1887
#> 5719 1891
#> 5720 1985
#> 5721 1959
#> 5722 1959
#> 5723 1969
#> 5724 1958
#> 5725 1963
#> 5726 1959
#> 5727 1959
#> 5728 1963
#> 5729 1960
#> 5730 1959
#> 5731 1963
#> 5732 1959
#> 5733 1959
#> 5734 1959
#> 5735 1965
#> 5736 1961
#> 5737 1967
#> 5738 1999
#> 5739 1969
#> 5740 1959
#> 5741 1953
#> 5742 1959
#> 5743 1957
#> 5744 1947
#> 5745 1960
#> 5746 1964
#> 5747 1961
#> 5748 1961
#> 5749 1963
#> 5750 1963
#> 5751 1961
#> 5752 1946
#> 5753 1955
#> 5754 1955
#> 5755 1961
#> 5756 1963
#> 5757 1945
#> 5758 1949
#> 5759 1945
#> 5760 1959
#> 5761 1949
#> 5762 1955
#> 5763 1949
#> 5764 1963
#> 5765 1949
#> 5766 1957
#> 5767 1936
#> 5768 1937
#> 5769 1931
#> 5770 1937
#> 5771 1937
#> 5772 1935
#> 5773 1937
#> 5774 1937
#> 5775 1937
#> 5776 1935
#> 5777 1937
#> 5778 1935
#> 5779 1937
#> 5780 1936
#> 5781 1936
#> 5782 1937
#> 5783 1937
#> 5784 1937
#> 5785 1937
#> 5786 1937
#> 5787 1938
#> 5788 1937
#> 5789 1937
#> 5790 1937
#> 5791 1937
#> 5792 1937
#> 5793 1935
#> 5794 1937
#> 5795 1937
#> 5796 1935
#> 5797 1936
#> 5798 1937
#> 5799 1936
#> 5800 1936
#> 5801 1937
#> 5802 1937
#> 5803 1937
#> 5804 1937
#> 5805 1933
#> 5806 1936
#> 5807 1937
#> 5808 1937
#> 5809 1935
#> 5810 1937
#> 5811 2015
#> 5812 2011
#> 5813 2014
#> 5814 2013
#> 5815 1994
#> 5816 1993
#> 5817 1994
#> 5818 1995
#> 5819 1995
#> 5820 1995
#> 5821 1993
#> 5822 1995
#> 5823 1994
#> 5824 1994
#> 5825 1995
#> 5826 1995
#> 5827 1994
#> 5828 1992
#> 5829 1995
#> 5830 1998
#> 5831 1998
#> 5832 1995
#> 5833 1996
#> 5834 1994
#> 5835 1997
#> 5836 1994
#> 5837 1992
#> 5838 1992
#> 5839 1992
#> 5840 1992
#> 5841 1994
#> 5842 1992
#> 5843 1992
#> 5844 1992
#> 5845 1992
#> 5846 1992
#> 5847 1996
#> 5848 1998
#> 5849 2000
#> 5850 1994
#> 5851 1992
#> 5852 1992
#> 5853 1992
#> 5854 1992
#> 5855 1992
#> 5856 1992
#> 5857 1994
#> 5858 1992
#> 5859 1996
#> 5860 1994
#> 5861 1992
#> 5862 1998
#> 5863 1992
#> 5864 1992
#> 5865 1994
#> 5866 1994
#> 5867 1992
#> 5868 1994
#> 5869 1996
#> 5870 1994
#> 5871 1992
#> 5872 1994
#> 5873 1996
#> 5874 1992
#> 5875 1992
#> 5876 1994
#> 5877 1996
#> 5878 1998
#> 5879 1996
#> 5880 2000
#> 5881 1998
#> 5882 2002
#> 5883 1992
#> 5884 1992
#> 5885 1994
#> 5886 1989
#> 5887 1989
#> 5888 1990
#> 5889 1989
#> 5890 1968
#> 5891 1970
#> 5892 1968
#> 5893 1996
#> 5894 1992
#> 5895 1968
#> 5896 1968
#> 5897 1989
#> 5898 1989
#> 5899 1968
#> 5900 1987
#> 5901 1989
#> 5902 1968
#> 5903 1968
#> 5904 1971
#> 5905 1989
#> 5906 1970
#> 5907 1970
#> 5908 1968
#> 5909 1968
#> 5910 1998
#> 5911 1988
#> 5912 1970
#> 5913 1979
#> 5914 1968
#> 5915 1968
#> 5916 1990
#> 5917 1968
#> 5918 1989
#> 5919 1988
#> 5920 1988
#> 5921 1980
#> 5922 1988
#> 5923 2003
#> 5924 1986
#> 5925 1987
#> 5926 1984
#> 5927 1990
#> 5928 1985
#> 5929 2012
#> 5930 1980
#> 5931 1990
#> 5932 2013
#> 5933 1999
#> 5934 2013
#> 5935 1989
#> 5936 1987
#> 5937 2012
#> 5938 1996
#> 5939 1986
#> 5940 1982
#> 5941 2013
#> 5942 2013
#> 5943 2013
#> 5944 2013
#> 5945 2013
#> 5946 2006
#> 5947 2005
#> 5948 2005
#> 5949 1999
#> 5950 1970
#> 5951 2005
#> 5952 2006
#> 5953 2002
#> 5954 1993
#> 5955 2009
#> 5956 2007
#> 5957 2004
#> 5958 1997
#> 5959 2005
#> 5960 1999
#> 5961 1986
#> 5962 2004
#> 5963 1999
#> 5964 2013
#> 5965 2002
#> 5966 1997
#> 5967 2011
#> 5968 1997
#> 5969 1996
#> 5970 2005
#> 5971 1997
#> 5972 1994
#> 5973 2006
#> 5974 1997
#> 5975 2011
#> 5976 2003
#> 5977 1998
#> 5978 2004
#> 5979 2004
#> 5980 2005
#> 5981 1998
#> 5982 2011
#> 5983 2013
#> 5984 2012
#> 5985 2011
#> 5986 2011
#> 5987 2012
#> 5988 2011
#> 5989 2013
#> 5990 2011
#> 5991 2013
#> 5992 1963
#> 5993 1959
#> 5994 1959
#> 5995 1959
#> 5996 1963
#> 5997 1961
#> 5998 1961
#> 5999 1961
#> 6000 1961
#> 6001 1959
#> 6002 1961
#> 6003 2014
#> 6004 2016
#> 6005 2017
#> 6006 2016
#> 6007 2016
#> 6008 2016
#> 6009 2016
#> 6010 2016
#> 6011 2016
#> 6012 2016
#> 6013 2017
#> 6014 2016
#> 6015 2016
#> 6016 2016
#> 6017 2017
#> 6018 2016
#> 6019 2017
#> 6020 2016
#> 6021 2016
#> 6022 2017
#> 6023 2017
#> 6024 2016
#> 6025 2016
#> 6026 2017
#> 6027 2016
#> 6028 2017
#> 6029 2017
#> 6030 2016
#> 6031 2016
#> 6032 2016
#> 6033 2009
#> 6034 2008
#> 6035 2006
#> 6036 2009
#> 6037 2009
#> 6038 2006
#> 6039 2006
#> 6040 2004
#> 6041 2005
#> 6042 1997
#> 6043 2008
#> 6044 2004
#> 6045 2008
#> 6046 2007
#> 6047 2007
#> 6048 2008
#> 6049 1992
#> 6050 2006
#> 6051 2008
#> 6052 2006
#> 6053 2008
#> 6054 1997
#> 6055 2004
#> 6056 1999
#> 6057 2005
#> 6058 2005
#> 6059 2002
#> 6060 2007
#> 6061 2006
#> 6062 2009
#> 6063 2005
#> 6064 2005
#> 6065 2004
#> 6066 2005
#> 6067 2004
#> 6068 2006
#> 6069 2006
#> 6070 2009
#> 6071 2005
#> 6072 2001
#> 6073 2006
#> 6074 2007
#> 6075 2006
#> 6076 2007
#> 6077 1870
#> 6078 1881
#> 6079 1875
#> 6080 1870
#> 6081 1877
#> 6082 1867
#> 6083 1881
#> 6084 1876
#> 6085 1879
#> 6086 1881
#> 6087 1874
#> 6088 1877
#> 6089 1878
#> 6090 1874
#> 6091 1865
#> 6092 1873
#> 6093 1874
#> 6094 1877
#> 6095 1879
#> 6096 1877
#> 6097 1864
#> 6098 1870
#> 6099 1868
#> 6100 1915
#> 6101 1873
#> 6102 1874
#> 6103 1878
#> 6104 1879
#> 6105 1878
#> 6106 1879
#> 6107 1867
#> 6108 1875
#> 6109 1889
#> 6110 1876
#> 6111 1879
#> 6112 2002
#> 6113 1990
#> 6114 2006
#> 6115 1979
#> 6116 1991
#> 6117 1973
#> 6118 1991
#> 6119 1923
#> 6120 1900
#> 6121 1901
#> 6122 1967
#> 6123 1969
#> 6124 1975
#> 6125 1977
#> 6126 1995
#> 6127 1959
#> 6128 1975
#> 6129 1990
#> 6130 1984
#> 6131 1973
#> 6132 1967
#> 6133 1984
#> 6134 1976
#> 6135 1940
#> 6136 1959
#> 6137 1970
#> 6138 1851
#> 6139 1977
#> 6140 1979
#> 6141 1983
#> 6142 1961
#> 6143 1895
#> 6144 1961
#> 6145 1911
#> 6146 2001
#> 6147 1974
#> 6148 1935
#> 6149 1963
#> 6150 1973
#> 6151 1957
#> 6152 1979
#> 6153 1939
#> 6154 1957
#> 6155 1993
#> 6156 1968
#> 6157 1917
#> 6158 2003
#> 6159 1992
#> 6160 1990
#> 6161 1989
#> 6162 1997
#> 6163 1990
#> 6164 2001
#> 6165 1990
#> 6166 1991
#> 6167 1993
#> 6168 1991
#> 6169 1995
#> 6170 1991
#> 6171 1994
#> 6172 1994
#> 6173 1991
#> 6174 2010
#> 6175 1990
#> 6176 1991
#> 6177 1991
#> 6178 1992
#> 6179 1972
#> 6180 1968
#> 6181 1977
#> 6182 1988
#> 6183 1997
#> 6184 1994
#> 6185 1975
#> 6186 1996
#> 6187 1990
#> 6188 1963
#> 6189 1989
#> 6190 1999
#> 6191 1963
#> 6192 1966
#> 6193 1968
#> 6194 1973
#> 6195 1984
#> 6196 1993
#> 6197 1993
#> 6198 1997
#> 6199 1991
#> 6200 1970
#> 6201 1993
#> 6202 2003
#> 6203 1985
#> 6204 1965
#> 6205 1977
#> 6206 1991
#> 6207 1989
#> 6208 1990
#> 6209 1975
#> 6210 2012
#> 6211 2015
#> 6212 2007
#> 6213 2008
#> 6214 2011
#> 6215 2015
#> 6216 2009
#> 6217 2007
#> 6218 2011
#> 6219 2011
#> 6220 2010
#> 6221 2008
#> 6222 2010
#> 6223 2009
#> 6224 2007
#> 6225 2009
#> 6226 2009
#> 6227 2017
#> 6228 2009
#> 6229 2009
#> 6230 2014
#> 6231 2009
#> 6232 1907
#> 6233 1931
#> 6234 1885
#> 6235 1885
#> 6236 1901
#> 6237 1909
#> 6238 1927
#> 6239 1921
#> 6240 1905
#> 6241 1917
#> 6242 1901
#> 6243 1906
#> 6244 1887
#> 6245 1906
#> 6246 1904
#> 6247 1891
#> 6248 1906
#> 6249 1904
#> 6250 1899
#> 6251 1895
#> 6252 1926
#> 6253 1925
#> 6254 1909
#> 6255 1917
#> 6256 1893
#> 6257 1905
#> 6258 1885
#> 6259 1905
#> 6260 1891
#> 6261 1885
#> 6262 1925
#> 6263 1899
#> 6264 1895
#> 6265 1909
#> 6266 1927
#> 6267 1911
#> 6268 1905
#> 6269 1915
#> 6270 1904
#> 6271 1914
#> 6272 1903
#> 6273 1909
#> 6274 1895
#> 6275 1952
#> 6276 1989
#> 6277 1990
#> 6278 1987
#> 6279 1986
#> 6280 1991
#> 6281 1991
#> 6282 1996
#> 6283 1987
#> 6284 2002
#> 6285 1985
#> 6286 1987
#> 6287 1989
#> 6288 1994
#> 6289 1994
#> 6290 1998
#> 6291 2015
#> 6292 1986
#> 6293 1996
#> 6294 1999
#> 6295 1987
#> 6296 2006
#> 6297 1992
#> 6298 1991
#> 6299 1989
#> 6300 1987
#> 6301 1987
#> 6302 1988
#> 6303 1989
#> 6304 1997
#> 6305 1985
#> 6306 1990
#> 6307 1986
#> 6308 1985
#> 6309 1994
#> 6310 1986
#> 6311 1987
#> 6312 2003
#> 6313 1987
#> 6314 1988
#> 6315 1996
#> 6316 1987
#> 6317 1988
#> 6318 2006
#> 6319 1992
#> 6320 1991
#> 6321 1992
#> 6322 1987
#> 6323 1986
#> 6324 1986
#> 6325 1989
#> 6326 1986
#> 6327 1988
#> 6328 1986
#> 6329 1986
#> 6330 1986
#> 6331 1985
#> 6332 1994
#> 6333 1986
#> 6334 1993
#> 6335 1985
#> 6336 1986
#> 6337 1995
#> 6338 1986
#> 6339 1987
#> 6340 1988
#> 6341 1995
#> 6342 1986
#> 6343 1988
#> 6344 1994
#> 6345 1987
#> 6346 1990
#> 6347 1982
#> 6348 1995
#> 6349 1986
#> 6350 1985
#> 6351 1988
#> 6352 1988
#> 6353 1988
#> 6354 1988
#> 6355 1978
#> 6356 1985
#> 6357 1982
#> 6358 1986
#> 6359 1986
#> 6360 1986
#> 6361 1988
#> 6362 1982
#> 6363 1990
#> 6364 1988
#> 6365 1981
#> 6366 1980
#> 6367 1988
#> 6368 1988
#> 6369 1989
#> 6370 1988
#> 6371 1982
#> 6372 1988
#> 6373 1985
#> 6374 1979
#> 6375 1983
#> 6376 1989
#> 6377 1981
#> 6378 1987
#> 6379 1988
#> 6380 1977
#> 6381 1988
#> 6382 1984
#> 6383 1986
#> 6384 1988
#> 6385 1989
#> 6386 1984
#> 6387 1994
#> 6388 1993
#> 6389 1994
#> 6390 1994
#> 6391 1988
#> 6392 1994
#> 6393 1994
#> 6394 1994
#> 6395 1994
#> 6396 1988
#> 6397 1995
#> 6398 1994
#> 6399 1987
#> 6400 1985
#> 6401 1994
#> 6402 1994
#> 6403 1990
#> 6404 1994
#> 6405 1989
#> 6406 2002
#> 6407 1995
#> 6408 1994
#> 6409 1995
#> 6410 1994
#> 6411 1994
#> 6412 2001
#> 6413 1994
#> 6414 1988
#> 6415 1994
#> 6416 1994
#> 6417 1994
#> 6418 1988
#> 6419 1988
#> 6420 1994
#> 6421 1994
#> 6422 1994
#> 6423 1994
#> 6424 1996
#> 6425 1985
#> 6426 1994
#> 6427 1988
#> 6428 1988
#> 6429 1983
#> 6430 1986
#> 6431 1970
#> 6432 1997
#> 6433 1967
#> 6434 1969
#> 6435 1976
#> 6436 1969
#> 6437 1991
#> 6438 1987
#> 6439 1970
#> 6440 1991
#> 6441 1979
#> 6442 1983
#> 6443 1988
#> 6444 1982
#> 6445 1978
#> 6446 1983
#> 6447 1991
#> 6448 1967
#> 6449 1988
#> 6450 1978
#> 6451 1982
#> 6452 1982
#> 6453 1967
#> 6454 1969
#> 6455 1977
#> 6456 1971
#> 6457 1969
#> 6458 1969
#> 6459 1972
#> 6460 1977
#> 6461 1979
#> 6462 1970
#> 6463 1973
#> 6464 1976
#> 6465 1980
#> 6466 1967
#> 6467 1972
#> 6468 1995
#> 6469 1980
#> 6470 1989
#> 6471 1972
#> 6472 1973
#> 6473 1988
#> 6474 1981
#> 6475 1984
#> 6476 1983
#> 6477 1997
#> 6478 1976
#> 6479 1991
#> 6480 1991
#> 6481 1979
#> 6482 1983
#> 6483 1988
#> 6484 1982
#> 6485 1978
#> 6486 1983
#> 6487 1991
#> 6488 1988
#> 6489 1978
#> 6490 1982
#> 6491 1982
#> 6492 1977
#> 6493 1977
#> 6494 1979
#> 6495 1973
#> 6496 1976
#> 6497 1980
#> 6498 1995
#> 6499 1980
#> 6500 1989
#> 6501 1973
#> 6502 1988
#> 6503 1981
#> 6504 1984
#> 6505 2002
#> 6506 1999
#> 6507 2010
#> 6508 1999
#> 6509 1999
#> 6510 2001
#> 6511 1999
#> 6512 1992
#> 6513 1996
#> 6514 1999
#> 6515 1999
#> 6516 1991
#> 6517 1998
#> 6518 1991
#> 6519 1997
#> 6520 2006
#> 6521 1995
#> 6522 2004
#> 6523 2009
#> 6524 1999
#> 6525 1997
#> 6526 1990
#> 6527 1994
#> 6528 2006
#> 6529 1990
#> 6530 1993
#> 6531 1989
#> 6532 2007
#> 6533 1991
#> 6534 2004
#> 6535 2008
#> 6536 1996
#> 6537 1989
#> 6538 1993
#> 6539 1931
#> 6540 1976
#> 6541 1997
#> 6542 2001
#> 6543 2009
#> 6544 2004
#> 6545 2004
#> 6546 1992
#> 6547 1989
#> 6548 1994
#> 6549 1981
#> 6550 2010
#> 6551 1984
#> 6552 1983
#> 6553 1982
#> 6554 1975
#> 6555 1986
#> 6556 1992
#> 6557 1986
#> 6558 1974
#> 6559 1989
#> 6560 1985
#> 6561 1986
#> 6562 1988
#> 6563 1990
#> 6564 1974
#> 6565 1973
#> 6566 1972
#> 6567 1972
#> 6568 1988
#> 6569 1984
#> 6570 1986
#> 6571 1993
#> 6572 1964
#> 6573 1971
#> 6574 1995
#> 6575 1967
#> 6576 2006
#> 6577 2004
#> 6578 1974
#> 6579 2006
#> 6580 1984
#> 6581 1974
#> 6582 1974
#> 6583 2001
#> 6584 1986
#> 6585 2003
#> 6586 1991
#> 6587 1978
#> 6588 1987
#> 6589 1982
#> 6590 1984
#> 6591 1987
#> 6592 2013
#> 6593 2005
#> 6594 2005
#> 6595 2007
#> 6596 2007
#> 6597 2007
#> 6598 2007
#> 6599 2009
#> 6600 1923
#> 6601 1921
#> 6602 1921
#> 6603 1923
#> 6604 1919
#> 6605 1921
#> 6606 1923
#> 6607 1921
#> 6608 1921
#> 6609 1923
#> 6610 1927
#> 6611 1923
#> 6612 1925
#> 6613 1925
#> 6614 1920
#> 6615 1921
#> 6616 1923
#> 6617 1922
#> 6618 1929
#> 6619 1925
#> 6620 1925
#> 6621 1922
#> 6622 1924
#> 6623 1921
#> 6624 1925
#> 6625 1923
#> 6626 1923
#> 6627 1927
#> 6628 1919
#> 6629 1929
#> 6630 1921
#> 6631 1919
#> 6632 1925
#> 6633 1923
#> 6634 1919
#> 6635 1921
#> 6636 1925
#> 6637 1922
#> 6638 1921
#> 6639 1923
#> 6640 1923
#> 6641 1923
#> 6642 1923
#> 6643 1923
#> 6644 1921
#> 6645 1923
#> 6646 1925
#> 6647 1923
#> 6648 2003
#> 6649 2007
#> 6650 2011
#> 6651 2013
#> 6652 2011
#> 6653 2006
#> 6654 2007
#> 6655 2005
#> 6656 2014
#> 6657 2012
#> 6658 1993
#> 6659 2011
#> 6660 2007
#> 6661 2003
#> 6662 2008
#> 6663 2001
#> 6664 2007
#> 6665 2006
#> 6666 1997
#> 6667 1991
#> 6668 2005
#> 6669 1990
#> 6670 1997
#> 6671 1991
#> 6672 2001
#> 6673 1992
#> 6674 1990
#> 6675 2001
#> 6676 1998
#> 6677 1997
#> 6678 1995
#> 6679 2005
#> 6680 1996
#> 6681 1989
#> 6682 1999
#> 6683 1997
#> 6684 1995
#> 6685 1990
#> 6686 1990
#> 6687 2003
#> 6688 2000
#> 6689 1989
#> 6690 2002
#> 6691 1997
#> 6692 2001
#> 6693 2001
#> 6694 1990
#> 6695 1993
#> 6696 1992
#> 6697 2008
#> 6698 1996
#> 6699 1996
#> 6700 1997
#> 6701 2000
#> 6702 2006
#> 6703 1996
#> 6704 1997
#> 6705 1996
#> 6706 1994
#> 6707 1996
#> 6708 1996
#> 6709 1997
#> 6710 1996
#> 6711 2004
#> 6712 1996
#> 6713 1997
#> 6714 1996
#> 6715 1997
#> 6716 1996
#> 6717 1997
#> 6718 1996
#> 6719 1997
#> 6720 1996
#> 6721 2004
#> 6722 1996
#> 6723 1996
#> 6724 1996
#> 6725 1996
#> 6726 2005
#> 6727 1995
#> 6728 1997
#> 6729 1998
#> 6730 1962
#> 6731 1962
#> 6732 1962
#> 6733 1962
#> 6734 1962
#> 6735 1962
#> 6736 1962
#> 6737 1962
#> 6738 1962
#> 6739 1962
#> 6740 1962
#> 6741 1962
#> 6742 1962
#> 6743 1962
#> 6744 1962
#> 6745 1962
#> 6746 1962
#> 6747 1962
#> 6748 1962
#> 6749 1962
#> 6750 1962
#> 6751 1962
#> 6752 1962
#> 6753 1962
#> 6754 1962
#> 6755 1962
#> 6756 1962
#> 6757 1962
#> 6758 1962
#> 6759 1962
#> 6760 1962
#> 6761 1962
#> 6762 1962
#> 6763 1962
#> 6764 1962
#> 6765 1962
#> 6766 1962
#> 6767 1962
#> 6768 1962
#> 6769 1962
#> 6770 1962
#> 6771 1962
#> 6772 1962
#> 6773 1962
#> 6774 1962
#> 6775 1962
#> 6776 1962
#> 6777 1962
#> 6778 1962
#> 6779 2003
#> 6780 2005
#> 6781 2011
#> 6782 2004
#> 6783 2009
#> 6784 2007
#> 6785 2006
#> 6786 2007
#> 6787 2011
#> 6788 2000
#> 6789 2009
#> 6790 2009
#> 6791 2003
#> 6792 1999
#> 6793 2005
#> 6794 2004
#> 6795 2001
#> 6796 2001
#> 6797 2003
#> 6798 2001
#> 6799 2002
#> 6800 2002
#> 6801 2001
#> 6802 2002
#> 6803 2001
#> 6804 2005
#> 6805 2002
#> 6806 1999
#> 6807 2001
#> 6808 2002
#> 6809 2001
#> 6810 2002
#> 6811 2002
#> 6812 2003
#> 6813 2002
#> 6814 2001
#> 6815 2012
#> 6816 2001
#> 6817 2002
#> 6818 2001
#> 6819 1999
#> 6820 2002
#> 6821 2008
#> 6822 2009
#> 6823 2004
#> 6824 2009
#> 6825 2011
#> 6826 2009
#> 6827 2012
#> 6828 2002
#> 6829 1999
#> 6830 2000
#> 6831 2001
#> 6832 1997
#> 6833 1999
#> 6834 1996
#> 6835 1999
#> 6836 1996
#> 6837 1997
#> 6838 1997
#> 6839 2000
#> 6840 1997
#> 6841 1999
#> 6842 1998
#> 6843 2009
#> 6844 1996
#> 6845 1997
#> 6846 2003
#> 6847 1999
#> 6848 1998
#> 6849 1997
#> 6850 1997
#> 6851 2000
#> 6852 2000
#> 6853 2005
#> 6854 1999
#> 6855 2001
#> 6856 1997
#> 6857 2000
#> 6858 1999
#> 6859 2002
#> 6860 1997
#> 6861 1997
#> 6862 1999
#> 6863 1999
#> 6864 1999
#> 6865 1998
#> 6866 1998
#> 6867 1998
#> 6868 2001
#> 6869 2001
#> 6870 2001
#> 6871 1999
#> 6872 1996
#> 6873 2001
#> 6874 2000
#> 6875 2000
#> 6876 2005
#> 6877 1969
#> 6878 1965
#> 6879 1970
#> 6880 1969
#> 6881 1967
#> 6882 1971
#> 6883 1992
#> 6884 1965
#> 6885 1967
#> 6886 1971
#> 6887 1971
#> 6888 1970
#> 6889 1972
#> 6890 1972
#> 6891 1988
#> 6892 1971
#> 6893 1965
#> 6894 1965
#> 6895 1966
#> 6896 1969
#> 6897 1965
#> 6898 1971
#> 6899 1965
#> 6900 1971
#> 6901 1971
#> 6902 1970
#> 6903 1969
#> 6904 1965
#> 6905 1983
#> 6906 1968
#> 6907 1969
#> 6908 1969
#> 6909 1971
#> 6910 1972
#> 6911 1978
#> 6912 1983
#> 6913 1965
#> 6914 1965
#> 6915 1987
#> 6916 1971
#> 6917 1971
#> 6918 1965
#> 6919 1965
#> 6920 1972
#> 6921 1973
#> 6922 1972
#> 6923 1973
#> 6924 1972
#> 6925 1972
#> 6926 1972
#> 6927 1977
#> 6928 1972
#> 6929 1972
#> 6930 1972
#> 6931 1974
#> 6932 1972
#> 6933 1972
#> 6934 1972
#> 6935 1973
#> 6936 1974
#> 6937 1972
#> 6938 1972
#> 6939 1973
#> 6940 1972
#> 6941 1975
#> 6942 1974
#> 6943 1973
#> 6944 1972
#> 6945 1972
#> 6946 1973
#> 6947 1972
#> 6948 1972
#> 6949 1973
#> 6950 1973
#> 6951 1972
#> 6952 1972
#> 6953 1973
#> 6954 1963
#> 6955 1963
#> 6956 1961
#> 6957 1959
#> 6958 1962
#> 6959 1955
#> 6960 1949
#> 6961 1955
#> 6962 1949
#> 6963 1969
#> 6964 1966
#> 6965 1959
#> 6966 1969
#> 6967 1944
#> 6968 1967
#> 6969 1971
#> 6970 1966
#> 6971 1949
#> 6972 1966
#> 6973 1945
#> 6974 1935
#> 6975 1969
#> 6976 1963
#> 6977 1935
#> 6978 1967
#> 6979 1967
#> 6980 1947
#> 6981 1952
#> 6982 1969
#> 6983 1944
#> 6984 1965
#> 6985 1959
#> 6986 1965
#> 6987 1955
#> 6988 1947
#> 6989 1946
#> 6990 1966
#> 6991 1965
#> 6992 1963
#> 6993 1943
#> 6994 1965
#> 6995 1961
#> 6996 1959
#> 6997 1971
#> 6998 1966
#> 6999 1973
#> 7000 1991
#> 7001 1970
#> 7002 1972
#> 7003 1973
#> 7004 1968
#> 7005 1971
#> 7006 1973
#> 7007 1972
#> 7008 1971
#> 7009 1984
#> 7010 1973
#> 7011 1970
#> 7012 1969
#> 7013 1972
#> 7014 1979
#> 7015 1973
#> 7016 1983
#> 7017 1976
#> 7018 1972
#> 7019 1974
#> 7020 1975
#> 7021 1974
#> 7022 1973
#> 7023 1972
#> 7024 1967
#> 7025 1971
#> 7026 1971
#> 7027 1973
#> 7028 1967
#> 7029 1966
#> 7030 1971
#> 7031 1982
#> 7032 1966
#> 7033 1971
#> 7034 1980
#> 7035 1975
#> 7036 1979
#> 7037 1985
#> 7038 1977
#> 7039 1970
#> 7040 1987
#> 7041 1972
#> 7042 1975
#> 7043 1973
#> 7044 1977
#> 7045 1978
#> 7046 1977
#> 7047 1972
#> 7048 1971
#> 7049 1973
#> 7050 1975
#> 7051 1998
#> 7052 1973
#> 7053 1999
#> 7054 1974
#> 7055 1973
#> 7056 1977
#> 7057 1972
#> 7058 1975
#> 7059 1974
#> 7060 1971
#> 7061 1973
#> 7062 1971
#> 7063 1986
#> 7064 1973
#> 7065 1971
#> 7066 1971
#> 7067 1973
#> 7068 1971
#> 7069 2009
#> 7070 2004
#> 7071 1999
#> 7072 2007
#> 7073 2003
#> 7074 2007
#> 7075 2011
#> 7076 2007
#> 7077 2009
#> 7078 2007
#> 7079 2003
#> 7080 2003
#> 7081 2007
#> 7082 2011
#> 7083 2013
#> 7084 2011
#> 7085 2004
#> 7086 2007
#> 7087 2005
#> 7088 2011
#> 7089 1993
#> 7090 2011
#> 7091 2006
#> 7092 2003
#> 7093 2007
#> 7094 2001
#> 7095 2007
#> 7096 2006
#> 7097 2008
#> 7098 2012
#> 7099 2011
#> 7100 2011
#> 7101 2013
#> 7102 2012
#> 7103 2011
#> 7104 2012
#> 7105 2007
#> 7106 2011
#> 7107 2013
#> 7108 2012
#> 7109 2013
#> 7110 2010
#> 7111 1989
#> 7112 1993
#> 7113 1997
#> 7114 1985
#> 7115 2001
#> 7116 1998
#> 7117 1995
#> 7118 1999
#> 7119 1997
#> 7120 1997
#> 7121 1997
#> 7122 1988
#> 7123 1987
#> 7124 1991
#> 7125 1994
#> 7126 1994
#> 7127 1990
#> 7128 1987
#> 7129 1995
#> 7130 1987
#> 7131 1985
#> 7132 1989
#> 7133 1987
#> 7134 1987
#> 7135 1988
#> 7136 2004
#> 7137 2009
#> 7138 2003
#> 7139 1995
#> 7140 1951
#> 7141 1968
#> 7142 1990
#> 7143 1996
#> 7144 1935
#> 7145 1981
#> 7146 1991
#> 7147 1935
#> 7148 1935
#> 7149 1996
#> 7150 1995
#> 7151 1959
#> 7152 1959
#> 7153 1990
#> 7154 2013
#> 7155 2014
#> 7156 2013
#> 7157 1935
#> 7158 2014
#> 7159 1968
#> 7160 1966
#> 7161 2013
#> 7162 1990
#> 7163 1937
#> 7164 1954
#> 7165 1935
#> 7166 1991
#> 7167 1988
#> 7168 1983
#> 7169 1977
#> 7170 1966
#> 7171 1966
#> 7172 1935
#> 7173 1935
#> 7174 1935
#> 7175 1976
#> 7176 1989
#> 7177 1993
#> 7178 1992
#> 7179 1994
#> 7180 1998
#> 7181 1990
#> 7182 2000
#> 7183 1936
#> 7184 1953
#> 7185 1959
#> 7186 1935
#> 7187 1963
#> 7188 1935
#> 7189 1994
#> 7190 1983
#> 7191 1966
#> 7192 1935
#> 7193 1935
#> 7194 1935
#> 7195 1963
#> 7196 1939
#> 7197 1988
#> 7198 1935
#> 7199 1959
#> 7200 1965
#> 7201 1944
#> 7202 1935
#> 7203 1961
#> 7204 1994
#> 7205 1994
#> 7206 1995
#> 7207 2003
#> 7208 1969
#> 7209 1987
#> 7210 1989
#> 7211 1990
#> 7212 2013
#> 7213 1980
#> 7214 2010
#> 7215 2006
#> 7216 1996
#> 7217 1996
#> 7218 1985
#> 7219 2000
#> 7220 2003
#> 7221 1990
#> 7222 2003
#> 7223 1991
#> 7224 2006
#> 7225 1995
#> 7226 1961
#> 7227 2003
#> 7228 1995
#> 7229 1961
#> 7230 2003
#> 7231 1995
#> 7232 1989
#> 7233 1989
#> 7234 1996
#> 7235 1985
#> 7236 1996
#> 7237 1995
#> 7238 1995
#> 7239 1961
#> 7240 1986
#> 7241 1961
#> 7242 1989
#> 7243 2011
#> 7244 1994
#> 7245 1999
#> 7246 1975
#> 7247 1974
#> 7248 1988
#> 7249 1998
#> 7250 1975
#> 7251 1974
#> 7252 1974
#> 7253 1998
#> 7254 1999
#> 7255 1999
#> 7256 2001
#> 7257 2000
#> 7258 2000
#> 7259 2001
#> 7260 2001
#> 7261 1999
#> 7262 1999
#> 7263 2001
#> 7264 2001
#> 7265 2001
#> 7266 1978
#> 7267 1988
#> 7268 1990
#> 7269 2001
#> 7270 1989
#> 7271 2000
#> 7272 1983
#> 7273 1983
#> 7274 1990
#> 7275 2002
#> 7276 2001
#> 7277 2000
#> 7278 2001
#> 7279 1990
#> 7280 1982
#> 7281 1988
#> 7282 1989
#> 7283 1995
#> 7284 1988
#> 7285 1989
#> 7286 1989
#> 7287 1990
#> 7288 1990
#> 7289 1982
#> 7290 1991
#> 7291 2002
#> 7292 1987
#> 7293 1987
#> 7294 1981
#> 7295 1982
#> 7296 1982
#> 7297 1993
#> 7298 1989
#> 7299 1993
#> 7300 2002
#> 7301 1989
#> 7302 1994
#> 7303 1981
#> 7304 1987
#> 7305 1987
#> 7306 2001
#> 7307 1982
#> 7308 2001
#> 7309 1978
#> 7310 1988
#> 7311 1990
#> 7312 2001
#> 7313 1989
#> 7314 2000
#> 7315 2001
#> 7316 1983
#> 7317 1983
#> 7318 1990
#> 7319 2002
#> 7320 2001
#> 7321 2000
#> 7322 2001
#> 7323 1990
#> 7324 1982
#> 7325 1988
#> 7326 1989
#> 7327 1995
#> 7328 1988
#> 7329 1989
#> 7330 2002
#> 7331 1989
#> 7332 1990
#> 7333 1990
#> 7334 2003
#> 7335 1982
#> 7336 1991
#> 7337 2002
#> 7338 1987
#> 7339 1987
#> 7340 1981
#> 7341 1982
#> 7342 1982
#> 7343 1993
#> 7344 1989
#> 7345 1993
#> 7346 2002
#> 7347 1989
#> 7348 1994
#> 7349 1981
#> 7350 1987
#> 7351 1987
#> 7352 2001
#> 7353 2001
#> 7354 1997
#> 7355 1988
#> 7356 1999
#> 7357 1988
#> 7358 1999
#> 7359 1996
#> 7360 1988
#> 7361 1991
#> 7362 1995
#> 7363 1976
#> 7364 2003
#> 7365 1986
#> 7366 1986
#> 7367 2004
#> 7368 1999
#> 7369 1996
#> 7370 1985
#> 7371 2004
#> 7372 1997
#> 7373 1990
#> 7374 1995
#> 7375 1994
#> 7376 1999
#> 7377 1993
#> 7378 1980
#> 7379 1988
#> 7380 1969
#> 7381 1995
#> 7382 1999
#> 7383 1990
#> 7384 1983
#> 7385 2000
#> 7386 1986
#> 7387 1987
#> 7388 1995
#> 7389 1987
#> 7390 1989
#> 7391 2000
#> 7392 1993
#> 7393 1995
#> 7394 1983
#> 7395 1990
#> 7396 1987
#> 7397 1991
#> 7398 1988
#> 7399 1987
#> 7400 1986
#> 7401 1988
#> 7402 1985
#> 7403 1989
#> 7404 1988
#> 7405 1988
#> 7406 1987
#> 7407 1986
#> 7408 1989
#> 7409 1985
#> 7410 1989
#> 7411 1988
#> 7412 1990
#> 7413 1987
#> 7414 1990
#> 7415 1989
#> 7416 1991
#> 7417 1991
#> 7418 2013
#> 7419 2011
#> 7420 2012
#> 7421 2014
#> 7422 2011
#> 7423 2011
#> 7424 2012
#> 7425 2011
#> 7426 2012
#> 7427 2004
#> 7428 1996
#> 7429 1999
#> 7430 1995
#> 7431 1998
#> 7432 1995
#> 7433 2005
#> 7434 1987
#> 7435 1991
#> 7436 2006
#> 7437 1980
#> 7438 1980
#> 7439 1997
#> 7440 2006
#> 7441 2006
#> 7442 1990
#> 7443 1980
#> 7444 2000
#> 7445 2006
#> 7446 1980
#> 7447 1980
#> 7448 1984
#> 7449 1980
#> 7450 1999
#> 7451 1980
#> 7452 2006
#> 7453 1980
#> 7454 2006
#> 7455 2006
#> 7456 1980
#> 7457 2006
#> 7458 2006
#> 7459 1980
#> 7460 2006
#> 7461 2006
#> 7462 1980
#> 7463 2006
#> 7464 1980
#> 7465 2006
#> 7466 2006
#> 7467 1980
#> 7468 1980
#> 7469 1980
#> 7470 1980
#> 7471 2004
#> 7472 1992
#> 7473 1980
#> 7474 1980
#> 7475 2006
#> 7476 1980
#> 7477 1980
#> 7478 2006
#> 7479 2006
#> 7480 1987
#> 7481 2006
#> 7482 1980
#> 7483 1983
#> 7484 2006
#> 7485 1980
#> 7486 2006
#> 7487 2006
#> 7488 1999
#> 7489 2006
#> 7490 1980
#> 7491 2006
#> 7492 2006
#> 7493 2006
#> 7494 1980
#> 7495 2006
#> 7496 2006
#> 7497 2006
#> 7498 2006
#> 7499 2006
#> 7500 2006
#> 7501 2006
#> 7502 1980
#> 7503 2006
#> 7504 2006
#> 7505 1992
#> 7506 2006
#> 7507 2006
#> 7508 2006
#> 7509 2006
#> 7510 2006
#> 7511 1980
#> 7512 2006
#> 7513 1980
#> 7514 2006
#> 7515 2006
#> 7516 1999
#> 7517 2007
#> 7518 1980
#> 7519 2006
#> 7520 2006
#> 7521 2006
#> 7522 2006
#> 7523 2006
#> 7524 2006
#> 7525 2006
#> 7526 2006
#> 7527 2006
#> 7528 2006
#> 7529 1980
#> 7530 1980
#> 7531 2006
#> 7532 2004
#> 7533 1980
#> 7534 1980
#> 7535 2006
#> 7536 2006
#> 7537 2006
#> 7538 2006
#> 7539 2006
#> 7540 1993
#> 7541 1993
#> 7542 1992
#> 7543 1994
#> 7544 1990
#> 7545 1992
#> 7546 1992
#> 7547 1993
#> 7548 1992
#> 7549 1992
#> 7550 1994
#> 7551 1992
#> 7552 1993
#> 7553 1991
#> 7554 1992
#> 7555 1994
#> 7556 1992
#> 7557 1993
#> 7558 1994
#> 7559 1994
#> 7560 1992
#> 7561 1992
#> 7562 1991
#> 7563 1993
#> 7564 1992
#> 7565 1994
#> 7566 1991
#> 7567 1992
#> 7568 1994
#> 7569 1992
#> 7570 1993
#> 7571 1991
#> 7572 1993
#> 7573 1993
#> 7574 1992
#> 7575 1992
#> 7576 1993
#> 7577 1993
#> 7578 1991
#> 7579 1992
#> 7580 1991
#> 7581 1990
#> 7582 1991
#> 7583 1991
#> 7584 1995
#> 7585 1993
#> 7586 1993
#> 7587 1992
#> 7588 1991
#> 7589 1992
#> 7590 1994
#> 7591 1991
#> 7592 1992
#> 7593 1993
#> 7594 1991
#> 7595 1992
#> 7596 1994
#> 7597 1992
#> 7598 1993
#> 7599 1991
#> 7600 1995
#> 7601 1992
#> 7602 1992
#> 7603 1991
#> 7604 1992
#> 7605 1991
#> 7606 1991
#> 7607 1992
#> 7608 1992
#> 7609 1991
#> 7610 1992
#> 7611 1991
#> 7612 1991
#> 7613 1992
#> 7614 1993
#> 7615 1994
#> 7616 1992
#> 7617 1992
#> 7618 1991
#> 7619 1991
#> 7620 1992
#> 7621 1993
#> 7622 1993
#> 7623 1992
#> 7624 1991
#> 7625 1990
#> 7626 1992
#> 7627 1992
#> 7628 1995
#> 7629 1993
#> 7630 1993
#> 7631 1992
#> 7632 1991
#> 7633 1994
#> 7634 1993
#> 7635 1991
#> 7636 1993
#> 7637 1991
#> 7638 1992
#> 7639 1993
#> 7640 1992
#> 7641 1993
#> 7642 1994
#> 7643 1995
#> 7644 1992
#> 7645 1992
#> 7646 1994
#> 7647 1992
#> 7648 1991
#> 7649 1993
#> 7650 1992
#> 7651 1992
#> 7652 1991
#> 7653 1991
#> 7654 1991
#> 7655 1992
#> 7656 1993
#> 7657 1994
#> 7658 1991
#> 7659 1992
#> 7660 1992
#> 7661 1993
#> 7662 1992
#> 7663 1992
#> 7664 1993
#> 7665 1993
#> 7666 1992
#> 7667 1994
#> 7668 1990
#> 7669 1992
#> 7670 1992
#> 7671 1993
#> 7672 1993
#> 7673 1992
#> 7674 1992
#> 7675 1994
#> 7676 1993
#> 7677 1993
#> 7678 1991
#> 7679 1992
#> 7680 1993
#> 7681 1992
#> 7682 1993
#> 7683 1994
#> 7684 1993
#> 7685 1992
#> 7686 1994
#> 7687 1992
#> 7688 1991
#> 7689 1993
#> 7690 1992
#> 7691 1994
#> 7692 1991
#> 7693 1992
#> 7694 1991
#> 7695 1992
#> 7696 1993
#> 7697 1994
#> 7698 1991
#> 7699 1992
#> 7700 1992
#> 7701 1992
#> 7702 1992
#> 7703 1986
#> 7704 1975
#> 7705 1979
#> 7706 1974
#> 7707 1973
#> 7708 1974
#> 7709 1986
#> 7710 1975
#> 7711 1973
#> 7712 1983
#> 7713 1987
#> 7714 1973
#> 7715 1985
#> 7716 1979
#> 7717 1977
#> 7718 1983
#> 7719 1988
#> 7720 1986
#> 7721 1975
#> 7722 1979
#> 7723 1986
#> 7724 1977
#> 7725 1986
#> 7726 1989
#> 7727 1992
#> 7728 1995
#> 7729 1995
#> 7730 1994
#> 7731 1991
#> 7732 1989
#> 7733 1995
#> 7734 1995
#> 7735 1991
#> 7736 1989
#> 7737 1994
#> 7738 1992
#> 7739 1993
#> 7740 1991
#> 7741 1995
#> 7742 1995
#> 7743 1989
#> 7744 1993
#> 7745 1995
#> 7746 1995
#> 7747 1995
#> 7748 1998
#> 7749 2007
#> 7750 1998
#> 7751 2009
#> 7752 2006
#> 7753 1998
#> 7754 1998
#> 7755 1998
#> 7756 2004
#> 7757 1998
#> 7758 1998
#> 7759 2000
#> 7760 1998
#> 7761 2005
#> 7762 2004
#> 7763 1998
#> 7764 1998
#> 7765 2006
#> 7766 1998
#> 7767 1998
#> 7768 1998
#> 7769 1998
#> 7770 2009
#> 7771 2009
#> 7772 1998
#> 7773 1998
#> 7774 2005
#> 7775 1981
#> 7776 1997
#> 7777 1996
#> 7778 1999
#> 7779 1976
#> 7780 1985
#> 7781 1978
#> 7782 1992
#> 7783 1986
#> 7784 1977
#> 7785 1993
#> 7786 1992
#> 7787 1982
#> 7788 1977
#> 7789 1976
#> 7790 1986
#> 7791 1977
#> 7792 1977
#> 7793 1987
#> 7794 1984
#> 7795 1981
#> 7796 1984
#> 7797 1999
#> 7798 1978
#> 7799 1993
#> 7800 1997
#> 7801 2006
#> 7802 2005
#> 7803 2005
#> 7804 2005
#> 7805 2006
#> 7806 2006
#> 7807 2007
#> 7808 2004
#> 7809 2006
#> 7810 2006
#> 7811 2005
#> 7812 2006
#> 7813 2006
#> 7814 2005
#> 7815 2007
#> 7816 2005
#> 7817 2008
#> 7818 2007
#> 7819 2006
#> 7820 2005
#> 7821 2006
#> 7822 2004
#> 7823 2007
#> 7824 2006
#> 7825 2007
#> 7826 2005
#> 7827 2008
#> 7828 2007
#> 7829 2005
#> 7830 2008
#> 7831 2007
#> 7832 2005
#> 7833 2007
#> 7834 2006
#> 7835 2007
#> 7836 2003
#> 7837 2008
#> 7838 2003
#> 7839 2007
#> 7840 1959
#> 7841 1951
#> 7842 1947
#> 7843 1962
#> 7844 1961
#> 7845 1960
#> 7846 1953
#> 7847 1951
#> 7848 1946
#> 7849 1955
#> 7850 1955
#> 7851 1961
#> 7852 1945
#> 7853 1949
#> 7854 1945
#> 7855 1959
#> 7856 1963
#> 7857 1949
#> 7858 1955
#> 7859 1949
#> 7860 1949
#> 7861 1945
#> 7862 1911
#> 7863 1909
#> 7864 1913
#> 7865 1911
#> 7866 1909
#> 7867 1895
#> 7868 1917
#> 7869 1915
#> 7870 1916
#> 7871 1913
#> 7872 1915
#> 7873 1919
#> 7874 1904
#> 7875 1917
#> 7876 1912
#> 7877 1910
#> 7878 1907
#> 7879 1908
#> 7880 1893
#> 7881 1905
#> 7882 1905
#> 7883 1916
#> 7884 1913
#> 7885 1913
#> 7886 1913
#> 7887 1917
#> 7888 1905
#> 7889 1894
#> 7890 1905
#> 7891 1898
#> 7892 1915
#> 7893 1913
#> 7894 1904
#> 7895 1911
#> 7896 1913
#> 7897 1903
#> 7898 1896
#> 7899 1917
#> 7900 1913
#> 7901 1915
#> 7902 1917
#> 7903 1909
#> 7904 1898
#> 7905 1906
#> 7906 1905
#> 7907 1913
#> 7908 1907
#> 7909 1917
#> 7910 1995
#> 7911 1999
#> 7912 2000
#> 7913 2000
#> 7914 2001
#> 7915 1998
#> 7916 1999
#> 7917 1998
#> 7918 1997
#> 7919 1993
#> 7920 1993
#> 7921 1997
#> 7922 1997
#> 7923 2001
#> 7924 1998
#> 7925 1999
#> 7926 2000
#> 7927 2000
#> 7928 2001
#> 7929 1996
#> 7930 1998
#> 7931 1997
#> 7932 1998
#> 7933 1999
#> 7934 1997
#> 7935 1997
#> 7936 2000
#> 7937 1996
#> 7938 1999
#> 7939 1997
#> 7940 2000
#> 7941 1998
#> 7942 2000
#> 7943 2001
#> 7944 1995
#> 7945 1997
#> 7946 1997
#> 7947 1997
#> 7948 1997
#> 7949 1998
#> 7950 1997
#> 7951 1998
#> 7952 1997
#> 7953 1997
#> 7954 1998
#> 7955 1998
#> 7956 1998
#> 7957 1997
#> 7958 1996
#> 7959 1997
#> 7960 1999
#> 7961 1997
#> 7962 1997
#> 7963 1997
#> 7964 2000
#> 7965 1999
#> 7966 1995
#> 7967 1999
#> 7968 1997
#> 7969 1997
#> 7970 1997
#> 7971 1997
#> 7972 1996
#> 7973 1998
#> 7974 1998
#> 7975 1998
#> 7976 2001
#> 7977 2001
#> 7978 1996
#> 7979 1999
#> 7980 1997
#> 7981 2006
#> 7982 1999
#> 7983 2000
#> 7984 1999
#> 7985 1998
#> 7986 2006
#> 7987 1999
#> 7988 1999
#> 7989 2001
#> 7990 1999
#> 7991 1998
#> 7992 2000
#> 7993 1999
#> 7994 2006
#> 7995 1999
#> 7996 1998
#> 7997 2000
#> 7998 1999
#> 7999 1998
#> 8000 1999
#> 8001 2001
#> 8002 2002
#> 8003 1999
#> 8004 1999
#> 8005 1999
#> 8006 2001
#> 8007 2002
#> 8008 1999
#> 8009 1999
#> 8010 1999
#> 8011 1999
#> 8012 1999
#> 8013 2000
#> 8014 2000
#> 8015 2000
#> 8016 2000
#> 8017 1999
#> 8018 1999
#> 8019 2000
#> 8020 2000
#> 8021 2003
#> 8022 1999
#> 8023 1998
#> 8024 1997
#> 8025 1999
#> 8026 1982
#> 8027 1983
#> 8028 1982
#> 8029 1981
#> 8030 1995
#> 8031 1977
#> 8032 1981
#> 8033 1989
#> 8034 1985
#> 8035 1988
#> 8036 1984
#> 8037 1971
#> 8038 1992
#> 8039 1986
#> 8040 1984
#> 8041 1981
#> 8042 1982
#> 8043 1981
#> 8044 1981
#> 8045 1981
#> 8046 1980
#> 8047 1984
#> 8048 1982
#> 8049 1982
#> 8050 1989
#> 8051 1983
#> 8052 1985
#> 8053 1983
#> 8054 1983
#> 8055 1997
#> 8056 1972
#> 8057 1982
#> 8058 1971
#> 8059 1983
#> 8060 1982
#> 8061 1981
#> 8062 1981
#> 8063 1999
#> 8064 1974
#> 8065 1962
#> 8066 1970
#> 8067 1989
#> 8068 1989
#> 8069 1982
#> 8070 1981
#> 8071 1982
#> 8072 1982
#> 8073 1971
#> 8074 1971
#> 8075 1971
#> 8076 1970
#> 8077 1998
#> 8078 2006
#> 8079 1987
#> 8080 1986
#> 8081 1988
#> 8082 1988
#> 8083 1986
#> 8084 1978
#> 8085 2007
#> 8086 1970
#> 8087 1984
#> 8088 2002
#> 8089 2007
#> 8090 1984
#> 8091 1970
#> 8092 1975
#> 8093 1987
#> 8094 2008
#> 8095 1995
#> 8096 1970
#> 8097 1995
#> 8098 1987
#> 8099 1987
#> 8100 2010
#> 8101 1987
#> 8102 1995
#> 8103 1984
#> 8104 2000
#> 8105 1981
#> 8106 1996
#> 8107 2013
#> 8108 2011
#> 8109 2013
#> 8110 2003
#> 8111 2004
#> 8112 2011
#> 8113 2013
#> 8114 2013
#> 8115 2006
#> 8116 2013
#> 8117 2005
#> 8118 2001
#> 8119 2003
#> 8120 2013
#> 8121 2001
#> 8122 2001
#> 8123 2003
#> 8124 2009
#> 8125 1933
#> 8126 1933
#> 8127 1929
#> 8128 1935
#> 8129 1937
#> 8130 1917
#> 8131 1929
#> 8132 1931
#> 8133 1934
#> 8134 1933
#> 8135 1936
#> 8136 1934
#> 8137 1937
#> 8138 1916
#> 8139 1933
#> 8140 1917
#> 8141 1933
#> 8142 1923
#> 8143 1933
#> 8144 1919
#> 8145 1921
#> 8146 1919
#> 8147 1923
#> 8148 1922
#> 8149 1929
#> 8150 1931
#> 8151 1931
#> 8152 1916
#> 8153 1992
#> 8154 1990
#> 8155 1992
#> 8156 1991
#> 8157 1993
#> 8158 1992
#> 8159 1995
#> 8160 1992
#> 8161 1993
#> 8162 1990
#> 8163 1993
#> 8164 1992
#> 8165 1990
#> 8166 1990
#> 8167 1995
#> 8168 1993
#> 8169 1994
#> 8170 1992
#> 8171 1994
#> 8172 1992
#> 8173 1994
#> 8174 1990
#> 8175 1991
#> 8176 1992
#> 8177 1994
#> 8178 1992
#> 8179 1992
#> 8180 1992
#> 8181 1994
#> 8182 1996
#> 8183 1992
#> 8184 1992
#> 8185 1992
#> 8186 1992
#> 8187 1992
#> 8188 1996
#> 8189 1998
#> 8190 2000
#> 8191 1994
#> 8192 1992
#> 8193 1992
#> 8194 1992
#> 8195 1992
#> 8196 1992
#> 8197 1992
#> 8198 1992
#> 8199 1992
#> 8200 1996
#> 8201 1994
#> 8202 1992
#> 8203 1996
#> 8204 1992
#> 8205 1992
#> 8206 1994
#> 8207 1994
#> 8208 1992
#> 8209 1992
#> 8210 1994
#> 8211 1994
#> 8212 1992
#> 8213 1994
#> 8214 1996
#> 8215 1992
#> 8216 1992
#> 8217 1994
#> 8218 1996
#> 8219 1998
#> 8220 1996
#> 8221 1992
#> 8222 1998
#> 8223 1994
#> 8224 1992
#> 8225 1992
#> 8226 1992
#> 8227 1997
#> 8228 1994
#> 8229 1994
#> 8230 1996
#> 8231 1994
#> 8232 1995
#> 8233 1996
#> 8234 1995
#> 8235 1996
#> 8236 1996
#> 8237 1995
#> 8238 1995
#> 8239 1996
#> 8240 1996
#> 8241 2005
#> 8242 1999
#> 8243 1998
#> 8244 1997
#> 8245 1997
#> 8246 2005
#> 8247 2002
#> 8248 1999
#> 8249 1990
#> 8250 1999
#> 8251 1999
#> 8252 2003
#> 8253 1999
#> 8254 2000
#> 8255 1999
#> 8256 2000
#> 8257 1999
#> 8258 1998
#> 8259 2006
#> 8260 2007
#> 8261 1997
#> 8262 1999
#> 8263 2001
#> 8264 2000
#> 8265 2001
#> 8266 2002
#> 8267 2000
#> 8268 2001
#> 8269 1999
#> 8270 1991
#> 8271 2002
#> 8272 1999
#> 8273 1999
#> 8274 2001
#> 8275 1992
#> 8276 2000
#> 8277 2008
#> 8278 1999
#> 8279 1998
#> 8280 1998
#> 8281 1998
#> 8282 1999
#> 8283 1999
#> 8284 1990
#> 8285 1988
#> 8286 2009
#> 8287 2001
#> 8288 1991
#> 8289 1992
#> 8290 1979
#> 8291 1991
#> 8292 2005
#> 8293 1973
#> 8294 1992
#> 8295 1988
#> 8296 1990
#> 8297 1991
#> 8298 1991
#> 8299 1990
#> 8300 1989
#> 8301 1991
#> 8302 1993
#> 8303 1993
#> 8304 1992
#> 8305 1991
#> 8306 1992
#> 8307 1989
#> 8308 1981
#> 8309 2011
#> 8310 1991
#> 8311 1991
#> 8312 2005
#> 8313 1991
#> 8314 1982
#> 8315 1993
#> 8316 1980
#> 8317 1991
#> 8318 2003
#> 8319 1973
#> 8320 2013
#> 8321 1975
#> 8322 2004
#> 8323 1985
#> 8324 1987
#> 8325 1989
#> 8326 1989
#> 8327 1989
#> 8328 1991
#> 8329 2000
#> 8330 1987
#> 8331 1987
#> 8332 2001
#> 8333 2002
#> 8334 1991
#> 8335 1989
#> 8336 1987
#> 8337 1995
#> 8338 1988
#> 8339 1911
#> 8340 1910
#> 8341 1911
#> 8342 1910
#> 8343 1912
#> 8344 1908
#> 8345 1918
#> 8346 1908
#> 8347 1915
#> 8348 1908
#> 8349 1906
#> 8350 1912
#> 8351 1912
#> 8352 1914
#> 8353 1912
#> 8354 1907
#> 8355 1902
#> 8356 1898
#> 8357 1900
#> 8358 1912
#> 8359 2012
#> 8360 2011
#> 8361 2013
#> 8362 2011
#> 8363 2011
#> 8364 2011
#> 8365 2011
#> 8366 2013
#> 8367 2013
#> 8368 2013
#> 8369 2011
#> 8370 2012
#> 8371 2011
#> 8372 2013
#> 8373 2013
#> 8374 2012
#> 8375 2013
#> 8376 2012
#> 8377 2012
#> 8378 2011
#> 8379 2012
#> 8380 2011
#> 8381 1983
#> 8382 1982
#> 8383 1984
#> 8384 1982
#> 8385 1982
#> 8386 1978
#> 8387 1982
#> 8388 1981
#> 8389 1981
#> 8390 1984
#> 8391 1996
#> 8392 1982
#> 8393 1986
#> 8394 1982
#> 8395 1983
#> 8396 1975
#> 8397 1985
#> 8398 1979
#> 8399 1995
#> 8400 1980
#> 8401 1981
#> 8402 1984
#> 8403 1985
#> 8404 1983
#> 8405 1983
#> 8406 1979
#> 8407 1984
#> 8408 1983
#> 8409 1983
#> 8410 1983
#> 8411 1983
#> 8412 1998
#> 8413 1977
#> 8414 1985
#> 8415 1982
#> 8416 1983
#> 8417 1982
#> 8418 1984
#> 8419 1982
#> 8420 1982
#> 8421 1978
#> 8422 1981
#> 8423 1982
#> 8424 1981
#> 8425 1981
#> 8426 1984
#> 8427 1996
#> 8428 1982
#> 8429 1986
#> 8430 1982
#> 8431 1983
#> 8432 1975
#> 8433 1985
#> 8434 1979
#> 8435 1984
#> 8436 1995
#> 8437 1980
#> 8438 1981
#> 8439 1984
#> 8440 1985
#> 8441 1983
#> 8442 1983
#> 8443 1979
#> 8444 1984
#> 8445 1983
#> 8446 1983
#> 8447 1983
#> 8448 1983
#> 8449 1998
#> 8450 1977
#> 8451 1985
#> 8452 1985
#> 8453 2012
#> 8454 2011
#> 8455 2013
#> 8456 2011
#> 8457 1983
#> 8458 2011
#> 8459 2011
#> 8460 1978
#> 8461 2010
#> 8462 2010
#> 8463 1983
#> 8464 1981
#> 8465 2013
#> 8466 1979
#> 8467 2011
#> 8468 2007
#> 8469 1983
#> 8470 1983
#> 8471 2012
#> 8472 2012
#> 8473 2010
#> 8474 2011
#> 8475 2013
#> 8476 1999
#> 8477 1998
#> 8478 1985
#> 8479 1983
#> 8480 1978
#> 8481 1998
#> 8482 1996
#> 8483 1996
#> 8484 1998
#> 8485 2002
#> 8486 1983
#> 8487 1981
#> 8488 2011
#> 8489 1979
#> 8490 1998
#> 8491 2007
#> 8492 1983
#> 8493 1981
#> 8494 2010
#> 8495 2011
#> 8496 1996
#> 8497 1999
#> 8498 2002
#> 8499 2003
#> 8500 2004
#> 8501 2006
#> 8502 2005
#> 8503 2002
#> 8504 2003
#> 8505 2001
#> 8506 2002
#> 8507 2003
#> 8508 2009
#> 8509 2009
#> 8510 2006
#> 8511 2009
#> 8512 2009
#> 8513 2009
#> 8514 2008
#> 8515 2009
#> 8516 2009
#> 8517 2011
#> 8518 2011
#> 8519 2014
#> 8520 2011
#> 8521 2013
#> 8522 2011
#> 8523 2013
#> 8524 1983
#> 8525 2011
#> 8526 1978
#> 8527 2010
#> 8528 2013
#> 8529 1923
#> 8530 1933
#> 8531 1938
#> 8532 1927
#> 8533 1949
#> 8534 1923
#> 8535 1934
#> 8536 1940
#> 8537 1935
#> 8538 1930
#> 8539 1944
#> 8540 1937
#> 8541 1929
#> 8542 1925
#> 8543 1933
#> 8544 1921
#> 8545 1929
#> 8546 1935
#> 8547 1931
#> 8548 1938
#> 8549 1931
#> 8550 1938
#> 8551 1933
#> 8552 1945
#> 8553 1956
#> 8554 1939
#> 8555 1955
#> 8556 1957
#> 8557 1957
#> 8558 1954
#> 8559 1978
#> 8560 2000
#> 8561 1997
#> 8562 2001
#> 8563 1998
#> 8564 2000
#> 8565 2003
#> 8566 1997
#> 8567 1998
#> 8568 2001
#> 8569 2003
#> 8570 1998
#> 8571 1997
#> 8572 1998
#> 8573 2004
#> 8574 1998
#> 8575 2002
#> 8576 2002
#> 8577 2002
#> 8578 2002
#> 8579 2000
#> 8580 2000
#> 8581 1951
#> 8582 2003
#> 8583 2001
#> 8584 2002
#> 8585 2000
#> 8586 2000
#> 8587 2002
#> 8588 2003
#> 8589 2002
#> 8590 2002
#> 8591 2000
#> 8592 2003
#> 8593 2001
#> 8594 2005
#> 8595 2002
#> 8596 2002
#> 8597 2004
#> 8598 2000
#> 8599 2001
#> 8600 2003
#> 8601 2001
#> 8602 2004
#> 8603 2002
#> 8604 2001
#> 8605 2003
#> 8606 2002
#> 8607 2001
#> 8608 2001
#> 8609 2000
#> 8610 2001
#> 8611 2002
#> 8612 2002
#> 8613 2002
#> 8614 2001
#> 8615 2002
#> 8616 2002
#> 8617 2001
#> 8618 2000
#> 8619 2004
#> 8620 2001
#> 8621 2008
#> 8622 2002
#> 8623 2001
#> 8624 1965
#> 8625 1960
#> 8626 1961
#> 8627 1957
#> 8628 1955
#> 8629 1957
#> 8630 1957
#> 8631 1963
#> 8632 1957
#> 8633 1972
#> 8634 1955
#> 8635 1961
#> 8636 1961
#> 8637 1957
#> 8638 1965
#> 8639 1965
#> 8640 1986
#> 8641 1957
#> 8642 1966
#> 8643 1955
#> 8644 1958
#> 8645 1957
#> 8646 1958
#> 8647 1955
#> 8648 1967
#> 8649 1963
#> 8650 1957
#> 8651 1957
#> 8652 1955
#> 8653 1973
#> 8654 1955
#> 8655 1965
#> 8656 1969
#> 8657 1957
#> 8658 1967
#> 8659 1959
#> 8660 1967
#> 8661 1957
#> 8662 1970
#> 8663 1961
#> 8664 1955
#> 8665 1965
#> 8666 1955
#> 8667 1968
#> 8668 1956
#> 8669 1955
#> 8670 1963
#> 8671 1955
#> 8672 1957
#> 8673 1953
#> 8674 1951
#> 8675 1976
#> 8676 1991
#> 8677 1985
#> 8678 1984
#> 8679 1984
#> 8680 1989
#> 8681 1985
#> 8682 1991
#> 8683 1985
#> 8684 1985
#> 8685 1986
#> 8686 1979
#> 8687 1979
#> 8688 2009
#> 8689 2009
#> 8690 2008
#> 8691 2013
#> 8692 2008
#> 8693 2009
#> 8694 2008
#> 8695 2008
#> 8696 2008
#> 8697 2012
#> 8698 2009
#> 8699 2013
#> 8700 2010
#> 8701 2009
#> 8702 2009
#> 8703 2008
#> 8704 2008
#> 8705 2008
#> 8706 2009
#> 8707 2012
#> 8708 2009
#> 8709 2014
#> 8710 2009
#> 8711 2008
#> 8712 2013
#> 8713 2011
#> 8714 2008
#> 8715 2014
#> 8716 2008
#> 8717 2008
#> 8718 2014
#> 8719 2009
#> 8720 2011
#> 8721 2009
#> 8722 2009
#> 8723 2014
#> 8724 2012
#> 8725 2008
#> 8726 2008
#> 8727 2009
#> 8728 2009
#> 8729 2010
#> 8730 2009
#> 8731 2011
#> 8732 2008
#> 8733 2009
#> 8734 2011
#> 8735 2008
#> 8736 2012
#> 8737 1990
#> 8738 1991
#> 8739 2011
#> 8740 1990
#> 8741 2002
#> 8742 2001
#> 8743 2002
#> 8744 2000
#> 8745 2001
#> 8746 2002
#> 8747 2001
#> 8748 2002
#> 8749 2001
#> 8750 2007
#> 8751 2007
#> 8752 2000
#> 8753 2001
#> 8754 2000
#> 8755 1970
#> 8756 1967
#> 8757 1979
#> 8758 1980
#> 8759 1969
#> 8760 1967
#> 8761 1967
#> 8762 1970
#> 8763 1976
#> 8764 1945
#> 8765 1980
#> 8766 1955
#> 8767 1941
#> 8768 1974
#> 8769 1935
#> 8770 1945
#> 8771 1935
#> 8772 1947
#> 8773 1935
#> 8774 1942
#> 8775 1959
#> 8776 1947
#> 8777 1945
#> 8778 1945
#> 8779 1953
#> 8780 1955
#> 8781 1935
#> 8782 1941
#> 8783 1953
#> 8784 1943
#> 8785 1935
#> 8786 1941
#> 8787 1955
#> 8788 1935
#> 8789 1957
#> 8790 1982
#> 8791 1945
#> 8792 1955
#> 8793 1985
#> 8794 1984
#> 8795 1972
#> 8796 1973
#> 8797 1961
#> 8798 1971
#> 8799 1973
#> 8800 1969
#> 8801 1973
#> 8802 1972
#> 8803 1959
#> 8804 1973
#> 8805 1979
#> 8806 1973
#> 8807 1972
#> 8808 1970
#> 8809 1977
#> 8810 1994
#> 8811 1982
#> 8812 1987
#> 8813 1974
#> 8814 1975
#> 8815 1973
#> 8816 1982
#> 8817 1984
#> 8818 1979
#> 8819 1976
#> 8820 1980
#> 8821 1979
#> 8822 1974
#> 8823 1962
#> 8824 1971
#> 8825 1985
#> 8826 1982
#> 8827 1969
#> 8828 1977
#> 8829 1983
#> 8830 1981
#> 8831 2012
#> 8832 2015
#> 8833 2012
#> 8834 2009
#> 8835 2008
#> 8836 2010
#> 8837 2012
#> 8838 2012
#> 8839 2009
#> 8840 2015
#> 8841 2010
#> 8842 2013
#> 8843 2010
#> 8844 2008
#> 8845 2014
#> 8846 2008
#> 8847 2013
#> 8848 2015
#> 8849 2011
#> 8850 2008
#> 8851 2011
#> 8852 2014
#> 8853 2009
#> 8854 2010
#> 8855 2011
#> 8856 2013
#> 8857 2016
#> 8858 2011
#> 8859 2013
#> 8860 2010
#> 8861 2012
#> 8862 2008
#> 8863 2008
#> 8864 2012
#> 8865 2009
#> 8866 2012
#> 8867 2016
#> 8868 1990
#> 8869 1989
#> 8870 1989
#> 8871 1988
#> 8872 2003
#> 8873 2002
#> 8874 2002
#> 8875 2002
#> 8876 2001
#> 8877 2005
#> 8878 2004
#> 8879 2001
#> 8880 2003
#> 8881 2013
#> 8882 2003
#> 8883 2008
#> 8884 2006
#> 8885 2007
#> 8886 2003
#> 8887 2001
#> 8888 2006
#> 8889 2016
#> 8890 1997
#> 8891 1995
#> 8892 1993
#> 8893 1993
#> 8894 1997
#> 8895 1993
#> 8896 1997
#> 8897 1994
#> 8898 1996
#> 8899 1997
#> 8900 1997
#> 8901 1994
#> 8902 1994
#> 8903 1996
#> 8904 1997
#> 8905 1994
#> 8906 1996
#> 8907 1995
#> 8908 1994
#> 8909 1996
#> 8910 1995
#> 8911 1996
#> 8912 1994
#> 8913 1997
#> 8914 1996
#> 8915 1993
#> 8916 1993
#> 8917 1997
#> 8918 1997
#> 8919 1998
#> 8920 1994
#> 8921 1997
#> 8922 1995
#> 8923 1995
#> 8924 1998
#> 8925 1994
#> 8926 1993
#> 8927 1996
#> 8928 1997
#> 8929 1994
#> 8930 1994
#> 8931 1998
#> 8932 1993
#> 8933 1996
#> 8934 1997
#> 8935 1994
#> 8936 1993
#> 8937 1994
#> 8938 1995
#> 8939 2004
#> 8940 2002
#> 8941 2003
#> 8942 2007
#> 8943 2005
#> 8944 2006
#> 8945 2003
#> 8946 2003
#> 8947 2004
#> 8948 2003
#> 8949 2007
#> 8950 2005
#> 8951 2004
#> 8952 2006
#> 8953 2007
#> 8954 2003
#> 8955 2004
#> 8956 2005
#> 8957 2002
#> 8958 2005
#> 8959 2015
#> 8960 2015
#> 8961 2015
#> 8962 2015
#> 8963 2016
#> 8964 2015
#> 8965 2015
#> 8966 2015
#> 8967 2011
#> 8968 2013
#> 8969 2015
#> 8970 2015
#> 8971 2015
#> 8972 2015
#> 8973 2015
#> 8974 2015
#> 8975 2015
#> 8976 2015
#> 8977 2009
#> 8978 2015
#> 8979 2016
#> 8980 2016
#> 8981 2014
#> 8982 2015
#> 8983 2011
#> 8984 2015
#> 8985 2015
#> 8986 2009
#> 8987 2015
#> 8988 2016
#> 8989 2011
#> 8990 2015
#> 8991 2015
#> 8992 2009
#> 8993 2015
#> 8994 2015
#> 8995 2015
#> 8996 2016
#> 8997 2011
#> 8998 2015
#> 8999 2015
#> 9000 2010
#> 9001 2015
#> 9002 2011
#> 9003 2015
#> 9004 2015
#> 9005 2015
#> 9006 2010
#> 9007 2015
#> 9008 1993
#> 9009 1991
#> 9010 1991
#> 9011 1981
#> 9012 1981
#> 9013 1991
#> 9014 1991
#> 9015 1986
#> 9016 1980
#> 9017 2011
#> 9018 2007
#> 9019 2014
#> 9020 2013
#> 9021 2004
#> 9022 2006
#> 9023 2004
#> 9024 2010
#> 9025 2010
#> 9026 2006
#> 9027 2007
#> 9028 2005
#> 9029 2006
#> 9030 2003
#> 9031 2009
#> 9032 2006
#> 9033 2007
#> 9034 2009
#> 9035 2009
#> 9036 2009
#> 9037 2013
#> 9038 2005
#> 9039 2011
#> 9040 2004
#> 9041 2011
#> 9042 2009
#> 9043 2005
#> 9044 2006
#> 9045 2006
#> 9046 2011
#> 9047 2006
#> 9048 2004
#> 9049 2009
#> 9050 2007
#> 9051 2005
#> 9052 2004
#> 9053 2005
#> 9054 2007
#> 9055 2005
#> 9056 2004
#> 9057 2008
#> 9058 2006
#> 9059 1996
#> 9060 1996
#> 9061 1995
#> 9062 1973
#> 9063 1967
#> 9064 1969
#> 9065 1967
#> 9066 1972
#> 9067 1972
#> 9068 1965
#> 9069 1961
#> 9070 1967
#> 9071 1965
#> 9072 1957
#> 9073 1974
#> 9074 1963
#> 9075 1973
#> 9076 1963
#> 9077 1967
#> 9078 1970
#> 9079 1967
#> 9080 1963
#> 9081 1969
#> 9082 1969
#> 9083 1967
#> 9084 1965
#> 9085 1976
#> 9086 1967
#> 9087 1963
#> 9088 1975
#> 9089 1971
#> 9090 1963
#> 9091 1970
#> 9092 1965
#> 9093 1972
#> 9094 1965
#> 9095 2015
#> 9096 2016
#> 9097 2016
#> 9098 2015
#> 9099 2015
#> 9100 2015
#> 9101 2016
#> 9102 2015
#> 9103 2016
#> 9104 2015
#> 9105 2015
#> 9106 2016
#> 9107 2015
#> 9108 2015
#> 9109 2015
#> 9110 2015
#> 9111 2015
#> 9112 1975
#> 9113 1975
#> 9114 1974
#> 9115 1966
#> 9116 1973
#> 9117 1991
#> 9118 1967
#> 9119 1978
#> 9120 1986
#> 9121 1985
#> 9122 1993
#> 9123 1980
#> 9124 1981
#> 9125 1979
#> 9126 1990
#> 9127 1986
#> 9128 1992
#> 9129 1994
#> 9130 1991
#> 9131 1993
#> 9132 1995
#> 9133 1953
#> 9134 1927
#> 9135 1907
#> 9136 1937
#> 9137 1959
#> 9138 1939
#> 9139 1958
#> 9140 1939
#> 9141 1937
#> 9142 1927
#> 9143 1917
#> 9144 1936
#> 9145 1928
#> 9146 1947
#> 9147 1917
#> 9148 1925
#> 9149 1928
#> 9150 1927
#> 9151 1939
#> 9152 1931
#> 9153 1946
#> 9154 1957
#> 9155 1948
#> 9156 1957
#> 9157 1931
#> 9158 1939
#> 9159 1949
#> 9160 1935
#> 9161 1929
#> 9162 1941
#> 9163 1945
#> 9164 1911
#> 9165 1941
#> 9166 1911
#> 9167 1903
#> 9168 1903
#> 9169 1921
#> 9170 1911
#> 9171 1911
#> 9172 1908
#> 9173 1905
#> 9174 1899
#> 9175 1903
#> 9176 1904
#> 9177 1905
#> 9178 1906
#> 9179 1908
#> 9180 1959
#> 9181 1914
#> 9182 1906
#> 9183 1905
#> 9184 1905
#> 9185 1940
#> 9186 1903
#> 9187 1907
#> 9188 1905
#> 9189 1909
#> 9190 1907
#> 9191 1903
#> 9192 1917
#> 9193 1903
#> 9194 1919
#> 9195 1911
#> 9196 1902
#> 9197 1909
#> 9198 1905
#> 9199 1903
#> 9200 1915
#> 9201 1923
#> 9202 1909
#> 9203 1911
#> 9204 1907
#> 9205 1905
#> 9206 1937
#> 9207 1914
#> 9208 1905
#> 9209 1914
#> 9210 1901
#> 9211 1951
#> 9212 1965
#> 9213 1961
#> 9214 1957
#> 9215 1955
#> 9216 1957
#> 9217 1957
#> 9218 1963
#> 9219 1957
#> 9220 1961
#> 9221 1961
#> 9222 1957
#> 9223 1961
#> 9224 1965
#> 9225 1960
#> 9226 1958
#> 9227 1955
#> 9228 1966
#> 9229 1955
#> 9230 1958
#> 9231 1951
#> 9232 1958
#> 9233 1955
#> 9234 1963
#> 9235 1957
#> 9236 1957
#> 9237 1955
#> 9238 1955
#> 9239 1963
#> 9240 1957
#> 9241 1959
#> 9242 1956
#> 9243 1957
#> 9244 1961
#> 9245 1955
#> 9246 1965
#> 9247 1955
#> 9248 1956
#> 9249 1955
#> 9250 1963
#> 9251 1957
#> 9252 1965
#> 9253 2006
#> 9254 1994
#> 9255 1999
#> 9256 2002
#> 9257 1982
#> 9258 2004
#> 9259 2008
#> 9260 2003
#> 9261 2004
#> 9262 1992
#> 9263 1995
#> 9264 1994
#> 9265 2003
#> 9266 2005
#> 9267 2006
#> 9268 1993
#> 9269 2001
#> 9270 1989
#> 9271 2004
#> 9272 2007
#> 9273 1984
#> 9274 2004
#> 9275 1980
#> 9276 2002
#> 9277 2008
#> 9278 1992
#> 9279 1990
#> 9280 1993
#> 9281 1993
#> 9282 1990
#> 9283 2007
#> 9284 1999
#> 9285 2000
#> 9286 1998
#> 9287 2002
#> 9288 2003
#> 9289 2000
#> 9290 2006
#> 9291 2006
#> 9292 2000
#> 9293 2001
#> 9294 2005
#> 9295 1999
#> 9296 1999
#> 9297 2001
#> 9298 2005
#> 9299 2003
#> 9300 2003
#> 9301 2000
#> 9302 2003
#> 9303 2000
#> 9304 2005
#> 9305 2005
#> 9306 2001
#> 9307 2004
#> 9308 2002
#> 9309 2005
#> 9310 1997
#> 9311 1960
#> 9312 1961
#> 9313 1979
#> 9314 1961
#> 9315 1935
#> 9316 1959
#> 9317 1960
#> 9318 1977
#> 9319 1971
#> 9320 1963
#> 9321 1965
#> 9322 1967
#> 9323 1965
#> 9324 1972
#> 9325 1983
#> 9326 1972
#> 9327 1978
#> 9328 1965
#> 9329 1968
#> 9330 1937
#> 9331 1965
#> 9332 1977
#> 9333 1986
#> 9334 1974
#> 9335 1963
#> 9336 1973
#> 9337 1971
#> 9338 1962
#> 9339 1969
#> 9340 1958
#> 9341 1977
#> 9342 1965
#> 9343 1961
#> 9344 1985
#> 9345 1959
#> 9346 1955
#> 9347 1956
#> 9348 1979
#> 9349 1980
#> 9350 1983
#> 9351 1975
#> 9352 1981
#> 9353 1987
#> 9354 1961
#> 9355 1971
#> 9356 1959
#> 9357 1984
#> 9358 1973
#> 9359 1992
#> 9360 1976
#> 9361 1966
#> 9362 1976
#> 9363 1971
#> 9364 1974
#> 9365 1977
#> 9366 1975
#> 9367 1968
#> 9368 1981
#> 9369 1973
#> 9370 1974
#> 9371 1970
#> 9372 1970
#> 9373 1969
#> 9374 1972
#> 9375 1968
#> 9376 1985
#> 9377 1970
#> 9378 1971
#> 9379 1967
#> 9380 1971
#> 9381 1970
#> 9382 1968
#> 9383 1968
#> 9384 1971
#> 9385 1977
#> 9386 1966
#> 9387 1970
#> 9388 1976
#> 9389 1971
#> 9390 1972
#> 9391 1985
#> 9392 1974
#> 9393 1976
#> 9394 1971
#> 9395 1970
#> 9396 1970
#> 9397 1966
#> 9398 1966
#> 9399 1973
#> 9400 1972
#> 9401 1987
#> 9402 1970
#> 9403 1976
#> 9404 1969
#> 9405 1968
#> 9406 1970
#> 9407 1985
#> 9408 1972
#> 9409 1970
#> 9410 1971
#> 9411 1967
#> 9412 1971
#> 9413 1979
#> 9414 1968
#> 9415 1968
#> 9416 1960
#> 9417 1955
#> 9418 1951
#> 9419 1965
#> 9420 1950
#> 9421 1955
#> 9422 1965
#> 9423 1966
#> 9424 1959
#> 9425 1965
#> 9426 1946
#> 9427 1964
#> 9428 1967
#> 9429 1965
#> 9430 1949
#> 9431 1966
#> 9432 1955
#> 9433 1944
#> 9434 1959
#> 9435 1965
#> 9436 1965
#> 9437 1967
#> 9438 1967
#> 9439 1945
#> 9440 1966
#> 9441 1957
#> 9442 1959
#> 9443 1966
#> 9444 1955
#> 9445 1968
#> 9446 2007
#> 9447 2006
#> 9448 1977
#> 9449 2007
#> 9450 1971
#> 9451 1999
#> 9452 2006
#> 9453 1975
#> 9454 2004
#> 9455 1990
#> 9456 1972
#> 9457 1972
#> 9458 2006
#> 9459 1988
#> 9460 2007
#> 9461 2007
#> 9462 1973
#> 9463 1987
#> 9464 1973
#> 9465 2009
#> 9466 1971
#> 9467 2007
#> 9468 1989
#> 9469 1989
#> 9470 1974
#> 9471 1986
#> 9472 1989
#> 9473 2006
#> 9474 1989
#> 9475 1941
#> 9476 1931
#> 9477 1912
#> 9478 1955
#> 9479 1931
#> 9480 1933
#> 9481 1935
#> 9482 1962
#> 9483 1933
#> 9484 1955
#> 9485 1911
#> 9486 1931
#> 9487 1935
#> 9488 1891
#> 9489 1940
#> 9490 1968
#> 9491 1933
#> 9492 1945
#> 9493 1914
#> 9494 1965
#> 9495 1973
#> 9496 1957
#> 9497 1931
#> 9498 1923
#> 9499 1937
#> 9500 1941
#> 9501 1913
#> 9502 1937
#> 9503 1894
#> 9504 1931
#> 9505 1909
#> 9506 1959
#> 9507 1961
#> 9508 1935
#> 9509 1953
#> 9510 1933
#> 9511 1933
#> 9512 1945
#> 9513 1933
#> 9514 1931
#> 9515 1967
#> 9516 1943
#> 9517 1945
#> 9518 1943
#> 9519 1939
#> 9520 1961
#> 9521 1939
#> 9522 1947
#> 9523 1939
#> 9524 1945
#> 9525 1937
#> 9526 1937
#> 9527 1937
#> 9528 1941
#> 9529 1937
#> 9530 1937
#> 9531 1953
#> 9532 1947
#> 9533 1944
#> 9534 1947
#> 9535 1944
#> 9536 1947
#> 9537 1985
#> 9538 1957
#> 9539 1947
#> 9540 1958
#> 9541 1954
#> 9542 2012
#> 9543 1954
#> 9544 1946
#> 9545 1951
#> 9546 1947
#> 9547 1947
#> 9548 1948
#> 9549 2001
#> 9550 1955
#> 9551 1946
#> 9552 1947
#> 9553 1993
#> 9554 1955
#> 9555 1947
#> 9556 1963
#> 9557 1985
#> 9558 1977
#> 9559 1988
#> 9560 1988
#> 9561 1987
#> 9562 1980
#> 9563 1983
#> 9564 1983
#> 9565 1983
#> 9566 1985
#> 9567 1979
#> 9568 1985
#> 9569 1986
#> 9570 1981
#> 9571 1985
#> 9572 1978
#> 9573 1981
#> 9574 1985
#> 9575 1969
#> 9576 1973
#> 9577 1973
#> 9578 1977
#> 9579 1981
#> 9580 1975
#> 9581 1971
#> 9582 1975
#> 9583 1972
#> 9584 1974
#> 9585 1976
#> 9586 1973
#> 9587 1974
#> 9588 1972
#> 9589 1976
#> 9590 1973
#> 9591 1978
#> 9592 1974
#> 9593 1973
#> 9594 1971
#> 9595 1975
#> 9596 1972
#> 9597 1973
#> 9598 1974
#> 9599 1973
#> 9600 1983
#> 9601 1976
#> 9602 1981
#> 9603 1973
#> 9604 1974
#> 9605 1973
#> 9606 1983
#> 9607 1986
#> 9608 1976
#> 9609 1975
#> 9610 1979
#> 9611 1973
#> 9612 1975
#> 9613 1973
#> 9614 1981
#> 9615 1965
#> 9616 1945
#> 9617 1969
#> 9618 1948
#> 9619 1949
#> 9620 1945
#> 9621 1945
#> 9622 1953
#> 9623 1954
#> 9624 1935
#> 9625 1935
#> 9626 1939
#> 9627 1946
#> 9628 1945
#> 9629 1949
#> 9630 1954
#> 9631 1943
#> 9632 1945
#> 9633 1945
#> 9634 1956
#> 9635 1946
#> 9636 1942
#> 9637 1941
#> 9638 1935
#> 9639 1943
#> 9640 1935
#> 9641 1952
#> 9642 1954
#> 9643 1945
#> 9644 1954
#> 9645 1947
#> 9646 1945
#> 9647 1935
#> 9648 1947
#> 9649 1935
#> 9650 1941
#> 9651 1947
#> 9652 1935
#> 9653 1954
#> 9654 1945
#> 9655 1935
#> 9656 1936
#> 9657 1945
#> 9658 1954
#> 9659 1947
#> 9660 1947
#> 9661 1947
#> 9662 1944
#> 9663 1942
#> 9664 1947
#> 9665 1947
#> 9666 1949
#> 9667 1935
#> 9668 1925
#> 9669 1913
#> 9670 1883
#> 9671 1887
#> 9672 1873
#> 9673 1912
#> 9674 1879
#> 9675 1879
#> 9676 1884
#> 9677 1885
#> 9678 1892
#> 9679 1901
#> 9680 1887
#> 9681 1884
#> 9682 1869
#> 9683 1883
#> 9684 1887
#> 9685 1879
#> 9686 1893
#> 9687 1887
#> 9688 1893
#> 9689 1878
#> 9690 1883
#> 9691 1887
#> 9692 1889
#> 9693 1877
#> 9694 1907
#> 9695 1903
#> 9696 1872
#> 9697 1887
#> 9698 1909
#> 9699 1891
#> 9700 1909
#> 9701 1901
#> 9702 1898
#> 9703 1895
#> 9704 1889
#> 9705 1883
#> 9706 1917
#> 9707 1968
#> 9708 1969
#> 9709 1967
#> 9710 1967
#> 9711 1972
#> 9712 1967
#> 9713 1973
#> 9714 1968
#> 9715 1973
#> 9716 2017
#> 9717 2012
#> 9718 2015
#> 9719 2011
#> 9720 2013
#> 9721 2014
#> 9722 1945
#> 9723 1941
#> 9724 1953
#> 9725 1937
#> 9726 1945
#> 9727 1949
#> 9728 1945
#> 9729 1933
#> 9730 1936
#> 9731 1952
#> 9732 1939
#> 9733 1946
#> 9734 1941
#> 9735 1957
#> 9736 1937
#> 9737 1945
#> 9738 1951
#> 9739 1951
#> 9740 1934
#> 9741 1945
#> 9742 1943
#> 9743 1939
#> 9744 1953
#> 9745 1937
#> 9746 1949
#> 9747 1947
#> 9748 1936
#> 9749 1947
#> 9750 1947
#> 9751 1959
#> 9752 1945
#> 9753 1953
#> 9754 1947
#> 9755 1904
#> 9756 1927
#> 9757 1907
#> 9758 1945
#> 9759 1949
#> 9760 1914
#> 9761 1961
#> 9762 1913
#> 9763 1907
#> 9764 1955
#> 9765 1909
#> 9766 1936
#> 9767 1952
#> 9768 1939
#> 9769 1916
#> 9770 1908
#> 9771 1941
#> 9772 1939
#> 9773 1944
#> 9774 1943
#> 9775 1957
#> 9776 1937
#> 9777 1945
#> 9778 1913
#> 9779 1945
#> 9780 1951
#> 9781 1901
#> 9782 1963
#> 9783 1945
#> 9784 1910
#> 9785 1917
#> 9786 1913
#> 9787 1909
#> 9788 1907
#> 9789 1954
#> 9790 1951
#> 9791 1953
#> 9792 1909
#> 9793 1947
#> 9794 1931
#> 9795 1914
#> 9796 1947
#> 9797 1947
#> 9798 1901
#> 9799 1959
#> 9800 1984
#> 9801 1984
#> 9802 1982
#> 9803 1984
#> 9804 1982
#> 9805 1983
#> 9806 1983
#> 9807 1984
#> 9808 1983
#> 9809 1984
#> 9810 1983
#> 9811 1984
#> 9812 1983
#> 9813 1983
#> 9814 1984
#> 9815 1983
#> 9816 1983
#> 9817 1983
#> 9818 1983
#> 9819 1983
#> 9820 1984
#> 9821 1984
#> 9822 1984
#> 9823 1983
#> 9824 1984
#> 9825 1983
#> 9826 1984
#> 9827 1983
#> 9828 1983
#> 9829 1907
#> 9830 1949
#> 9831 1921
#> 9832 1903
#> 9833 1899
#> 9834 1893
#> 9835 1901
#> 9836 1925
#> 9837 1897
#> 9838 1901
#> 9839 1909
#> 9840 1899
#> 9841 1900
#> 9842 1899
#> 9843 1910
#> 9844 1920
#> 9845 1899
#> 9846 1902
#> 9847 1890
#> 9848 1899
#> 9849 1899
#> 9850 1926
#> 9851 1907
#> 9852 1929
#> 9853 1901
#> 9854 1917
#> 9855 1891
#> 9856 1900
#> 9857 1929
#> 9858 1891
#> 9859 1909
#> 9860 1907
#> 9861 1896
#> 9862 1919
#> 9863 1905
#> 9864 1899
#> 9865 1907
#> 9866 1929
#> 9867 1913
#> 9868 1909
#> 9869 1909
#> 9870 1909
#> 9871 1894
#> 9872 1904
#> 9873 1901
#> 9874 1929
#> 9875 1895
#> 9876 1943
#> 9877 2003
#> 9878 2004
#> 9879 2007
#> 9880 2010
#> 9881 2002
#> 9882 2012
#> 9883 2009
#> 9884 2003
#> 9885 2003
#> 9886 2010
#> 9887 2000
#> 9888 2006
#> 9889 2002
#> 9890 2006
#> 9891 2012
#> 9892 2006
#> 9893 2002
#> 9894 2010
#> 9895 2003
#> 9896 2010
#> 9897 2002
#> 9898 2009
#> 9899 2004
#> 9900 2010
#> 9901 2010
#> 9902 2011
#> 9903 2010
#> 9904 2005
#> 9905 2003
#> 9906 2006
#> 9907 2008
#> 9908 2004
#> 9909 2004
#> 9910 2011
#> 9911 2011
#> 9912 2009
#> 9913 2013
#> 9914 1919
#> 9915 1919
#> 9916 1915
#> 9917 1901
#> 9918 1907
#> 9919 1907
#> 9920 1913
#> 9921 1951
#> 9922 1908
#> 9923 1917
#> 9924 1903
#> 9925 1915
#> 9926 1915
#> 9927 1915
#> 9928 1916
#> 9929 1908
#> 9930 1913
#> 9931 1900
#> 9932 1909
#> 9933 1905
#> 9934 1909
#> 9935 1920
#> 9936 1909
#> 9937 1917
#> 9938 1909
#> 9939 1913
#> 9940 1917
#> 9941 1904
#> 9942 1921
#> 9943 1896
#> 9944 1913
#> 9945 1913
#> 9946 1908
#> 9947 1917
#> 9948 1915
#> 9949 1906
#> 9950 1906
#> 9951 1915
#> 9952 1917
#> 9953 1913
#> 9954 1915
#> 9955 1907
#> 9956 1912
#> 9957 1920
#> 9958 1903
#> 9959 1911
#> 9960 1913
#> 9961 1911
#> 9962 2011
#> 9963 2012
#> 9964 2008
#> 9965 2009
#> 9966 2008
#> 9967 2012
#> 9968 1998
#> 9969 1999
#> 9970 1997
#> 9971 1999
#> 9972 1998
#> 9973 2014
#> 9974 2012
#> 9975 2016
#> 9976 2013
#> 9977 2008
#> 9978 2016
#> 9979 2008
#> 9980 2014
#> 9981 2010
#> 9982 2012
#> 9983 2015
#> 9984 2017
#> 9985 2013
#> 9986 2011
#> 9987 2015
#> 9988 2015
#> 9989 2010
#> 9990 1983
#> 9991 1982
#> 9992 1979
#> 9993 1981
#> 9994 1979
#> 9995 1983
#> 9996 1986
#> 9997 1988
#> 9998 1989
#> 9999 1982
#> 10000 1986
#> 10001 1988
#> 10002 1982
#> 10003 1983
#> 10004 1988
#> 10005 1981
#> 10006 1982
#> 10007 1982
#> 10008 1980
#> 10009 1987
#> 10010 1985
#> 10011 1981
#> 10012 1981
#> 10013 1985
#> 10014 1987
#> 10015 1984
#> 10016 1988
#> 10017 1987
#> 10018 1985
#> 10019 1994
#> 10020 1984
#> 10021 1985
#> 10022 1989
#> 10023 1985
#> 10024 1984
#> 10025 1986
#> 10026 1988
#> 10027 1987
#> 10028 1990
#> 10029 1998
#> 10030 1985
#> 10031 1981
#> 10032 1984
#> 10033 1972
#> 10034 1973
#> 10035 1968
#> 10036 1971
#> 10037 2009
#> 10038 2007
#> 10039 2006
#> 10040 2005
#> 10041 2003
#> 10042 2006
#> 10043 2004
#> 10044 2004
#> 10045 2006
#> 10046 2006
#> 10047 2004
#> 10048 2015
#> 10049 2011
#> 10050 2007
#> 10051 2007
#> 10052 2005
#> 10053 2010
#> 10054 2017
#> 10055 2011
#> 10056 2009
#> 10057 1981
#> 10058 1984
#> 10059 1983
#> 10060 1971
#> 10061 1975
#> 10062 1986
#> 10063 1992
#> 10064 1986
#> 10065 1974
#> 10066 1989
#> 10067 1985
#> 10068 1986
#> 10069 1988
#> 10070 1990
#> 10071 1974
#> 10072 1973
#> 10073 1972
#> 10074 1972
#> 10075 1989
#> 10076 1984
#> 10077 1986
#> 10078 1993
#> 10079 1964
#> 10080 1971
#> 10081 1967
#> 10082 1974
#> 10083 1984
#> 10084 1972
#> 10085 1974
#> 10086 1986
#> 10087 1991
#> 10088 1978
#> 10089 1987
#> 10090 1982
#> 10091 1984
#> 10092 1987
#> 10093 1995
#> 10094 1976
#> 10095 1992
#> 10096 1995
#> 10097 1976
#> 10098 1995
#> 10099 1990
#> 10100 1976
#> 10101 1995
#> 10102 1995
#> 10103 1988
#> 10104 1995
#> 10105 1995
#> 10106 1992
#> 10107 1976
#> 10108 1976
#> 10109 1972
#> 10110 1995
#> 10111 1984
#> 10112 1976
#> 10113 1995
#> 10114 1995
#> 10115 1974
#> 10116 1992
#> 10117 1982
#> 10118 1972
#> 10119 1988
#> 10120 1992
#> 10121 1995
#> 10122 1976
#> 10123 1994
#> 10124 1976
#> 10125 1994
#> 10126 1978
#> 10127 1995
#> 10128 1976
#> 10129 1976
#> 10130 1995
#> 10131 1988
#> 10132 1988
#> 10133 1976
#> 10134 1972
#> 10135 1976
#> 10136 1990
#> 10137 1995
#> 10138 1994
#> 10139 1984
#> 10140 1976
#> 10141 1995
#> 10142 1999
#> 10143 1997
#> 10144 1993
#> 10145 1995
#> 10146 1996
#> 10147 1997
#> 10148 1993
#> 10149 1996
#> 10150 1996
#> 10151 1995
#> 10152 1998
#> 10153 2000
#> 10154 1998
#> 10155 1992
#> 10156 1991
#> 10157 1973
#> 10158 1973
#> 10159 1974
#> 10160 1990
#> 10161 1984
#> 10162 1995
#> 10163 1973
#> 10164 1989
#> 10165 1990
#> 10166 1974
#> 10167 1993
#> 10168 1973
#> 10169 1976
#> 10170 1973
#> 10171 1998
#> 10172 1976
#> 10173 1996
#> 10174 1997
#> 10175 1973
#> 10176 1976
#> 10177 1997
#> 10178 1985
#> 10179 1975
#> 10180 1976
#> 10181 1992
#> 10182 1975
#> 10183 1990
#> 10184 1997
#> 10185 1973
#> 10186 1973
#> 10187 1973
#> 10188 1991
#> 10189 2005
#> 10190 2005
#> 10191 2000
#> 10192 2000
#> 10193 2001
#> 10194 2001
#> 10195 1998
#> 10196 1999
#> 10197 1999
#> 10198 2000
#> 10199 1998
#> 10200 2002
#> 10201 2002
#> 10202 2003
#> 10203 2000
#> 10204 2002
#> 10205 2001
#> 10206 2008
#> 10207 1994
#> 10208 2005
#> 10209 2001
#> 10210 1999
#> 10211 2003
#> 10212 2006
#> 10213 2008
#> 10214 1978
#> 10215 1969
#> 10216 1969
#> 10217 1970
#> 10218 1967
#> 10219 1959
#> 10220 1971
#> 10221 1980
#> 10222 2006
#> 10223 2003
#> 10224 1998
#> 10225 1996
#> 10226 2006
#> 10227 1998
#> 10228 1997
#> 10229 1996
#> 10230 1999
#> 10231 1995
#> 10232 1996
#> 10233 2006
#> 10234 1984
#> 10235 1973
#> 10236 1973
#> 10237 1973
#> 10238 1978
#> 10239 1975
#> 10240 1973
#> 10241 2003
#> 10242 1998
#> 10243 1998
#> 10244 1999
#> 10245 1995
#> 10246 2013
#> 10247 2008
#> 10248 2003
#> 10249 2005
#> 10250 2003
#> 10251 2005
#> 10252 2005
#> 10253 2007
#> 10254 2006
#> 10255 2006
#> 10256 2005
#> 10257 1970
#> 10258 1972
#> 10259 1970
#> 10260 1966
#> 10261 1969
#> 10262 1966
#> 10263 1966
#> 10264 1970
#> 10265 1967
#> 10266 1966
#> 10267 1966
#> 10268 1966
#> 10269 1970
#> 10270 1967
#> 10271 1967
#> 10272 1966
#> 10273 1966
#> 10274 1966
#> 10275 1966
#> 10276 1966
#> 10277 1966
#> 10278 1966
#> 10279 1970
#> 10280 1967
#> 10281 1967
#> 10282 1966
#> 10283 1967
#> 10284 1967
#> 10285 1970
#> 10286 1967
#> 10287 1966
#> 10288 1970
#> 10289 1966
#> 10290 1966
#> 10291 1966
#> 10292 1967
#> 10293 1966
#> 10294 1966
#> 10295 1968
#> 10296 1967
#> 10297 1969
#> 10298 1967
#> 10299 1966
#> 10300 1966
#> 10301 1969
#> 10302 1966
#> 10303 1966
#> 10304 1966
#> 10305 1967
#> 10306 2013
#> 10307 2011
#> 10308 2013
#> 10309 2001
#> 10310 2011
#> 10311 2013
#> 10312 2012
#> 10313 2013
#> 10314 2013
#> 10315 2011
#> 10316 2013
#> 10317 2013
#> 10318 2003
#> 10319 2012
#> 10320 2002
#> 10321 2011
#> 10322 2013
#> 10323 2011
#> 10324 1979
#> 10325 1996
#> 10326 1998
#> 10327 1996
#> 10328 2000
#> 10329 1981
#> 10330 1980
#> 10331 2000
#> 10332 1978
#> 10333 1979
#> 10334 1978
#> 10335 1999
#> 10336 2003
#> 10337 1991
#> 10338 2008
#> 10339 1980
#> 10340 2004
#> 10341 2001
#> 10342 1981
#> 10343 1981
#> 10344 2007
#> 10345 1980
#> 10346 1998
#> 10347 2006
#> 10348 1980
#> 10349 1981
#> 10350 1979
#> 10351 2004
#> 10352 1979
#> 10353 1998
#> 10354 1988
#> 10355 1996
#> 10356 1994
#> 10357 1996
#> 10358 1997
#> 10359 1997
#> 10360 1994
#> 10361 1994
#> 10362 1994
#> 10363 1995
#> 10364 1994
#> 10365 1997
#> 10366 1993
#> 10367 1996
#> 10368 1994
#> 10369 1995
#> 10370 1994
#> 10371 1999
#> 10372 1992
#> 10373 1996
#> 10374 1995
#> 10375 1996
#> 10376 1994
#> 10377 1996
#> 10378 1995
#> 10379 1997
#> 10380 1991
#> 10381 1998
#> 10382 1995
#> 10383 1996
#> 10384 1994
#> 10385 1999
#> 10386 1996
#> 10387 1995
#> 10388 1991
#> 10389 1997
#> 10390 1995
#> 10391 1993
#> 10392 1995
#> 10393 1996
#> 10394 1994
#> 10395 1994
#> 10396 1994
#> 10397 1995
#> 10398 1996
#> 10399 1996
#> 10400 1994
#> 10401 1990
#> 10402 1996
#> 10403 1996
#> 10404 1997
#> 10405 2001
#> 10406 1993
#> 10407 1993
#> 10408 2001
#> 10409 2001
#> 10410 1988
#> 10411 1994
#> 10412 1990
#> 10413 1989
#> 10414 2001
#> 10415 1998
#> 10416 1991
#> 10417 2001
#> 10418 2000
#> 10419 1990
#> 10420 1993
#> 10421 1939
#> 10422 1940
#> 10423 1940
#> 10424 1913
#> 10425 1940
#> 10426 1937
#> 10427 1938
#> 10428 1940
#> 10429 1949
#> 10430 1937
#> 10431 1941
#> 10432 1941
#> 10433 1939
#> 10434 1941
#> 10435 1941
#> 10436 1953
#> 10437 1937
#> 10438 1921
#> 10439 1884
#> 10440 1937
#> 10441 1941
#> 10442 1939
#> 10443 1940
#> 10444 1940
#> 10445 1940
#> 10446 1937
#> 10447 1950
#> 10448 1908
#> 10449 1940
#> 10450 1883
#> 10451 1941
#> 10452 1940
#> 10453 1913
#> 10454 1940
#> 10455 1945
#> 10456 1941
#> 10457 1939
#> 10458 1936
#> 10459 1940
#> 10460 1937
#> 10461 1941
#> 10462 1937
#> 10463 1939
#> 10464 1942
#> 10465 1937
#> 10466 1940
#> 10467 1905
#> 10468 1940
#> 10469 1997
#> 10470 1993
#> 10471 1999
#> 10472 1998
#> 10473 2005
#> 10474 1996
#> 10475 1997
#> 10476 1997
#> 10477 2000
#> 10478 1998
#> 10479 2004
#> 10480 2002
#> 10481 1997
#> 10482 1993
#> 10483 1999
#> 10484 1998
#> 10485 2000
#> 10486 1996
#> 10487 1997
#> 10488 2000
#> 10489 1997
#> 10490 1998
#> 10491 2002
#> 10492 2004
#> 10493 2005
#> 10494 2001
#> 10495 1999
#> 10496 2002
#> 10497 2005
#> 10498 2005
#> 10499 2005
#> 10500 2004
#> 10501 2005
#> 10502 2005
#> 10503 1999
#> 10504 2002
#> 10505 2005
#> 10506 2005
#> 10507 2005
#> 10508 2005
#> 10509 2005
#> 10510 2005
#> 10511 1996
#> 10512 2001
#> 10513 2005
#> 10514 2005
#> 10515 2005
#> 10516 2005
#> 10517 1956
#> 10518 1959
#> 10519 1958
#> 10520 1957
#> 10521 1957
#> 10522 1956
#> 10523 1955
#> 10524 1960
#> 10525 1959
#> 10526 1959
#> 10527 1952
#> 10528 1956
#> 10529 1959
#> 10530 1945
#> 10531 1943
#> 10532 1954
#> 10533 1958
#> 10534 1956
#> 10535 1959
#> 10536 1952
#> 10537 1959
#> 10538 1954
#> 10539 1959
#> 10540 1957
#> 10541 1959
#> 10542 1958
#> 10543 1959
#> 10544 1950
#> 10545 2012
#> 10546 2011
#> 10547 2012
#> 10548 2013
#> 10549 2013
#> 10550 2013
#> 10551 2011
#> 10552 2015
#> 10553 2011
#> 10554 2011
#> 10555 2011
#> 10556 2013
#> 10557 2015
#> 10558 2011
#> 10559 2012
#> 10560 1980
#> 10561 1983
#> 10562 1980
#> 10563 1982
#> 10564 1986
#> 10565 1982
#> 10566 1984
#> 10567 2001
#> 10568 1980
#> 10569 1980
#> 10570 1982
#> 10571 1981
#> 10572 1981
#> 10573 1983
#> 10574 1981
#> 10575 1991
#> 10576 1985
#> 10577 1983
#> 10578 1983
#> 10579 2000
#> 10580 2000
#> 10581 1983
#> 10582 1982
#> 10583 1980
#> 10584 1996
#> 10585 1985
#> 10586 1982
#> 10587 1980
#> 10588 1971
#> 10589 1970
#> 10590 1973
#> 10591 1971
#> 10592 1970
#> 10593 1970
#> 10594 1939
#> 10595 1915
#> 10596 1923
#> 10597 1937
#> 10598 1940
#> 10599 1965
#> 10600 1955
#> 10601 1941
#> 10602 1965
#> 10603 1935
#> 10604 1939
#> 10605 1938
#> 10606 1939
#> 10607 1965
#> 10608 1937
#> 10609 1964
#> 10610 1938
#> 10611 1937
#> 10612 1938
#> 10613 1938
#> 10614 1957
#> 10615 1938
#> 10616 1960
#> 10617 1922
#> 10618 1934
#> 10619 1941
#> 10620 1941
#> 10621 1937
#> 10622 1923
#> 10623 1940
#> 10624 1957
#> 10625 1921
#> 10626 1932
#> 10627 1955
#> 10628 1959
#> 10629 1974
#> 10630 1966
#> 10631 1972
#> 10632 1967
#> 10633 1968
#> 10634 1962
#> 10635 1958
#> 10636 1974
#> 10637 1976
#> 10638 1940
#> 10639 1972
#> 10640 1962
#> 10641 1976
#> 10642 1976
#> 10643 1967
#> 10644 1971
#> 10645 1967
#> 10646 1967
#> 10647 1972
#> 10648 1985
#> 10649 1984
#> 10650 1985
#> 10651 1935
#> 10652 1933
#> 10653 1987
#> 10654 1985
#> 10655 1984
#> 10656 1985
#> 10657 1986
#> 10658 1986
#> 10659 1987
#> 10660 1980
#> 10661 1934
#> 10662 1986
#> 10663 1985
#> 10664 1938
#> 10665 1987
#> 10666 1985
#> 10667 1982
#> 10668 1985
#> 10669 1978
#> 10670 1986
#> 10671 1986
#> 10672 1945
#> 10673 1987
#> 10674 1985
#> 10675 1935
#> 10676 1985
#> 10677 1983
#> 10678 1934
#> 10679 1985
#> 10680 1986
#> 10681 1936
#> 10682 1987
#> 10683 1985
#> 10684 1933
#> 10685 1935
#> 10686 1984
#> 10687 1986
#> 10688 1988
#> 10689 1984
#> 10690 1986
#> 10691 1935
#> 10692 1986
#> 10693 1985
#> 10694 1934
#> 10695 1986
#> 10696 1986
#> 10697 1988
#> 10698 1959
#> 10699 1965
#> 10700 1955
#> 10701 1962
#> 10702 1961
#> 10703 1965
#> 10704 1959
#> 10705 1962
#> 10706 1958
#> 10707 1958
#> 10708 1957
#> 10709 1963
#> 10710 1956
#> 10711 1965
#> 10712 1957
#> 10713 1957
#> 10714 1956
#> 10715 1956
#> 10716 1959
#> 10717 1963
#> 10718 1959
#> 10719 1959
#> 10720 1957
#> 10721 1961
#> 10722 1957
#> 10723 1959
#> 10724 1959
#> 10725 1959
#> 10726 1965
#> 10727 1957
#> 10728 1968
#> 10729 1975
#> 10730 1983
#> 10731 1984
#> 10732 1988
#> 10733 1984
#> 10734 1988
#> 10735 1969
#> 10736 1986
#> 10737 1968
#> 10738 1971
#> 10739 1968
#> 10740 1974
#> 10741 1984
#> 10742 1971
#> 10743 1975
#> 10744 1970
#> 10745 2007
#> 10746 2007
#> 10747 2003
#> 10748 2016
#> 10749 2005
#> 10750 2001
#> 10751 2003
#> 10752 1917
#> 10753 1917
#> 10754 1913
#> 10755 1912
#> 10756 1919
#> 10757 1917
#> 10758 1919
#> 10759 1913
#> 10760 1911
#> 10761 1919
#> 10762 1913
#> 10763 1915
#> 10764 1928
#> 10765 1920
#> 10766 1917
#> 10767 1916
#> 10768 1913
#> 10769 1913
#> 10770 1913
#> 10771 1928
#> 10772 1917
#> 10773 1915
#> 10774 1913
#> 10775 1913
#> 10776 1913
#> 10777 1913
#> 10778 1931
#> 10779 1915
#> 10780 1923
#> 10781 1915
#> 10782 1913
#> 10783 1915
#> 10784 1913
#> 10785 1913
#> 10786 1923
#> 10787 1913
#> 10788 1915
#> 10789 1917
#> 10790 1913
#> 10791 1917
#> 10792 1918
#> 10793 1913
#> 10794 1915
#> 10795 1913
#> 10796 1915
#> 10797 1931
#> 10798 1914
#> 10799 1917
#> 10800 1913
#> 10801 1913
#> 10802 1919
#> 10803 1917
#> 10804 1919
#> 10805 1913
#> 10806 1911
#> 10807 1919
#> 10808 1913
#> 10809 1915
#> 10810 1928
#> 10811 1920
#> 10812 1917
#> 10813 1916
#> 10814 1913
#> 10815 1913
#> 10816 1913
#> 10817 1928
#> 10818 1917
#> 10819 1915
#> 10820 1913
#> 10821 1913
#> 10822 1913
#> 10823 1913
#> 10824 1931
#> 10825 1915
#> 10826 1923
#> 10827 1915
#> 10828 1913
#> 10829 1915
#> 10830 1913
#> 10831 1913
#> 10832 1923
#> 10833 1913
#> 10834 1915
#> 10835 1917
#> 10836 1913
#> 10837 1917
#> 10838 1918
#> 10839 1913
#> 10840 1915
#> 10841 1913
#> 10842 1915
#> 10843 1995
#> 10844 1992
#> 10845 1984
#> 10846 1988
#> 10847 1995
#> 10848 1988
#> 10849 1995
#> 10850 1995
#> 10851 1995
#> 10852 1995
#> 10853 1992
#> 10854 1992
#> 10855 1995
#> 10856 1995
#> 10857 1992
#> 10858 1995
#> 10859 1995
#> 10860 1992
#> 10861 1990
#> 10862 1992
#> 10863 1995
#> 10864 1976
#> 10865 1988
#> 10866 1992
#> 10867 1995
#> 10868 1992
#> 10869 1995
#> 10870 1988
#> 10871 1995
#> 10872 1995
#> 10873 1992
#> 10874 1992
#> 10875 1984
#> 10876 1992
#> 10877 1995
#> 10878 1992
#> 10879 1995
#> 10880 1995
#> 10881 1992
#> 10882 1995
#> 10883 1995
#> 10884 1992
#> 10885 1995
#> 10886 1992
#> 10887 1995
#> 10888 1992
#> 10889 1992
#> 10890 1995
#> 10891 1995
#> 10892 1983
#> 10893 1982
#> 10894 1994
#> 10895 2003
#> 10896 1990
#> 10897 1986
#> 10898 1994
#> 10899 1998
#> 10900 1985
#> 10901 1994
#> 10902 1985
#> 10903 1983
#> 10904 1992
#> 10905 1982
#> 10906 1982
#> 10907 1994
#> 10908 1994
#> 10909 1983
#> 10910 1983
#> 10911 1994
#> 10912 1983
#> 10913 1983
#> 10914 1985
#> 10915 1982
#> 10916 1994
#> 10917 1983
#> 10918 1982
#> 10919 2003
#> 10920 1983
#> 10921 1994
#> 10922 1982
#> 10923 1982
#> 10924 1994
#> 10925 1982
#> 10926 1994
#> 10927 1997
#> 10928 1996
#> 10929 1994
#> 10930 1997
#> 10931 1994
#> 10932 1994
#> 10933 1995
#> 10934 1996
#> 10935 1997
#> 10936 1994
#> 10937 1994
#> 10938 1993
#> 10939 1995
#> 10940 1997
#> 10941 1995
#> 10942 1997
#> 10943 1995
#> 10944 1994
#> 10945 1995
#> 10946 1997
#> 10947 1996
#> 10948 1995
#> 10949 1995
#> 10950 1995
#> 10951 1995
#> 10952 1996
#> 10953 1997
#> 10954 1997
#> 10955 1994
#> 10956 1994
#> 10957 2009
#> 10958 1993
#> 10959 1993
#> 10960 1982
#> 10961 1985
#> 10962 1975
#> 10963 1981
#> 10964 1975
#> 10965 1997
#> 10966 1983
#> 10967 1981
#> 10968 1983
#> 10969 1981
#> 10970 1994
#> 10971 2009
#> 10972 2001
#> 10973 1995
#> 10974 1991
#> 10975 2009
#> 10976 1990
#> 10977 1990
#> 10978 1988
#> 10979 1988
#> 10980 1991
#> 10981 1990
#> 10982 1990
#> 10983 1988
#> 10984 1989
#> 10985 1994
#> 10986 1995
#> 10987 1996
#> 10988 2006
#> 10989 2004
#> 10990 2006
#> 10991 1988
#> 10992 2002
#> 10993 1988
#> 10994 2002
#> 10995 1990
#> 10996 2004
#> 10997 2003
#> 10998 1988
#> 10999 1989
#> 11000 1962
#> 11001 1967
#> 11002 1970
#> 11003 1967
#> 11004 1968
#> 11005 1967
#> 11006 1967
#> 11007 1969
#> 11008 1967
#> 11009 1971
#> 11010 2013
#> 11011 1967
#> 11012 2014
#> 11013 1967
#> 11014 2005
#> 11015 2005
#> 11016 2002
#> 11017 2004
#> 11018 1999
#> 11019 2002
#> 11020 2003
#> 11021 1999
#> 11022 2003
#> 11023 1999
#> 11024 1999
#> 11025 1999
#> 11026 1999
#> 11027 2003
#> 11028 2006
#> 11029 1999
#> 11030 2007
#> 11031 2001
#> 11032 2006
#> 11033 2006
#> 11034 2007
#> 11035 1999
#> 11036 2005
#> 11037 1999
#> 11038 2001
#> 11039 2001
#> 11040 2002
#> 11041 2001
#> 11042 2000
#> 11043 2000
#> 11044 1999
#> 11045 1999
#> 11046 2006
#> 11047 2005
#> 11048 2000
#> 11049 2001
#> 11050 2001
#> 11051 2005
#> 11052 2009
#> 11053 2002
#> 11054 2003
#> 11055 1999
#> 11056 1999
#> 11057 2003
#> 11058 2002
#> 11059 2013
#> 11060 2003
#> 11061 2004
#> 11062 2001
#> 11063 2006
#> 11064 2000
#> 11065 2003
#> 11066 2010
#> 11067 2006
#> 11068 2005
#> 11069 1968
#> 11070 1993
#> 11071 1968
#> 11072 1969
#> 11073 1969
#> 11074 1968
#> 11075 1996
#> 11076 1993
#> 11077 1993
#> 11078 1993
#> 11079 1993
#> 11080 1995
#> 11081 1994
#> 11082 1993
#> 11083 1993
#> 11084 1998
#> 11085 2011
#> 11086 2008
#> 11087 2008
#> 11088 2007
#> 11089 2010
#> 11090 2008
#> 11091 2014
#> 11092 2013
#> 11093 2011
#> 11094 2009
#> 11095 1987
#> 11096 1989
#> 11097 1991
#> 11098 1990
#> 11099 1978
#> 11100 1988
#> 11101 1984
#> 11102 1989
#> 11103 1985
#> 11104 1990
#> 11105 1990
#> 11106 1991
#> 11107 1990
#> 11108 1990
#> 11109 1975
#> 11110 1983
#> 11111 1991
#> 11112 1991
#> 11113 1999
#> 11114 1995
#> 11115 1998
#> 11116 1998
#> 11117 1996
#> 11118 1998
#> 11119 1995
#> 11120 1996
#> 11121 1996
#> 11122 1999
#> 11123 2006
#> 11124 2001
#> 11125 1995
#> 11126 2005
#> 11127 1998
#> 11128 2001
#> 11129 2001
#> 11130 2004
#> 11131 1983
#> 11132 2004
#> 11133 2003
#> 11134 1998
#> 11135 1997
#> 11136 1997
#> 11137 2005
#> 11138 1983
#> 11139 1999
#> 11140 1997
#> 11141 1998
#> 11142 1999
#> 11143 1998
#> 11144 1997
#> 11145 2005
#> 11146 1991
#> 11147 1999
#> 11148 1988
#> 11149 1999
#> 11150 1998
#> 11151 1998
#> 11152 1985
#> 11153 2002
#> 11154 1998
#> 11155 1999
#> 11156 1998
#> 11157 2006
#> 11158 1992
#> 11159 2001
#> 11160 2008
#> 11161 2001
#> 11162 1995
#> 11163 2005
#> 11164 1998
#> 11165 1999
#> 11166 2008
#> 11167 2001
#> 11168 2004
#> 11169 2007
#> 11170 2004
#> 11171 1990
#> 11172 2005
#> 11173 2003
#> 11174 1998
#> 11175 1997
#> 11176 2008
#> 11177 2008
#> 11178 1990
#> 11179 2007
#> 11180 1999
#> 11181 1997
#> 11182 1998
#> 11183 1999
#> 11184 2008
#> 11185 1998
#> 11186 2005
#> 11187 1991
#> 11188 1999
#> 11189 1990
#> 11190 1999
#> 11191 2004
#> 11192 2006
#> 11193 2002
#> 11194 1998
#> 11195 1999
#> 11196 1998
#> 11197 2006
#> 11198 1992
#> 11199 2001
#> 11200 2013
#> 11201 2013
#> 11202 2012
#> 11203 2012
#> 11204 2013
#> 11205 2013
#> 11206 2011
#> 11207 2013
#> 11208 2013
#> 11209 2013
#> 11210 2013
#> 11211 2011
#> 11212 2013
#> 11213 2013
#> 11214 2013
#> 11215 2013
#> 11216 2012
#> 11217 2011
#> 11218 2013
#> 11219 2013
#> 11220 2013
#> 11221 2013
#> 11222 2013
#> 11223 2013
#> 11224 2013
#> 11225 2013
#> 11226 2012
#> 11227 2013
#> 11228 2013
#> 11229 2012
#> 11230 1994
#> 11231 1990
#> 11232 2009
#> 11233 1993
#> 11234 1993
#> 11235 1992
#> 11236 1991
#> 11237 1995
#> 11238 1992
#> 11239 1985
#> 11240 1981
#> 11241 1977
#> 11242 1993
#> 11243 1991
#> 11244 1984
#> 11245 1981
#> 11246 1982
#> 11247 1978
#> 11248 1981
#> 11249 1977
#> 11250 1979
#> 11251 1980
#> 11252 1981
#> 11253 1983
#> 11254 1981
#> 11255 1965
#> 11256 1985
#> 11257 1985
#> 11258 1977
#> 11259 1993
#> 11260 1985
#> 11261 1980
#> 11262 1982
#> 11263 1972
#> 11264 2008
#> 11265 2008
#> 11266 2007
#> 11267 2007
#> 11268 2008
#> 11269 2007
#> 11270 2008
#> 11271 2007
#> 11272 2007
#> 11273 2009
#> 11274 2007
#> 11275 2007
#> 11276 2007
#> 11277 2007
#> 11278 2007
#> 11279 2007
#> 11280 2009
#> 11281 2007
#> 11282 1984
#> 11283 1984
#> 11284 1985
#> 11285 1993
#> 11286 1993
#> 11287 2005
#> 11288 1993
#> 11289 1985
#> 11290 1983
#> 11291 1984
#> 11292 2008
#> 11293 1907
#> 11294 1885
#> 11295 1872
#> 11296 1862
#> 11297 1889
#> 11298 1849
#> 11299 1866
#> 11300 1887
#> 11301 1889
#> 11302 1893
#> 11303 1857
#> 11304 1865
#> 11305 1855
#> 11306 1863
#> 11307 1906
#> 11308 1884
#> 11309 1863
#> 11310 1896
#> 11311 1839
#> 11312 1849
#> 11313 1858
#> 11314 1910
#> 11315 1870
#> 11316 1893
#> 11317 1867
#> 11318 1887
#> 11319 1870
#> 11320 1855
#> 11321 1893
#> 11322 1844
#> 11323 1876
#> 11324 1881
#> 11325 1900
#> 11326 1891
#> 11327 1883
#> 11328 1859
#> 11329 1852
#> 11330 1895
#> 11331 1881
#> 11332 1909
#> 11333 1879
#> 11334 1869
#> 11335 1866
#> 11336 1884
#> 11337 1890
#> 11338 1867
#> 11339 1865
#> 11340 1886
#> 11341 1915
#> 11342 1921
#> 11343 1913
#> 11344 1905
#> 11345 1905
#> 11346 1905
#> 11347 1909
#> 11348 1913
#> 11349 1907
#> 11350 1911
#> 11351 1907
#> 11352 1905
#> 11353 1907
#> 11354 1913
#> 11355 1914
#> 11356 1912
#> 11357 1915
#> 11358 1904
#> 11359 1910
#> 11360 1909
#> 11361 1907
#> 11362 1914
#> 11363 1921
#> 11364 1913
#> 11365 1909
#> 11366 1933
#> 11367 1907
#> 11368 1912
#> 11369 1923
#> 11370 1903
#> 11371 1917
#> 11372 1915
#> 11373 1915
#> 11374 1909
#> 11375 1911
#> 11376 1909
#> 11377 1912
#> 11378 1919
#> 11379 1917
#> 11380 1915
#> 11381 1909
#> 11382 1917
#> 11383 1910
#> 11384 1903
#> 11385 1909
#> 11386 1907
#> 11387 1911
#> 11388 1909
#> 11389 1998
#> 11390 2001
#> 11391 1999
#> 11392 2000
#> 11393 1999
#> 11394 2000
#> 11395 2000
#> 11396 1999
#> 11397 2004
#> 11398 2001
#> 11399 2000
#> 11400 1998
#> 11401 2002
#> 11402 1994
#> 11403 2001
#> 11404 2004
#> 11405 1999
#> 11406 1999
#> 11407 1998
#> 11408 2004
#> 11409 2001
#> 11410 2001
#> 11411 2001
#> 11412 2000
#> 11413 2001
#> 11414 2009
#> 11415 1997
#> 11416 1993
#> 11417 1994
#> 11418 2000
#> 11419 2007
#> 11420 1936
#> 11421 1937
#> 11422 1936
#> 11423 1936
#> 11424 1936
#> 11425 1936
#> 11426 1936
#> 11427 1936
#> 11428 1937
#> 11429 1936
#> 11430 1936
#> 11431 1936
#> 11432 1936
#> 11433 1937
#> 11434 1936
#> 11435 1936
#> 11436 1936
#> 11437 1936
#> 11438 1936
#> 11439 1936
#> 11440 1936
#> 11441 1936
#> 11442 1936
#> 11443 1936
#> 11444 1936
#> 11445 1937
#> 11446 1936
#> 11447 1936
#> 11448 1936
#> 11449 1936
#> 11450 1937
#> 11451 1936
#> 11452 1936
#> 11453 1936
#> 11454 1936
#> 11455 1936
#> 11456 1936
#> 11457 1937
#> 11458 1936
#> 11459 1937
#> 11460 1936
#> 11461 1936
#> 11462 1936
#> 11463 1938
#> 11464 1936
#> 11465 1936
#> 11466 1936
#> 11467 1936
#> 11468 2001
#> 11469 1989
#> 11470 2001
#> 11471 1980
#> 11472 2006
#> 11473 1989
#> 11474 1992
#> 11475 1981
#> 11476 1980
#> 11477 1980
#> 11478 1995
#> 11479 2000
#> 11480 1980
#> 11481 2001
#> 11482 2000
#> 11483 2000
#> 11484 2003
#> 11485 2001
#> 11486 1992
#> 11487 1980
#> 11488 2006
#> 11489 2000
#> 11490 1992
#> 11491 1992
#> 11492 2001
#> 11493 1989
#> 11494 2001
#> 11495 1982
#> 11496 1980
#> 11497 1980
#> 11498 1980
#> 11499 1984
#> 11500 2001
#> 11501 2000
#> 11502 1997
#> 11503 1997
#> 11504 1995
#> 11505 2002
#> 11506 1981
#> 11507 2002
#> 11508 1984
#> 11509 1980
#> 11510 2002
#> 11511 1998
#> 11512 2006
#> 11513 1996
#> 11514 1996
#> 11515 2006
#> 11516 2000
#> 11517 1997
#> 11518 1997
#> 11519 1994
#> 11520 1996
#> 11521 1999
#> 11522 1991
#> 11523 1995
#> 11524 1997
#> 11525 1998
#> 11526 1996
#> 11527 1997
#> 11528 1999
#> 11529 1996
#> 11530 1989
#> 11531 2000
#> 11532 1997
#> 11533 2001
#> 11534 1996
#> 11535 1997
#> 11536 2000
#> 11537 1997
#> 11538 1996
#> 11539 2000
#> 11540 1996
#> 11541 1995
#> 11542 1999
#> 11543 1999
#> 11544 1998
#> 11545 1999
#> 11546 1999
#> 11547 1995
#> 11548 1993
#> 11549 1999
#> 11550 1996
#> 11551 1998
#> 11552 1996
#> 11553 1997
#> 11554 1996
#> 11555 1997
#> 11556 1998
#> 11557 1998
#> 11558 1997
#> 11559 1997
#> 11560 1996
#> 11561 1996
#> 11562 1996
#> 11563 1998
#> 11564 1998
#> 11565 1998
#> 11566 1999
#> 11567 1996
#> 11568 1996
#> 11569 1997
#> 11570 1999
#> 11571 1999
#> 11572 1996
#> 11573 1997
#> 11574 1997
#> 11575 1997
#> 11576 1997
#> 11577 1997
#> 11578 1995
#> 11579 1999
#> 11580 1997
#> 11581 1997
#> 11582 1988
#> 11583 1989
#> 11584 1989
#> 11585 1988
#> 11586 2000
#> 11587 1986
#> 11588 1992
#> 11589 1986
#> 11590 1978
#> 11591 1980
#> 11592 1974
#> 11593 1990
#> 11594 1986
#> 11595 1979
#> 11596 1987
#> 11597 1991
#> 11598 1995
#> 11599 1983
#> 11600 1985
#> 11601 2001
#> 11602 1982
#> 11603 1982
#> 11604 1985
#> 11605 1988
#> 11606 2005
#> 11607 2006
#> 11608 1991
#> 11609 1988
#> 11610 1978
#> 11611 2008
#> 11612 2003
#> 11613 2015
#> 11614 2015
#> 11615 2009
#> 11616 2005
#> 11617 2006
#> 11618 2001
#> 11619 2005
#> 11620 2002
#> 11621 2003
#> 11622 1984
#> 11623 1976
#> 11624 1977
#> 11625 1976
#> 11626 1984
#> 11627 1985
#> 11628 1980
#> 11629 1975
#> 11630 1983
#> 11631 1975
#> 11632 1983
#> 11633 1983
#> 11634 1989
#> 11635 1976
#> 11636 1923
#> 11637 1927
#> 11638 1927
#> 11639 1937
#> 11640 1912
#> 11641 1927
#> 11642 1925
#> 11643 1925
#> 11644 1919
#> 11645 1917
#> 11646 1916
#> 11647 1920
#> 11648 1925
#> 11649 1924
#> 11650 1926
#> 11651 1933
#> 11652 1906
#> 11653 1891
#> 11654 1919
#> 11655 1925
#> 11656 1926
#> 11657 1919
#> 11658 1907
#> 11659 1921
#> 11660 1935
#> 11661 1909
#> 11662 1915
#> 11663 1935
#> 11664 1885
#> 11665 1925
#> 11666 1915
#> 11667 1902
#> 11668 1927
#> 11669 1917
#> 11670 1923
#> 11671 1904
#> 11672 1927
#> 11673 1935
#> 11674 1925
#> 11675 1923
#> 11676 1925
#> 11677 1927
#> 11678 1926
#> 11679 1919
#> 11680 1925
#> 11681 1907
#> 11682 2010
#> 11683 1998
#> 11684 1995
#> 11685 1999
#> 11686 1988
#> 11687 1987
#> 11688 1988
#> 11689 1996
#> 11690 1992
#> 11691 1982
#> 11692 1989
#> 11693 1985
#> 11694 1983
#> 11695 2003
#> 11696 1999
#> 11697 1991
#> 11698 2001
#> 11699 1973
#> 11700 1991
#> 11701 1999
#> 11702 1974
#> 11703 1997
#> 11704 1984
#> 11705 1988
#> 11706 1939
#> 11707 1937
#> 11708 1937
#> 11709 1937
#> 11710 1939
#> 11711 1941
#> 11712 1937
#> 11713 1941
#> 11714 1950
#> 11715 1941
#> 11716 1936
#> 11717 1935
#> 11718 1937
#> 11719 1947
#> 11720 1948
#> 11721 1938
#> 11722 1939
#> 11723 1937
#> 11724 1937
#> 11725 1935
#> 11726 1935
#> 11727 1948
#> 11728 1945
#> 11729 1937
#> 11730 1937
#> 11731 1949
#> 11732 1937
#> 11733 1936
#> 11734 1937
#> 11735 1936
#> 11736 1951
#> 11737 1941
#> 11738 1937
#> 11739 1945
#> 11740 1937
#> 11741 1937
#> 11742 1937
#> 11743 1948
#> 11744 1947
#> 11745 1939
#> 11746 1951
#> 11747 1937
#> 11748 1937
#> 11749 1938
#> 11750 1937
#> 11751 1937
#> 11752 1939
#> 11753 1939
#> 11754 2014
#> 11755 2015
#> 11756 2015
#> 11757 2012
#> 11758 2016
#> 11759 2013
#> 11760 2011
#> 11761 2017
#> 11762 2016
#> 11763 1972
#> 11764 1972
#> 11765 1971
#> 11766 1972
#> 11767 1976
#> 11768 1993
#> 11769 1973
#> 11770 1969
#> 11771 1996
#> 11772 2000
#> 11773 1996
#> 11774 1999
#> 11775 1996
#> 11776 1997
#> 11777 1995
#> 11778 1999
#> 11779 1995
#> 11780 1999
#> 11781 1998
#> 11782 2002
#> 11783 1998
#> 11784 1998
#> 11785 2006
#> 11786 2006
#> 11787 1997
#> 11788 1997
#> 11789 2004
#> 11790 1997
#> 11791 1997
#> 11792 2005
#> 11793 2001
#> 11794 1996
#> 11795 1995
#> 11796 2008
#> 11797 1997
#> 11798 1997
#> 11799 2017
#> 11800 2001
#> 11801 2001
#> 11802 1993
#> 11803 2011
#> 11804 1998
#> 11805 1996
#> 11806 1998
#> 11807 2016
#> 11808 1993
#> 11809 1995
#> 11810 1994
#> 11811 1994
#> 11812 2006
#> 11813 2000
#> 11814 1998
#> 11815 2007
#> 11816 1999
#> 11817 1994
#> 11818 2008
#> 11819 1994
#> 11820 1993
#> 11821 1999
#> 11822 2003
#> 11823 1998
#> 11824 1999
#> 11825 1995
#> 11826 1997
#> 11827 1999
#> 11828 2000
#> 11829 1996
#> 11830 1979
#> 11831 1999
#> 11832 2005
#> 11833 1997
#> 11834 1940
#> 11835 1943
#> 11836 1967
#> 11837 1961
#> 11838 1995
#> 11839 1999
#> 11840 1992
#> 11841 1989
#> 11842 1997
#> 11843 1977
#> 11844 1991
#> 11845 1979
#> 11846 1982
#> 11847 1997
#> 11848 1987
#> 11849 2001
#> 11850 1998
#> 11851 1994
#> 11852 1985
#> 11853 1994
#> 11854 2000
#> 11855 1998
#> 11856 1997
#> 11857 1999
#> 11858 1992
#> 11859 1997
#> 11860 1994
#> 11861 1991
#> 11862 1999
#> 11863 1999
#> 11864 1995
#> 11865 1997
#> 11866 2000
#> 11867 2000
#> 11868 1996
#> 11869 1997
#> 11870 1979
#> 11871 1999
#> 11872 1999
#> 11873 1997
#> 11874 1986
#> 11875 1990
#> 11876 1994
#> 11877 2008
#> 11878 1990
#> 11879 2005
#> 11880 2005
#> 11881 2007
#> 11882 2000
#> 11883 1990
#> 11884 2001
#> 11885 2006
#> 11886 1997
#> 11887 1990
#> 11888 2001
#> 11889 2007
#> 11890 2006
#> 11891 2006
#> 11892 2001
#> 11893 2008
#> 11894 2001
#> 11895 1990
#> 11896 2008
#> 11897 2001
#> 11898 1990
#> 11899 2008
#> 11900 2008
#> 11901 2004
#> 11902 2007
#> 11903 2000
#> 11904 2005
#> 11905 2007
#> 11906 1994
#> 11907 1999
#> 11908 1969
#> 11909 2001
#> 11910 1969
#> 11911 1995
#> 11912 1984
#> 11913 1968
#> 11914 2005
#> 11915 1996
#> 11916 2009
#> 11917 1986
#> 11918 1968
#> 11919 1969
#> 11920 2006
#> 11921 2004
#> 11922 1968
#> 11923 1970
#> 11924 1981
#> 11925 2002
#> 11926 1975
#> 11927 1973
#> 11928 1974
#> 11929 1999
#> 11930 1981
#> 11931 1968
#> 11932 1999
#> 11933 1972
#> 11934 1969
#> 11935 1994
#> 11936 1985
#> 11937 1978
#> 11938 1974
#> 11939 1999
#> 11940 1968
#> 11941 1968
#> 11942 1931
#> 11943 1935
#> 11944 1891
#> 11945 1891
#> 11946 1887
#> 11947 1881
#> 11948 1883
#> 11949 1889
#> 11950 1881
#> 11951 1889
#> 11952 1881
#> 11953 1899
#> 11954 1880
#> 11955 1885
#> 11956 1874
#> 11957 1888
#> 11958 1877
#> 11959 1902
#> 11960 1885
#> 11961 1885
#> 11962 1885
#> 11963 1900
#> 11964 1881
#> 11965 1895
#> 11966 1887
#> 11967 1901
#> 11968 1875
#> 11969 1877
#> 11970 1889
#> 11971 1884
#> 11972 1905
#> 11973 1887
#> 11974 1884
#> 11975 1899
#> 11976 1891
#> 11977 1887
#> 11978 1875
#> 11979 1876
#> 11980 1890
#> 11981 1919
#> 11982 1907
#> 11983 1892
#> 11984 1894
#> 11985 1886
#> 11986 1891
#> 11987 1881
#> 11988 1882
#> 11989 1888
#> 11990 2016
#> 11991 2016
#> 11992 2016
#> 11993 2016
#> 11994 1990
#> 11995 1991
#> 11996 2002
#> 11997 1987
#> 11998 1991
#> 11999 1986
#> 12000 1991
#> 12001 1987
#> 12002 1986
#> 12003 1992
#> 12004 1992
#> 12005 1987
#> 12006 1992
#> 12007 1986
#> 12008 1979
#> 12009 1990
#> 12010 1992
#> 12011 1992
#> 12012 1990
#> 12013 1983
#> 12014 1991
#> 12015 1989
#> 12016 1973
#> 12017 1983
#> 12018 1991
#> 12019 1989
#> 12020 1991
#> 12021 1989
#> 12022 1984
#> 12023 1987
#> 12024 1986
#> 12025 1991
#> 12026 1987
#> 12027 1984
#> 12028 1983
#> 12029 1984
#> 12030 1985
#> 12031 1987
#> 12032 1991
#> 12033 1992
#> 12034 1990
#> 12035 1988
#> 12036 1992
#> 12037 1982
#> 12038 1988
#> 12039 1997
#> 12040 1943
#> 12041 1945
#> 12042 1947
#> 12043 1935
#> 12044 1939
#> 12045 1945
#> 12046 1943
#> 12047 1935
#> 12048 1945
#> 12049 1943
#> 12050 1945
#> 12051 1939
#> 12052 1944
#> 12053 1944
#> 12054 1943
#> 12055 1943
#> 12056 1935
#> 12057 1947
#> 12058 1947
#> 12059 1947
#> 12060 1943
#> 12061 1945
#> 12062 1947
#> 12063 1937
#> 12064 1942
#> 12065 1944
#> 12066 1935
#> 12067 1942
#> 12068 1937
#> 12069 1941
#> 12070 1943
#> 12071 1939
#> 12072 1938
#> 12073 1945
#> 12074 1935
#> 12075 1943
#> 12076 1941
#> 12077 1947
#> 12078 1938
#> 12079 1945
#> 12080 1941
#> 12081 1935
#> 12082 1944
#> 12083 1970
#> 12084 2000
#> 12085 2000
#> 12086 2003
#> 12087 2000
#> 12088 2000
#> 12089 2001
#> 12090 2003
#> 12091 2005
#> 12092 2001
#> 12093 1997
#> 12094 2001
#> 12095 2005
#> 12096 2002
#> 12097 2001
#> 12098 2001
#> 12099 2001
#> 12100 2000
#> 12101 2001
#> 12102 2001
#> 12103 2003
#> 12104 2004
#> 12105 2001
#> 12106 2001
#> 12107 2005
#> 12108 2003
#> 12109 2000
#> 12110 2001
#> 12111 2002
#> 12112 2002
#> 12113 2000
#> 12114 2001
#> 12115 2001
#> 12116 2001
#> 12117 2000
#> 12118 2004
#> 12119 1986
#> 12120 1987
#> 12121 2002
#> 12122 1990
#> 12123 1978
#> 12124 1973
#> 12125 1973
#> 12126 1973
#> 12127 1975
#> 12128 1973
#> 12129 1976
#> 12130 1992
#> 12131 1974
#> 12132 1988
#> 12133 1979
#> 12134 1991
#> 12135 1973
#> 12136 1974
#> 12137 1985
#> 12138 1973
#> 12139 1974
#> 12140 1975
#> 12141 1978
#> 12142 1983
#> 12143 1975
#> 12144 1982
#> 12145 1991
#> 12146 1974
#> 12147 1975
#> 12148 1991
#> 12149 1985
#> 12150 1977
#> 12151 2011
#> 12152 2011
#> 12153 2009
#> 12154 2015
#> 12155 2014
#> 12156 2008
#> 12157 2014
#> 12158 2009
#> 12159 2010
#> 12160 2011
#> 12161 2012
#> 12162 2009
#> 12163 2007
#> 12164 2012
#> 12165 2014
#> 12166 2016
#> 12167 2016
#> 12168 2016
#> 12169 2010
#> 12170 2017
#> 12171 2014
#> 12172 2016
#> 12173 2015
#> 12174 2016
#> 12175 2015
#> 12176 2017
#> 12177 2016
#> 12178 1997
#> 12179 1997
#> 12180 2000
#> 12181 1998
#> 12182 1998
#> 12183 1997
#> 12184 1998
#> 12185 1998
#> 12186 1997
#> 12187 1997
#> 12188 1999
#> 12189 1998
#> 12190 1997
#> 12191 1997
#> 12192 1997
#> 12193 1997
#> 12194 1998
#> 12195 1998
#> 12196 1984
#> 12197 2003
#> 12198 1988
#> 12199 1996
#> 12200 1990
#> 12201 1983
#> 12202 1990
#> 12203 1983
#> 12204 1991
#> 12205 1995
#> 12206 2003
#> 12207 1994
#> 12208 1986
#> 12209 2003
#> 12210 1982
#> 12211 1988
#> 12212 1991
#> 12213 1984
#> 12214 1984
#> 12215 1990
#> 12216 2004
#> 12217 1980
#> 12218 1983
#> 12219 1984
#> 12220 1993
#> 12221 1983
#> 12222 1993
#> 12223 1985
#> 12224 1984
#> 12225 1983
#> 12226 1993
#> 12227 1983
#> 12228 1987
#> 12229 1980
#> 12230 1995
#> 12231 1984
#> 12232 1990
#> 12233 1995
#> 12234 1999
#> 12235 1982
#> 12236 1988
#> 12237 1985
#> 12238 1991
#> 12239 1987
#> 12240 1986
#> 12241 1995
#> 12242 1996
#> 12243 2007
#> 12244 1987
#> 12245 1995
#> 12246 1989
#> 12247 1995
#> 12248 1991
#> 12249 1988
#> 12250 1987
#> 12251 1987
#> 12252 1994
#> 12253 1989
#> 12254 1988
#> 12255 1995
#> 12256 1987
#> 12257 1985
#> 12258 1987
#> 12259 1987
#> 12260 1989
#> 12261 1987
#> 12262 1994
#> 12263 1985
#> 12264 2013
#> 12265 2013
#> 12266 1989
#> 12267 1996
#> 12268 1987
#> 12269 1997
#> 12270 1987
#> 12271 2000
#> 12272 1989
#> 12273 1987
#> 12274 1997
#> 12275 1995
#> 12276 1986
#> 12277 1996
#> 12278 1988
#> 12279 1997
#> 12280 1999
#> 12281 1989
#> 12282 1988
#> 12283 1992
#> 12284 1997
#> 12285 1995
#> 12286 1994
#> 12287 1997
#> 12288 1988
#> 12289 1995
#> 12290 1987
#> 12291 1989
#> 12292 1996
#> 12293 1987
#> 12294 1997
#> 12295 1997
#> 12296 1989
#> 12297 1986
#> 12298 1996
#> 12299 1997
#> 12300 1999
#> 12301 1989
#> 12302 1992
#> 12303 1997
#> 12304 1995
#> 12305 1995
#> 12306 1994
#> 12307 1997
#> 12308 1997
#> 12309 1995
#> 12310 1987
#> 12311 2006
#> 12312 1967
#> 12313 1961
#> 12314 1997
#> 12315 1999
#> 12316 2004
#> 12317 1992
#> 12318 1988
#> 12319 2005
#> 12320 1995
#> 12321 2005
#> 12322 1972
#> 12323 2006
#> 12324 1990
#> 12325 2002
#> 12326 1978
#> 12327 1981
#> 12328 1995
#> 12329 2006
#> 12330 1989
#> 12331 1995
#> 12332 2004
#> 12333 2014
#> 12334 2014
#> 12335 2015
#> 12336 2014
#> 12337 2015
#> 12338 2014
#> 12339 2015
#> 12340 2000
#> 12341 2006
#> 12342 1993
#> 12343 1986
#> 12344 2003
#> 12345 2010
#> 12346 1996
#> 12347 1986
#> 12348 2004
#> 12349 1998
#> 12350 1986
#> 12351 2007
#> 12352 1996
#> 12353 2008
#> 12354 1998
#> 12355 2000
#> 12356 2009
#> 12357 2006
#> 12358 2000
#> 12359 1986
#> 12360 1985
#> 12361 1986
#> 12362 1998
#> 12363 1991
#> 12364 2006
#> 12365 2004
#> 12366 1986
#> 12367 2002
#> 12368 2009
#> 12369 1986
#> 12370 2007
#> 12371 1993
#> 12372 2002
#> 12373 2000
#> 12374 1999
#> 12375 1993
#> 12376 1986
#> 12377 2003
#> 12378 1996
#> 12379 1985
#> 12380 2003
#> 12381 1998
#> 12382 1986
#> 12383 1995
#> 12384 1997
#> 12385 2000
#> 12386 1999
#> 12387 1986
#> 12388 1984
#> 12389 1985
#> 12390 1997
#> 12391 1990
#> 12392 2004
#> 12393 1985
#> 12394 2002
#> 12395 1984
#> 12396 1984
#> 12397 1971
#> 12398 1968
#> 12399 1987
#> 12400 1973
#> 12401 1971
#> 12402 1992
#> 12403 1970
#> 12404 1990
#> 12405 1991
#> 12406 1970
#> 12407 1973
#> 12408 1970
#> 12409 1973
#> 12410 1984
#> 12411 1971
#> 12412 2000
#> 12413 2003
#> 12414 2001
#> 12415 1999
#> 12416 1999
#> 12417 2000
#> 12418 1999
#> 12419 2009
#> 12420 2002
#> 12421 2000
#> 12422 2001
#> 12423 2002
#> 12424 1999
#> 12425 2000
#> 12426 2004
#> 12427 2002
#> 12428 2000
#> 12429 2006
#> 12430 2004
#> 12431 2001
#> 12432 2012
#> 12433 2001
#> 12434 2003
#> 12435 2001
#> 12436 2003
#> 12437 2006
#> 12438 2001
#> 12439 1997
#> 12440 2001
#> 12441 2003
#> 12442 1999
#> 12443 2003
#> 12444 1998
#> 12445 2003
#> 12446 2002
#> 12447 2001
#> 12448 2007
#> 12449 2000
#> 12450 2003
#> 12451 2004
#> 12452 2012
#> 12453 1999
#> 12454 2002
#> 12455 2005
#> 12456 2001
#> 12457 2012
#> 12458 2009
#> 12459 2011
#> 12460 2009
#> 12461 2009
#> 12462 2010
#> 12463 2009
#> 12464 2009
#> 12465 2009
#> 12466 2009
#> 12467 2010
#> 12468 2010
#> 12469 2011
#> 12470 2012
#> 12471 2012
#> 12472 2012
#> 12473 2011
#> 12474 2011
#> 12475 2009
#> 12476 2009
#> 12477 2011
#> 12478 2010
#> 12479 2009
#> 12480 2017
#> 12481 2009
#> 12482 2011
#> 12483 2012
#> 12484 2009
#> 12485 2010
#> 12486 2009
#> 12487 2009
#> 12488 2012
#> 12489 2009
#> 12490 2009
#> 12491 2014
#> 12492 1980
#> 12493 2003
#> 12494 1997
#> 12495 1984
#> 12496 2003
#> 12497 2003
#> 12498 2003
#> 12499 1927
#> 12500 1945
#> 12501 1943
#> 12502 1943
#> 12503 1927
#> 12504 1941
#> 12505 1941
#> 12506 1942
#> 12507 1944
#> 12508 1941
#> 12509 1945
#> 12510 1946
#> 12511 1939
#> 12512 1919
#> 12513 1941
#> 12514 1929
#> 12515 1940
#> 12516 1941
#> 12517 1945
#> 12518 1945
#> 12519 1943
#> 12520 1931
#> 12521 1945
#> 12522 1933
#> 12523 1949
#> 12524 1955
#> 12525 1951
#> 12526 1941
#> 12527 1958
#> 12528 1947
#> 12529 1927
#> 12530 1931
#> 12531 1946
#> 12532 1957
#> 12533 1954
#> 12534 1952
#> 12535 1957
#> 12536 1939
#> 12537 1878
#> 12538 1913
#> 12539 1933
#> 12540 1956
#> 12541 1947
#> 12542 1955
#> 12543 1957
#> 12544 1950
#> 12545 1937
#> 12546 2005
#> 12547 1936
#> 12548 1908
#> 12549 1937
#> 12550 1939
#> 12551 1921
#> 12552 1939
#> 12553 1951
#> 12554 1941
#> 12555 1955
#> 12556 1937
#> 12557 1947
#> 12558 1937
#> 12559 1947
#> 12560 1942
#> 12561 1939
#> 12562 1939
#> 12563 1940
#> 12564 1941
#> 12565 1972
#> 12566 1973
#> 12567 1973
#> 12568 1976
#> 12569 1971
#> 12570 1979
#> 12571 2009
#> 12572 1978
#> 12573 1974
#> 12574 1974
#> 12575 1974
#> 12576 2004
#> 12577 1975
#> 12578 1973
#> 12579 1986
#> 12580 1974
#> 12581 1975
#> 12582 2009
#> 12583 2011
#> 12584 2009
#> 12585 2010
#> 12586 2014
#> 12587 2006
#> 12588 1998
#> 12589 1996
#> 12590 1997
#> 12591 1995
#> 12592 1995
#> 12593 1997
#> 12594 1997
#> 12595 1997
#> 12596 1991
#> 12597 1999
#> 12598 1999
#> 12599 2000
#> 12600 1996
#> 12601 1995
#> 12602 1999
#> 12603 1999
#> 12604 1996
#> 12605 2006
#> 12606 1996
#> 12607 2003
#> 12608 1997
#> 12609 2003
#> 12610 1998
#> 12611 1997
#> 12612 1995
#> 12613 1999
#> 12614 1997
#> 12615 1999
#> 12616 1995
#> 12617 1995
#> 12618 1996
#> 12619 2001
#> 12620 1999
#> 12621 2002
#> 12622 2003
#> 12623 1995
#> 12624 1998
#> 12625 1999
#> 12626 1995
#> 12627 2004
#> 12628 1999
#> 12629 2008
#> 12630 2010
#> 12631 2008
#> 12632 2009
#> 12633 2009
#> 12634 2008
#> 12635 2007
#> 12636 2007
#> 12637 2011
#> 12638 2008
#> 12639 2009
#> 12640 2007
#> 12641 2009
#> 12642 2007
#> 12643 2008
#> 12644 2008
#> 12645 2010
#> 12646 2010
#> 12647 2009
#> 12648 2009
#> 12649 2009
#> 12650 2009
#> 12651 2008
#> 12652 2012
#> 12653 2009
#> 12654 2007
#> 12655 2007
#> 12656 2007
#> 12657 2008
#> 12658 2009
#> 12659 2009
#> 12660 2010
#> 12661 2009
#> 12662 2009
#> 12663 2009
#> 12664 2007
#> 12665 2007
#> 12666 2009
#> 12667 2008
#> 12668 2007
#> 12669 2007
#> 12670 2007
#> 12671 2007
#> 12672 2009
#> 12673 2008
#> 12674 2009
#> 12675 2009
#> 12676 2009
#> 12677 1995
#> 12678 1997
#> 12679 1993
#> 12680 1995
#> 12681 1996
#> 12682 1997
#> 12683 1993
#> 12684 1996
#> 12685 1996
#> 12686 1995
#> 12687 1996
#> 12688 2000
#> 12689 1998
#> 12690 1996
#> 12691 1998
#> 12692 1999
#> 12693 1997
#> 12694 1997
#> 12695 1997
#> 12696 2000
#> 12697 1999
#> 12698 2002
#> 12699 1999
#> 12700 2005
#> 12701 1996
#> 12702 1999
#> 12703 1999
#> 12704 1996
#> 12705 1996
#> 12706 1999
#> 12707 1999
#> 12708 2006
#> 12709 1998
#> 12710 2006
#> 12711 2007
#> 12712 1997
#> 12713 2004
#> 12714 1997
#> 12715 1997
#> 12716 1993
#> 12717 1999
#> 12718 2000
#> 12719 1995
#> 12720 2003
#> 12721 2002
#> 12722 2006
#> 12723 2006
#> 12724 2001
#> 12725 2001
#> 12726 2003
#> 12727 2008
#> 12728 1994
#> 12729 1998
#> 12730 2006
#> 12731 1999
#> 12732 1999
#> 12733 1995
#> 12734 1999
#> 12735 1997
#> 12736 1999
#> 12737 1994
#> 12738 1993
#> 12739 2005
#> 12740 2004
#> 12741 1999
#> 12742 2007
#> 12743 1998
#> 12744 2005
#> 12745 2002
#> 12746 2006
#> 12747 1995
#> 12748 1995
#> 12749 2002
#> 12750 1994
#> 12751 2001
#> 12752 1995
#> 12753 2007
#> 12754 1983
#> 12755 1983
#> 12756 1986
#> 12757 1979
#> 12758 1975
#> 12759 1977
#> 12760 1973
#> 12761 1976
#> 12762 1973
#> 12763 1974
#> 12764 1975
#> 12765 1976
#> 12766 1974
#> 12767 1974
#> 12768 1974
#> 12769 1975
#> 12770 1987
#> 12771 1979
#> 12772 1977
#> 12773 1973
#> 12774 1973
#> 12775 1982
#> 12776 1977
#> 12777 1990
#> 12778 2005
#> 12779 1981
#> 12780 1998
#> 12781 1998
#> 12782 1986
#> 12783 1991
#> 12784 2000
#> 12785 1990
#> 12786 1981
#> 12787 1983
#> 12788 2009
#> 12789 1935
#> 12790 1939
#> 12791 1937
#> 12792 1938
#> 12793 1935
#> 12794 1937
#> 12795 1934
#> 12796 1937
#> 12797 1937
#> 12798 1939
#> 12799 1934
#> 12800 1937
#> 12801 1934
#> 12802 1936
#> 12803 1949
#> 12804 1937
#> 12805 1935
#> 12806 1933
#> 12807 1947
#> 12808 1938
#> 12809 1939
#> 12810 1935
#> 12811 1935
#> 12812 1947
#> 12813 1947
#> 12814 1938
#> 12815 1939
#> 12816 1939
#> 12817 1935
#> 12818 1937
#> 12819 1933
#> 12820 1939
#> 12821 1937
#> 12822 1935
#> 12823 1934
#> 12824 1950
#> 12825 1935
#> 12826 1937
#> 12827 1937
#> 12828 1938
#> 12829 1939
#> 12830 1933
#> 12831 1935
#> 12832 1994
#> 12833 2003
#> 12834 1987
#> 12835 1993
#> 12836 2000
#> 12837 1998
#> 12838 2001
#> 12839 1990
#> 12840 1985
#> 12841 1985
#> 12842 1988
#> 12843 2003
#> 12844 1996
#> 12845 2000
#> 12846 1991
#> 12847 2007
#> 12848 1982
#> 12849 1994
#> 12850 1999
#> 12851 2007
#> 12852 1994
#> 12853 2005
#> 12854 2005
#> 12855 1996
#> 12856 1988
#> 12857 2004
#> 12858 1989
#> 12859 1997
#> 12860 1994
#> 12861 2001
#> 12862 2001
#> 12863 1999
#> 12864 2003
#> 12865 1986
#> 12866 1986
#> 12867 1962
#> 12868 1959
#> 12869 1959
#> 12870 1949
#> 12871 1937
#> 12872 1961
#> 12873 1948
#> 12874 1952
#> 12875 1955
#> 12876 1961
#> 12877 1950
#> 12878 1939
#> 12879 1957
#> 12880 1949
#> 12881 1952
#> 12882 1949
#> 12883 1962
#> 12884 1959
#> 12885 1959
#> 12886 1953
#> 12887 1959
#> 12888 1945
#> 12889 1957
#> 12890 1963
#> 12891 1955
#> 12892 1959
#> 12893 1961
#> 12894 1950
#> 12895 1950
#> 12896 1957
#> 12897 1945
#> 12898 1949
#> 12899 1963
#> 12900 1957
#> 12901 1949
#> 12902 1963
#> 12903 1963
#> 12904 1953
#> 12905 1963
#> 12906 1949
#> 12907 1952
#> 12908 1961
#> 12909 1953
#> 12910 1961
#> 12911 1952
#> 12912 1957
#> 12913 1965
#> 12914 1965
#> 12915 1965
#> 12916 1965
#> 12917 1965
#> 12918 1965
#> 12919 1992
#> 12920 1965
#> 12921 1965
#> 12922 1965
#> 12923 1965
#> 12924 1965
#> 12925 1965
#> 12926 1966
#> 12927 1988
#> 12928 1965
#> 12929 1965
#> 12930 1965
#> 12931 1965
#> 12932 1965
#> 12933 1965
#> 12934 1965
#> 12935 1965
#> 12936 1965
#> 12937 1965
#> 12938 1965
#> 12939 1965
#> 12940 1965
#> 12941 1965
#> 12942 1968
#> 12943 1965
#> 12944 1965
#> 12945 1965
#> 12946 1968
#> 12947 1978
#> 12948 1983
#> 12949 1965
#> 12950 1965
#> 12951 1987
#> 12952 1965
#> 12953 1967
#> 12954 1965
#> 12955 1965
#> 12956 1959
#> 12957 1959
#> 12958 1967
#> 12959 1965
#> 12960 1967
#> 12961 1965
#> 12962 1967
#> 12963 1959
#> 12964 1962
#> 12965 1961
#> 12966 1961
#> 12967 1961
#> 12968 1965
#> 12969 1961
#> 12970 1967
#> 12971 1965
#> 12972 1962
#> 12973 1963
#> 12974 1965
#> 12975 1963
#> 12976 1968
#> 12977 1963
#> 12978 1964
#> 12979 1967
#> 12980 1965
#> 12981 1966
#> 12982 1963
#> 12983 1959
#> 12984 1965
#> 12985 1967
#> 12986 2003
#> 12987 2003
#> 12988 2000
#> 12989 2001
#> 12990 1999
#> 12991 2001
#> 12992 2003
#> 12993 2000
#> 12994 2001
#> 12995 2001
#> 12996 2000
#> 12997 2001
#> 12998 2000
#> 12999 2003
#> 13000 2004
#> 13001 2001
#> 13002 2003
#> 13003 2000
#> 13004 2000
#> 13005 2000
#> 13006 2001
#> 13007 2002
#> 13008 2003
#> 13009 2000
#> 13010 2002
#> 13011 1978
#> 13012 1982
#> 13013 1981
#> 13014 1982
#> 13015 1986
#> 13016 1977
#> 13017 1980
#> 13018 1981
#> 13019 1982
#> 13020 1980
#> 13021 1983
#> 13022 1995
#> 13023 1989
#> 13024 1984
#> 13025 1983
#> 13026 1981
#> 13027 1980
#> 13028 1986
#> 13029 1986
#> 13030 1983
#> 13031 1986
#> 13032 1988
#> 13033 1981
#> 13034 1979
#> 13035 1989
#> 13036 1981
#> 13037 1985
#> 13038 1981
#> 13039 1977
#> 13040 1975
#> 13041 1998
#> 13042 1977
#> 13043 1974
#> 13044 1975
#> 13045 1982
#> 13046 1974
#> 13047 1976
#> 13048 1980
#> 13049 1977
#> 13050 1989
#> 13051 1981
#> 13052 1983
#> 13053 1976
#> 13054 1990
#> 13055 1988
#> 13056 1976
#> 13057 1977
#> 13058 1974
#> 13059 1975
#> 13060 1977
#> 13061 1977
#> 13062 1973
#> 13063 1977
#> 13064 1975
#> 13065 1975
#> 13066 1976
#> 13067 1975
#> 13068 1975
#> 13069 1983
#> 13070 1998
#> 13071 1974
#> 13072 1977
#> 13073 1981
#> 13074 1995
#> 13075 1979
#> 13076 1977
#> 13077 1975
#> 13078 1991
#> 13079 1998
#> 13080 1994
#> 13081 1977
#> 13082 1981
#> 13083 1975
#> 13084 1976
#> 13085 1975
#> 13086 1982
#> 13087 1982
#> 13088 2009
#> 13089 2005
#> 13090 2007
#> 13091 2008
#> 13092 2005
#> 13093 2007
#> 13094 2009
#> 13095 2009
#> 13096 2007
#> 13097 2007
#> 13098 2006
#> 13099 2010
#> 13100 2008
#> 13101 2011
#> 13102 2007
#> 13103 2007
#> 13104 2011
#> 13105 2005
#> 13106 2008
#> 13107 2012
#> 13108 2008
#> 13109 2014
#> 13110 2007
#> 13111 2005
#> 13112 2014
#> 13113 2005
#> 13114 2008
#> 13115 2006
#> 13116 2016
#> 13117 2014
#> 13118 2011
#> 13119 2011
#> 13120 2012
#> 13121 2011
#> 13122 2013
#> 13123 2011
#> 13124 2011
#> 13125 2014
#> 13126 2015
#> 13127 2013
#> 13128 2014
#> 13129 1927
#> 13130 1921
#> 13131 1929
#> 13132 1917
#> 13133 1925
#> 13134 1927
#> 13135 1925
#> 13136 1925
#> 13137 1921
#> 13138 1921
#> 13139 1949
#> 13140 1930
#> 13141 1947
#> 13142 1924
#> 13143 1920
#> 13144 1937
#> 13145 1939
#> 13146 1919
#> 13147 1941
#> 13148 1921
#> 13149 1936
#> 13150 1923
#> 13151 1947
#> 13152 1921
#> 13153 1949
#> 13154 1922
#> 13155 1927
#> 13156 1927
#> 13157 1923
#> 13158 1919
#> 13159 1929
#> 13160 1919
#> 13161 1939
#> 13162 1921
#> 13163 1931
#> 13164 1924
#> 13165 1927
#> 13166 1937
#> 13167 1919
#> 13168 1929
#> 13169 1971
#> 13170 1990
#> 13171 1970
#> 13172 1970
#> 13173 1968
#> 13174 1977
#> 13175 1970
#> 13176 1971
#> 13177 1970
#> 13178 1972
#> 13179 1970
#> 13180 1970
#> 13181 1972
#> 13182 1970
#> 13183 1972
#> 13184 1980
#> 13185 1987
#> 13186 1972
#> 13187 1970
#> 13188 1973
#> 13189 1951
#> 13190 1954
#> 13191 1959
#> 13192 1954
#> 13193 1953
#> 13194 1958
#> 13195 1955
#> 13196 1958
#> 13197 1953
#> 13198 1950
#> 13199 1951
#> 13200 1954
#> 13201 1955
#> 13202 1954
#> 13203 1949
#> 13204 1954
#> 13205 1951
#> 13206 1954
#> 13207 1952
#> 13208 1953
#> 13209 1954
#> 13210 1951
#> 13211 1943
#> 13212 1955
#> 13213 1953
#> 13214 1953
#> 13215 1949
#> 13216 1934
#> 13217 1951
#> 13218 1952
#> 13219 1957
#> 13220 1951
#> 13221 1954
#> 13222 1953
#> 13223 1953
#> 13224 1953
#> 13225 1953
#> 13226 1951
#> 13227 1954
#> 13228 1953
#> 13229 2016
#> 13230 2017
#> 13231 2016
#> 13232 2015
#> 13233 1991
#> 13234 1991
#> 13235 1991
#> 13236 1984
#> 13237 1986
#> 13238 1991
#> 13239 1987
#> 13240 1986
#> 13241 1992
#> 13242 1992
#> 13243 1987
#> 13244 1977
#> 13245 1992
#> 13246 1989
#> 13247 1985
#> 13248 1990
#> 13249 1992
#> 13250 1992
#> 13251 1990
#> 13252 1983
#> 13253 1980
#> 13254 1989
#> 13255 2004
#> 13256 1983
#> 13257 1991
#> 13258 1989
#> 13259 1991
#> 13260 1987
#> 13261 1984
#> 13262 1976
#> 13263 1986
#> 13264 1991
#> 13265 1991
#> 13266 1984
#> 13267 1992
#> 13268 1991
#> 13269 1989
#> 13270 1985
#> 13271 1987
#> 13272 1991
#> 13273 1992
#> 13274 1990
#> 13275 1988
#> 13276 1992
#> 13277 1991
#> 13278 1988
#> 13279 1988
#> 13280 2007
#> 13281 2007
#> 13282 2007
#> 13283 2012
#> 13284 2007
#> 13285 2007
#> 13286 2007
#> 13287 2008
#> 13288 2008
#> 13289 2008
#> 13290 1991
#> 13291 1994
#> 13292 1993
#> 13293 1994
#> 13294 1994
#> 13295 1996
#> 13296 1994
#> 13297 1996
#> 13298 1991
#> 13299 1996
#> 13300 1994
#> 13301 1991
#> 13302 1983
#> 13303 1996
#> 13304 1994
#> 13305 1995
#> 13306 1994
#> 13307 1993
#> 13308 1996
#> 13309 1997
#> 13310 1993
#> 13311 2006
#> 13312 2002
#> 13313 1999
#> 13314 1995
#> 13315 1994
#> 13316 2006
#> 13317 1992
#> 13318 2007
#> 13319 1994
#> 13320 2001
#> 13321 1994
#> 13322 1995
#> 13323 1996
#> 13324 1994
#> 13325 1996
#> 13326 1998
#> 13327 1971
#> 13328 1985
#> 13329 1989
#> 13330 1961
#> 13331 1988
#> 13332 1991
#> 13333 1997
#> 13334 1999
#> 13335 1986
#> 13336 1986
#> 13337 1999
#> 13338 1988
#> 13339 1998
#> 13340 1970
#> 13341 1990
#> 13342 2000
#> 13343 1984
#> 13344 1982
#> 13345 1983
#> 13346 1983
#> 13347 1983
#> 13348 1980
#> 13349 1979
#> 13350 1977
#> 13351 1984
#> 13352 1981
#> 13353 1965
#> 13354 1972
#> 13355 1981
#> 13356 1981
#> 13357 1974
#> 13358 1984
#> 13359 1984
#> 13360 1975
#> 13361 1983
#> 13362 1981
#> 13363 1983
#> 13364 1980
#> 13365 1977
#> 13366 1983
#> 13367 1984
#> 13368 1983
#> 13369 1986
#> 13370 1979
#> 13371 1982
#> 13372 1971
#> 13373 1979
#> 13374 1983
#> 13375 1983
#> 13376 1983
#> 13377 1981
#> 13378 1981
#> 13379 1979
#> 13380 1981
#> 13381 1981
#> 13382 1981
#> 13383 1982
#> 13384 1985
#> 13385 1977
#> 13386 1964
#> 13387 1982
#> 13388 1977
#> 13389 1980
#> 13390 1975
#> 13391 1984
#> 13392 1981
#> 13393 1986
#> 13394 1985
#> 13395 1977
#> 13396 1976
#> 13397 1985
#> 13398 1985
#> 13399 1982
#> 13400 1984
#> 13401 1984
#> 13402 1986
#> 13403 1977
#> 13404 1984
#> 13405 1985
#> 13406 1985
#> 13407 1979
#> 13408 1990
#> 13409 1984
#> 13410 1985
#> 13411 1985
#> 13412 1990
#> 13413 1990
#> 13414 1989
#> 13415 1984
#> 13416 1985
#> 13417 1985
#> 13418 1977
#> 13419 1985
#> 13420 1991
#> 13421 1977
#> 13422 1990
#> 13423 1977
#> 13424 1989
#> 13425 1990
#> 13426 1985
#> 13427 1977
#> 13428 1982
#> 13429 1991
#> 13430 1986
#> 13431 1991
#> 13432 1985
#> 13433 1977
#> 13434 1985
#> 13435 1982
#> 13436 1983
#> 13437 1979
#> 13438 1984
#> 13439 1984
#> 13440 1984
#> 13441 1935
#> 13442 1967
#> 13443 1937
#> 13444 1936
#> 13445 1935
#> 13446 1990
#> 13447 2006
#> 13448 1973
#> 13449 1998
#> 13450 1990
#> 13451 2008
#> 13452 1982
#> 13453 1941
#> 13454 2010
#> 13455 1936
#> 13456 1964
#> 13457 2008
#> 13458 1935
#> 13459 1949
#> 13460 1973
#> 13461 1943
#> 13462 1973
#> 13463 1969
#> 13464 1935
#> 13465 1935
#> 13466 1967
#> 13467 1970
#> 13468 1999
#> 13469 1973
#> 13470 1941
#> 13471 1974
#> 13472 1973
#> 13473 1937
#> 13474 1971
#> 13475 1993
#> 13476 1973
#> 13477 2009
#> 13478 2008
#> 13479 1974
#> 13480 2007
#> 13481 2011
#> 13482 2010
#> 13483 1945
#> 13484 1945
#> 13485 1945
#> 13486 1945
#> 13487 1945
#> 13488 1945
#> 13489 1945
#> 13490 1945
#> 13491 1945
#> 13492 1945
#> 13493 1945
#> 13494 1945
#> 13495 1945
#> 13496 1945
#> 13497 1945
#> 13498 1945
#> 13499 1945
#> 13500 1945
#> 13501 1945
#> 13502 1945
#> 13503 1945
#> 13504 1945
#> 13505 1945
#> 13506 1945
#> 13507 1945
#> 13508 1945
#> 13509 1945
#> 13510 1994
#> 13511 1982
#> 13512 1997
#> 13513 1984
#> 13514 1988
#> 13515 1990
#> 13516 1995
#> 13517 1989
#> 13518 1981
#> 13519 1983
#> 13520 1982
#> 13521 2000
#> 13522 1990
#> 13523 2010
#> 13524 1998
#> 13525 1997
#> 13526 1995
#> 13527 1988
#> 13528 1983
#> 13529 1988
#> 13530 1989
#> 13531 1994
#> 13532 1988
#> 13533 1989
#> 13534 1997
#> 13535 1989
#> 13536 1990
#> 13537 1990
#> 13538 1981
#> 13539 1982
#> 13540 1991
#> 13541 1986
#> 13542 1987
#> 13543 1981
#> 13544 1982
#> 13545 1982
#> 13546 1993
#> 13547 1989
#> 13548 1993
#> 13549 1992
#> 13550 1989
#> 13551 1994
#> 13552 1981
#> 13553 1987
#> 13554 1987
#> 13555 1959
#> 13556 1912
#> 13557 1879
#> 13558 1902
#> 13559 1951
#> 13560 1915
#> 13561 1947
#> 13562 1959
#> 13563 1960
#> 13564 1952
#> 13565 1954
#> 13566 1908
#> 13567 1898
#> 13568 1875
#> 13569 1912
#> 13570 1924
#> 13571 1949
#> 13572 1923
#> 13573 1917
#> 13574 1912
#> 13575 1908
#> 13576 1906
#> 13577 1922
#> 13578 1951
#> 13579 1899
#> 13580 1953
#> 13581 1912
#> 13582 1932
#> 13583 1889
#> 13584 1936
#> 13585 1924
#> 13586 1943
#> 13587 1947
#> 13588 1945
#> 13589 1946
#> 13590 1947
#> 13591 1946
#> 13592 1939
#> 13593 1946
#> 13594 1949
#> 13595 1949
#> 13596 1983
#> 13597 1975
#> 13598 1974
#> 13599 1973
#> 13600 1972
#> 13601 1972
#> 13602 1975
#> 13603 1974
#> 13604 1975
#> 13605 1983
#> 13606 1974
#> 13607 1975
#> 13608 1978
#> 13609 1973
#> 13610 1945
#> 13611 1973
#> 13612 1975
#> 13613 1979
#> 13614 1974
#> 13615 1973
#> 13616 1984
#> 13617 1957
#> 13618 1958
#> 13619 1976
#> 13620 1984
#> 13621 1976
#> 13622 1978
#> 13623 1975
#> 13624 1974
#> 13625 1982
#> 13626 1974
#> 13627 1981
#> 13628 1980
#> 13629 1991
#> 13630 1991
#> 13631 1991
#> 13632 1991
#> 13633 1986
#> 13634 1987
#> 13635 1986
#> 13636 1992
#> 13637 1986
#> 13638 1989
#> 13639 1986
#> 13640 1986
#> 13641 1988
#> 13642 1987
#> 13643 1986
#> 13644 1986
#> 13645 1994
#> 13646 1986
#> 13647 1996
#> 13648 1986
#> 13649 1994
#> 13650 1985
#> 13651 1987
#> 13652 1994
#> 13653 1986
#> 13654 1988
#> 13655 1993
#> 13656 1987
#> 13657 1985
#> 13658 1986
#> 13659 1985
#> 13660 1986
#> 13661 1994
#> 13662 1986
#> 13663 1987
#> 13664 1991
#> 13665 1988
#> 13666 1991
#> 13667 1989
#> 13668 1995
#> 13669 1986
#> 13670 1986
#> 13671 1986
#> 13672 1994
#> 13673 1988
#> 13674 1986
#> 13675 1994
#> 13676 1988
#> 13677 1989
#> 13678 1967
#> 13679 1971
#> 13680 1969
#> 13681 1967
#> 13682 1992
#> 13683 1969
#> 13684 1967
#> 13685 1968
#> 13686 1967
#> 13687 1969
#> 13688 1967
#> 13689 1968
#> 13690 1969
#> 13691 1967
#> 13692 1967
#> 13693 1968
#> 13694 1968
#> 13695 1968
#> 13696 1968
#> 13697 1967
#> 13698 1967
#> 13699 1968
#> 13700 1974
#> 13701 1967
#> 13702 1973
#> 13703 1967
#> 13704 1972
#> 13705 1967
#> 13706 1968
#> 13707 1967
#> 13708 1967
#> 13709 1968
#> 13710 1967
#> 13711 1968
#> 13712 1967
#> 13713 1968
#> 13714 1968
#> 13715 1967
#> 13716 1967
#> 13717 1967
#> 13718 1967
#> 13719 1968
#> 13720 1969
#> 13721 1968
#> 13722 1970
#> 13723 1967
#> 13724 1971
#> 13725 1968
#> 13726 1973
#> 13727 1987
#> 13728 2005
#> 13729 1975
#> 13730 1988
#> 13731 2003
#> 13732 2005
#> 13733 1986
#> 13734 2003
#> 13735 2005
#> 13736 1975
#> 13737 1988
#> 13738 1975
#> 13739 2007
#> 13740 1992
#> 13741 1986
#> 13742 1993
#> 13743 2004
#> 13744 1993
#> 13745 1995
#> 13746 2004
#> 13747 2002
#> 13748 1995
#> 13749 2002
#> 13750 2009
#> 13751 2008
#> 13752 2005
#> 13753 1985
#> 13754 2003
#> 13755 2001
#> 13756 1976
#> 13757 1991
#> 13758 2006
#> 13759 2009
#> 13760 1998
#> 13761 2013
#> 13762 2009
#> 13763 1993
#> 13764 1980
#> 13765 1993
#> 13766 1980
#> 13767 1959
#> 13768 1977
#> 13769 1984
#> 13770 1990
#> 13771 1998
#> 13772 2002
#> 13773 2002
#> 13774 1951
#> 13775 1993
#> 13776 1978
#> 13777 1995
#> 13778 1989
#> 13779 1984
#> 13780 1989
#> 13781 1989
#> 13782 1981
#> 13783 1991
#> 13784 1987
#> 13785 1993
#> 13786 1988
#> 13787 1985
#> 13788 1985
#> 13789 1990
#> 13790 1996
#> 13791 1987
#> 13792 1987
#> 13793 1950
#> 13794 1981
#> 13795 1992
#> 13796 1998
#> 13797 1999
#> 13798 1993
#> 13799 1998
#> 13800 2000
#> 13801 1998
#> 13802 2013
#> 13803 2013
#> 13804 2010
#> 13805 2003
#> 13806 2000
#> 13807 2000
#> 13808 2002
#> 13809 1993
#> 13810 1999
#> 13811 2009
#> 13812 1999
#> 13813 2008
#> 13814 2007
#> 13815 1953
#> 13816 1949
#> 13817 1947
#> 13818 1935
#> 13819 1949
#> 13820 1953
#> 13821 1953
#> 13822 1953
#> 13823 1945
#> 13824 1951
#> 13825 1935
#> 13826 1949
#> 13827 1949
#> 13828 1953
#> 13829 1950
#> 13830 1951
#> 13831 1952
#> 13832 1947
#> 13833 1942
#> 13834 1947
#> 13835 1935
#> 13836 1951
#> 13837 1953
#> 13838 1954
#> 13839 1945
#> 13840 1938
#> 13841 1948
#> 13842 1950
#> 13843 1951
#> 13844 1915
#> 13845 1912
#> 13846 1935
#> 13847 1911
#> 13848 1913
#> 13849 1911
#> 13850 1949
#> 13851 1951
#> 13852 1907
#> 13853 1913
#> 13854 1913
#> 13855 1913
#> 13856 1911
#> 13857 1934
#> 13858 1934
#> 13859 1913
#> 13860 1910
#> 13861 1887
#> 13862 1909
#> 13863 1956
#> 13864 1913
#> 13865 1913
#> 13866 1911
#> 13867 1911
#> 13868 1910
#> 13869 1941
#> 13870 1907
#> 13871 1913
#> 13872 1919
#> 13873 1911
#> 13874 1913
#> 13875 1912
#> 13876 1914
#> 13877 1912
#> 13878 1922
#> 13879 1919
#> 13880 1917
#> 13881 1908
#> 13882 1914
#> 13883 1911
#> 13884 1913
#> 13885 1907
#> 13886 1915
#> 13887 1990
#> 13888 1984
#> 13889 1984
#> 13890 1993
#> 13891 1970
#> 13892 1984
#> 13893 1982
#> 13894 1983
#> 13895 1983
#> 13896 1990
#> 13897 1984
#> 13898 1988
#> 13899 1983
#> 13900 1988
#> 13901 1984
#> 13902 1985
#> 13903 1986
#> 13904 1984
#> 13905 1983
#> 13906 1984
#> 13907 1983
#> 13908 1986
#> 13909 1983
#> 13910 1985
#> 13911 1984
#> 13912 1983
#> 13913 1983
#> 13914 1983
#> 13915 1983
#> 13916 1983
#> 13917 1985
#> 13918 1983
#> 13919 1987
#> 13920 1985
#> 13921 1988
#> 13922 1985
#> 13923 1983
#> 13924 1984
#> 13925 1984
#> 13926 1989
#> 13927 1993
#> 13928 1986
#> 13929 1983
#> 13930 1985
#> 13931 1984
#> 13932 1984
#> 13933 1983
#> 13934 1984
#> 13935 1983
#> 13936 1983
#> 13937 1867
#> 13938 1958
#> 13939 1867
#> 13940 1934
#> 13941 1949
#> 13942 1976
#> 13943 1885
#> 13944 1877
#> 13945 1959
#> 13946 1889
#> 13947 1848
#> 13948 1851
#> 13949 1846
#> 13950 1855
#> 13951 1850
#> 13952 1845
#> 13953 1848
#> 13954 1851
#> 13955 1843
#> 13956 1857
#> 13957 1875
#> 13958 1889
#> 13959 1866
#> 13960 1864
#> 13961 1844
#> 13962 1911
#> 13963 1846
#> 13964 1936
#> 13965 1889
#> 13966 1851
#> 13967 1907
#> 13968 1857
#> 13969 1857
#> 13970 1842
#> 13971 1868
#> 13972 1889
#> 13973 1845
#> 13974 1895
#> 13975 1870
#> 13976 1889
#> 13977 1872
#> 13978 1848
#> 13979 1889
#> 13980 2006
#> 13981 2002
#> 13982 2004
#> 13983 1998
#> 13984 2005
#> 13985 2001
#> 13986 2001
#> 13987 2011
#> 13988 1983
#> 13989 2009
#> 13990 1999
#> 13991 2004
#> 13992 1997
#> 13993 2008
#> 13994 2007
#> 13995 2007
#> 13996 2005
#> 13997 1997
#> 13998 2007
#> 13999 1999
#> 14000 2002
#> 14001 2004
#> 14002 2007
#> 14003 2007
#> 14004 2008
#> 14005 2010
#> 14006 2007
#> 14007 2004
#> 14008 2004
#> 14009 2014
#> 14010 2008
#> 14011 1999
#> 14012 2008
#> 14013 2005
#> 14014 2007
#> 14015 2006
#> 14016 2009
#> 14017 1998
#> 14018 2003
#> 14019 1980
#> 14020 2001
#> 14021 2002
#> 14022 1976
#> 14023 1972
#> 14024 1971
#> 14025 1973
#> 14026 2003
#> 14027 1998
#> 14028 1973
#> 14029 2003
#> 14030 1962
#> 14031 1977
#> 14032 1978
#> 14033 2003
#> 14034 1992
#> 14035 2003
#> 14036 1976
#> 14037 1998
#> 14038 2002
#> 14039 1990
#> 14040 2001
#> 14041 2003
#> 14042 2003
#> 14043 1997
#> 14044 1978
#> 14045 1993
#> 14046 1975
#> 14047 1979
#> 14048 1975
#> 14049 1980
#> 14050 2003
#> 14051 1973
#> 14052 1974
#> 14053 2003
#> 14054 1972
#> 14055 1980
#> 14056 1998
#> 14057 2003
#> 14058 1977
#> 14059 1996
#> 14060 2003
#> 14061 2003
#> 14062 1977
#> 14063 2003
#> 14064 1976
#> 14065 1976
#> 14066 1983
#> 14067 1977
#> 14068 2006
#> 14069 2013
#> 14070 2005
#> 14071 2005
#> 14072 2011
#> 14073 2002
#> 14074 2013
#> 14075 2013
#> 14076 2012
#> 14077 1972
#> 14078 1989
#> 14079 1997
#> 14080 2009
#> 14081 2012
#> 14082 2011
#> 14083 2006
#> 14084 1974
#> 14085 1973
#> 14086 1979
#> 14087 1973
#> 14088 1972
#> 14089 1978
#> 14090 1975
#> 14091 1974
#> 14092 1972
#> 14093 1991
#> 14094 1977
#> 14095 1974
#> 14096 1975
#> 14097 1978
#> 14098 1973
#> 14099 1986
#> 14100 1986
#> 14101 1975
#> 14102 1974
#> 14103 1973
#> 14104 2012
#> 14105 2005
#> 14106 2005
#> 14107 2014
#> 14108 2007
#> 14109 1998
#> 14110 2004
#> 14111 2003
#> 14112 2004
#> 14113 2007
#> 14114 2005
#> 14115 2008
#> 14116 2009
#> 14117 2007
#> 14118 2004
#> 14119 2008
#> 14120 2005
#> 14121 2010
#> 14122 2008
#> 14123 2006
#> 14124 2009
#> 14125 2007
#> 14126 2008
#> 14127 2006
#> 14128 1980
#> 14129 2004
#> 14130 2010
#> 14131 2007
#> 14132 2009
#> 14133 2005
#> 14134 1995
#> 14135 2006
#> 14136 2006
#> 14137 1998
#> 14138 1996
#> 14139 1998
#> 14140 1999
#> 14141 1999
#> 14142 1997
#> 14143 1999
#> 14144 1997
#> 14145 2000
#> 14146 2000
#> 14147 1999
#> 14148 1996
#> 14149 1999
#> 14150 2001
#> 14151 1996
#> 14152 1996
#> 14153 1999
#> 14154 1999
#> 14155 1975
#> 14156 2000
#> 14157 1975
#> 14158 1976
#> 14159 1985
#> 14160 1973
#> 14161 1978
#> 14162 1978
#> 14163 1974
#> 14164 1979
#> 14165 1976
#> 14166 1983
#> 14167 1993
#> 14168 1974
#> 14169 1987
#> 14170 1975
#> 14171 1981
#> 14172 1980
#> 14173 1975
#> 14174 1988
#> 14175 1977
#> 14176 1973
#> 14177 1973
#> 14178 1979
#> 14179 1973
#> 14180 1973
#> 14181 1974
#> 14182 1996
#> 14183 1978
#> 14184 1989
#> 14185 1991
#> 14186 1973
#> 14187 1979
#> 14188 1977
#> 14189 1975
#> 14190 1975
#> 14191 1981
#> 14192 1977
#> 14193 1982
#> 14194 1963
#> 14195 1957
#> 14196 1965
#> 14197 1965
#> 14198 1965
#> 14199 1961
#> 14200 1963
#> 14201 1963
#> 14202 1959
#> 14203 1958
#> 14204 1957
#> 14205 1965
#> 14206 1959
#> 14207 1965
#> 14208 1945
#> 14209 1953
#> 14210 1954
#> 14211 1932
#> 14212 1931
#> 14213 1939
#> 14214 1946
#> 14215 1945
#> 14216 1949
#> 14217 1954
#> 14218 1943
#> 14219 1945
#> 14220 1945
#> 14221 1961
#> 14222 1956
#> 14223 1946
#> 14224 1942
#> 14225 1941
#> 14226 1911
#> 14227 1943
#> 14228 1929
#> 14229 1952
#> 14230 1954
#> 14231 1945
#> 14232 1954
#> 14233 1947
#> 14234 1945
#> 14235 1922
#> 14236 1947
#> 14237 1921
#> 14238 1941
#> 14239 1947
#> 14240 1935
#> 14241 1954
#> 14242 1945
#> 14243 1923
#> 14244 1936
#> 14245 1945
#> 14246 1954
#> 14247 1947
#> 14248 1947
#> 14249 1947
#> 14250 1944
#> 14251 1942
#> 14252 1947
#> 14253 1961
#> 14254 1947
#> 14255 1949
#> 14256 1981
#> 14257 1988
#> 14258 1989
#> 14259 1989
#> 14260 1990
#> 14261 1984
#> 14262 1989
#> 14263 1991
#> 14264 1986
#> 14265 1986
#> 14266 1991
#> 14267 1990
#> 14268 1985
#> 14269 1989
#> 14270 1986
#> 14271 1990
#> 14272 1991
#> 14273 1991
#> 14274 2017
#> 14275 2017
#> 14276 1978
#> 14277 1982
#> 14278 1981
#> 14279 1982
#> 14280 1986
#> 14281 1977
#> 14282 1980
#> 14283 1972
#> 14284 1981
#> 14285 1982
#> 14286 1980
#> 14287 1983
#> 14288 1995
#> 14289 1989
#> 14290 1984
#> 14291 1983
#> 14292 1981
#> 14293 1980
#> 14294 1986
#> 14295 1986
#> 14296 1983
#> 14297 1986
#> 14298 1988
#> 14299 1981
#> 14300 1972
#> 14301 1979
#> 14302 1989
#> 14303 1981
#> 14304 1985
#> 14305 1981
#> 14306 1943
#> 14307 1946
#> 14308 1944
#> 14309 1944
#> 14310 1947
#> 14311 1985
#> 14312 1947
#> 14313 1958
#> 14314 1976
#> 14315 1960
#> 14316 1946
#> 14317 1911
#> 14318 1947
#> 14319 1948
#> 14320 2001
#> 14321 1954
#> 14322 1946
#> 14323 1947
#> 14324 1993
#> 14325 1955
#> 14326 1947
#> 14327 1963
#> 14328 1987
#> 14329 1983
#> 14330 1980
#> 14331 1980
#> 14332 1984
#> 14333 1988
#> 14334 1987
#> 14335 1977
#> 14336 1984
#> 14337 1988
#> 14338 1976
#> 14339 1983
#> 14340 1981
#> 14341 1984
#> 14342 1983
#> 14343 1986
#> 14344 1987
#> 14345 1992
#> 14346 1985
#> 14347 1985
#> 14348 1989
#> 14349 1985
#> 14350 1992
#> 14351 1991
#> 14352 1989
#> 14353 1992
#> 14354 1991
#> 14355 1911
#> 14356 1909
#> 14357 1913
#> 14358 1895
#> 14359 1909
#> 14360 1895
#> 14361 1903
#> 14362 1915
#> 14363 1908
#> 14364 1905
#> 14365 1905
#> 14366 1917
#> 14367 1904
#> 14368 1911
#> 14369 1912
#> 14370 1910
#> 14371 1901
#> 14372 1898
#> 14373 1892
#> 14374 1905
#> 14375 1905
#> 14376 1915
#> 14377 1907
#> 14378 1913
#> 14379 1911
#> 14380 1911
#> 14381 1903
#> 14382 1891
#> 14383 1909
#> 14384 1898
#> 14385 1901
#> 14386 1909
#> 14387 1904
#> 14388 1911
#> 14389 1913
#> 14390 1903
#> 14391 1902
#> 14392 1917
#> 14393 1911
#> 14394 1915
#> 14395 1917
#> 14396 1909
#> 14397 1898
#> 14398 1906
#> 14399 1905
#> 14400 1909
#> 14401 1911
#> 14402 1911
#> 14403 1974
#> 14404 1981
#> 14405 2005
#> 14406 1991
#> 14407 2006
#> 14408 2002
#> 14409 2004
#> 14410 1998
#> 14411 2005
#> 14412 2004
#> 14413 2007
#> 14414 2006
#> 14415 2004
#> 14416 1997
#> 14417 2008
#> 14418 2001
#> 14419 2008
#> 14420 2005
#> 14421 2005
#> 14422 2007
#> 14423 1999
#> 14424 2006
#> 14425 2004
#> 14426 2008
#> 14427 2007
#> 14428 2004
#> 14429 2004
#> 14430 1999
#> 14431 2005
#> 14432 2007
#> 14433 1998
#> 14434 1976
#> 14435 1980
#> 14436 1977
#> 14437 1977
#> 14438 1975
#> 14439 1977
#> 14440 1978
#> 14441 1979
#> 14442 1965
#> 14443 1962
#> 14444 1963
#> 14445 1955
#> 14446 1958
#> 14447 1955
#> 14448 1955
#> 14449 1960
#> 14450 1959
#> 14451 1965
#> 14452 1964
#> 14453 1954
#> 14454 1962
#> 14455 1945
#> 14456 1957
#> 14457 1965
#> 14458 1956
#> 14459 1959
#> 14460 1952
#> 14461 1954
#> 14462 1959
#> 14463 1957
#> 14464 1959
#> 14465 1959
#> 14466 1960
#> 14467 2008
#> 14468 2006
#> 14469 2008
#> 14470 2007
#> 14471 2008
#> 14472 2005
#> 14473 2007
#> 14474 2008
#> 14475 2005
#> 14476 2007
#> 14477 2008
#> 14478 2006
#> 14479 2008
#> 14480 1997
#> 14481 1999
#> 14482 1997
#> 14483 1999
#> 14484 1997
#> 14485 1997
#> 14486 1996
#> 14487 1998
#> 14488 1999
#> 14489 1988
#> 14490 1995
#> 14491 1998
#> 14492 1997
#> 14493 1998
#> 14494 1997
#> 14495 1999
#> 14496 1997
#> 14497 1997
#> 14498 1997
#> 14499 1997
#> 14500 1996
#> 14501 1997
#> 14502 1989
#> 14503 1998
#> 14504 1992
#> 14505 1997
#> 14506 1999
#> 14507 1999
#> 14508 1996
#> 14509 1998
#> 14510 1995
#> 14511 1991
#> 14512 1989
#> 14513 1992
#> 14514 1990
#> 14515 1990
#> 14516 1990
#> 14517 1989
#> 14518 1991
#> 14519 1991
#> 14520 1987
#> 14521 1989
#> 14522 1988
#> 14523 1990
#> 14524 1991
#> 14525 1992
#> 14526 1990
#> 14527 2005
#> 14528 2007
#> 14529 2006
#> 14530 2007
#> 14531 2007
#> 14532 2003
#> 14533 2007
#> 14534 2008
#> 14535 2008
#> 14536 2007
#> 14537 2007
#> 14538 2006
#> 14539 2007
#> 14540 2007
#> 14541 2007
#> 14542 2007
#> 14543 2005
#> 14544 2003
#> 14545 2006
#> 14546 2005
#> 14547 2003
#> 14548 1994
#> 14549 2007
#> 14550 2007
#> 14551 2007
#> 14552 2008
#> 14553 2006
#> 14554 2004
#> 14555 2007
#> 14556 2004
#> 14557 2004
#> 14558 2005
#> 14559 2009
#> 14560 2006
#> 14561 2009
#> 14562 2003
#> 14563 2015
#> 14564 2009
#> 14565 2003
#> 14566 2005
#> 14567 2004
#> 14568 2005
#> 14569 2008
#> 14570 2016
#> 14571 1968
#> 14572 1975
#> 14573 1985
#> 14574 1972
#> 14575 1974
#> 14576 1981
#> 14577 1968
#> 14578 1987
#> 14579 1974
#> 14580 1987
#> 14581 1970
#> 14582 1989
#> 14583 1988
#> 14584 1990
#> 14585 1990
#> 14586 1943
#> 14587 1936
#> 14588 1935
#> 14589 1929
#> 14590 1939
#> 14591 1941
#> 14592 1941
#> 14593 1939
#> 14594 1936
#> 14595 1927
#> 14596 1994
#> 14597 1994
#> 14598 1997
#> 14599 1993
#> 14600 1994
#> 14601 1994
#> 14602 1995
#> 14603 1997
#> 14604 1995
#> 14605 1991
#> 14606 1994
#> 14607 1994
#> 14608 1996
#> 14609 1996
#> 14610 1994
#> 14611 2011
#> 14612 1975
#> 14613 2013
#> 14614 2013
#> 14615 2014
#> 14616 2010
#> 14617 1982
#> 14618 1935
#> 14619 1967
#> 14620 1937
#> 14621 1936
#> 14622 1935
#> 14623 2006
#> 14624 1953
#> 14625 1998
#> 14626 1990
#> 14627 2008
#> 14628 1982
#> 14629 1941
#> 14630 1936
#> 14631 1964
#> 14632 2008
#> 14633 1949
#> 14634 1973
#> 14635 1943
#> 14636 1973
#> 14637 1969
#> 14638 1960
#> 14639 1967
#> 14640 1970
#> 14641 1999
#> 14642 1973
#> 14643 1974
#> 14644 1974
#> 14645 1973
#> 14646 1937
#> 14647 1971
#> 14648 1993
#> 14649 1974
#> 14650 2009
#> 14651 2007
#> 14652 1975
#> 14653 1978
#> 14654 2000
#> 14655 1975
#> 14656 1976
#> 14657 1985
#> 14658 1973
#> 14659 1978
#> 14660 1978
#> 14661 1972
#> 14662 1974
#> 14663 1979
#> 14664 1976
#> 14665 1983
#> 14666 1993
#> 14667 1974
#> 14668 1987
#> 14669 1975
#> 14670 1970
#> 14671 1981
#> 14672 1980
#> 14673 1975
#> 14674 1988
#> 14675 1977
#> 14676 1973
#> 14677 1982
#> 14678 1973
#> 14679 1971
#> 14680 1979
#> 14681 1965
#> 14682 1965
#> 14683 1973
#> 14684 1973
#> 14685 1974
#> 14686 1990
#> 14687 1971
#> 14688 1996
#> 14689 1978
#> 14690 1989
#> 14691 1991
#> 14692 1973
#> 14693 1979
#> 14694 1977
#> 14695 1975
#> 14696 1975
#> 14697 1981
#> 14698 1977
#> 14699 1982
#> 14700 1994
#> 14701 2005
#> 14702 1993
#> 14703 1992
#> 14704 1998
#> 14705 2009
#> 14706 1993
#> 14707 2007
#> 14708 1993
#> 14709 2002
#> 14710 1995
#> 14711 1994
#> 14712 1985
#> 14713 1919
#> 14714 1927
#> 14715 1946
#> 14716 1917
#> 14717 1949
#> 14718 1913
#> 14719 1915
#> 14720 1951
#> 14721 1933
#> 14722 1943
#> 14723 1940
#> 14724 1945
#> 14725 1943
#> 14726 1943
#> 14727 1894
#> 14728 1955
#> 14729 1935
#> 14730 1947
#> 14731 1943
#> 14732 1925
#> 14733 1953
#> 14734 1917
#> 14735 1915
#> 14736 1945
#> 14737 1916
#> 14738 1941
#> 14739 1923
#> 14740 2007
#> 14741 1995
#> 14742 2006
#> 14743 2003
#> 14744 2002
#> 14745 2006
#> 14746 2008
#> 14747 2008
#> 14748 2004
#> 14749 2008
#> 14750 2004
#> 14751 2007
#> 14752 2005
#> 14753 2009
#> 14754 2006
#> 14755 2007
#> 14756 2003
#> 14757 2006
#> 14758 2009
#> 14759 2005
#> 14760 2009
#> 14761 2007
#> 14762 2005
#> 14763 2005
#> 14764 2009
#> 14765 2002
#> 14766 2003
#> 14767 1979
#> 14768 1990
#> 14769 2000
#> 14770 1996
#> 14771 2001
#> 14772 1999
#> 14773 2007
#> 14774 2003
#> 14775 1992
#> 14776 2001
#> 14777 1995
#> 14778 2003
#> 14779 2003
#> 14780 1991
#> 14781 2010
#> 14782 2000
#> 14783 1991
#> 14784 1985
#> 14785 1983
#> 14786 1983
#> 14787 1987
#> 14788 1975
#> 14789 1985
#> 14790 2005
#> 14791 1985
#> 14792 1939
#> 14793 1941
#> 14794 1937
#> 14795 1938
#> 14796 1937
#> 14797 1945
#> 14798 1943
#> 14799 1937
#> 14800 1937
#> 14801 1939
#> 14802 1939
#> 14803 1937
#> 14804 1939
#> 14805 1937
#> 14806 1940
#> 14807 1938
#> 14808 1941
#> 14809 1937
#> 14810 1945
#> 14811 1937
#> 14812 1937
#> 14813 1938
#> 14814 1943
#> 14815 1939
#> 14816 1937
#> 14817 1937
#> 14818 1945
#> 14819 1937
#> 14820 1937
#> 14821 1940
#> 14822 1937
#> 14823 1937
#> 14824 1941
#> 14825 1937
#> 14826 1939
#> 14827 1937
#> 14828 1943
#> 14829 1937
#> 14830 1937
#> 14831 1939
#> 14832 1939
#> 14833 1937
#> 14834 1939
#> 14835 1938
#> 14836 1939
#> 14837 1939
#> 14838 1937
#> 14839 1941
#> 14840 1992
#> 14841 2007
#> 14842 1991
#> 14843 2009
#> 14844 1991
#> 14845 2004
#> 14846 2007
#> 14847 2005
#> 14848 2001
#> 14849 1989
#> 14850 1993
#> 14851 1999
#> 14852 1997
#> 14853 1991
#> 14854 2003
#> 14855 2002
#> 14856 2007
#> 14857 1995
#> 14858 1991
#> 14859 2006
#> 14860 1981
#> 14861 1979
#> 14862 1984
#> 14863 1978
#> 14864 1985
#> 14865 1983
#> 14866 1984
#> 14867 1982
#> 14868 1980
#> 14869 1977
#> 14870 1979
#> 14871 1986
#> 14872 1978
#> 14873 1979
#> 14874 1982
#> 14875 1982
#> 14876 1986
#> 14877 1978
#> 14878 1982
#> 14879 1997
#> 14880 1987
#> 14881 1977
#> 14882 1985
#> 14883 1986
#> 14884 1987
#> 14885 1991
#> 14886 1977
#> 14887 1978
#> 14888 1981
#> 14889 1983
#> 14890 1983
#> 14891 1977
#> 14892 1993
#> 14893 1984
#> 14894 1981
#> 14895 1985
#> 14896 1982
#> 14897 1983
#> 14898 1980
#> 14899 1982
#> 14900 1974
#> 14901 1979
#> 14902 1991
#> 14903 1990
#> 14904 1979
#> 14905 1995
#> 14906 1983
#> 14907 1997
#> 14908 1979
#> 14909 1978
#> 14910 1985
#> 14911 1983
#> 14912 1984
#> 14913 1982
#> 14914 1980
#> 14915 1977
#> 14916 1979
#> 14917 1978
#> 14918 1979
#> 14919 1982
#> 14920 1982
#> 14921 1986
#> 14922 1978
#> 14923 1982
#> 14924 1997
#> 14925 1987
#> 14926 1977
#> 14927 1985
#> 14928 1986
#> 14929 1987
#> 14930 1991
#> 14931 1977
#> 14932 1981
#> 14933 1983
#> 14934 1983
#> 14935 1977
#> 14936 1993
#> 14937 1984
#> 14938 1981
#> 14939 1985
#> 14940 1982
#> 14941 1983
#> 14942 1980
#> 14943 1982
#> 14944 1974
#> 14945 1979
#> 14946 1991
#> 14947 1990
#> 14948 1979
#> 14949 1995
#> 14950 1983
#> 14951 1997
#> 14952 1854
#> 14953 1870
#> 14954 1874
#> 14955 1851
#> 14956 1861
#> 14957 1839
#> 14958 1868
#> 14959 1868
#> 14960 1864
#> 14961 1854
#> 14962 1852
#> 14963 1841
#> 14964 1859
#> 14965 1837
#> 14966 1847
#> 14967 1846
#> 14968 1825
#> 14969 1837
#> 14970 1836
#> 14971 1858
#> 14972 1868
#> 14973 1868
#> 14974 1866
#> 14975 1869
#> 14976 1866
#> 14977 1846
#> 14978 1845
#> 14979 1890
#> 14980 1813
#> 14981 1852
#> 14982 1867
#> 14983 1837
#> 14984 1891
#> 14985 1872
#> 14986 1833
#> 14987 1843
#> 14988 1868
#> 14989 1867
#> 14990 1867
#> 14991 1871
#> 14992 1852
#> 14993 1827
#> 14994 1870
#> 14995 1872
#> 14996 1869
#> 14997 1849
#> 14998 1869
#> 14999 1994
#> 15000 1989
#> 15001 1996
#> 15002 1989
#> 15003 1993
#> 15004 1985
#> 15005 1997
#> 15006 1976
#> 15007 1985
#> 15008 1989
#> 15009 1986
#> 15010 1990
#> 15011 1992
#> 15012 1979
#> 15013 1989
#> 15014 1993
#> 15015 1996
#> 15016 1996
#> 15017 1984
#> 15018 1994
#> 15019 1989
#> 15020 1987
#> 15021 1976
#> 15022 1992
#> 15023 2008
#> 15024 1995
#> 15025 2008
#> 15026 1990
#> 15027 1990
#> 15028 1995
#> 15029 1998
#> 15030 2006
#> 15031 1979
#> 15032 1995
#> 15033 1998
#> 15034 1982
#> 15035 1990
#> 15036 1985
#> 15037 1979
#> 15038 1985
#> 15039 1998
#> 15040 1999
#> 15041 1999
#> 15042 1998
#> 15043 2000
#> 15044 2001
#> 15045 1998
#> 15046 1999
#> 15047 1999
#> 15048 1999
#> 15049 2000
#> 15050 1998
#> 15051 1999
#> 15052 2000
#> 15053 1998
#> 15054 1999
#> 15055 1998
#> 15056 1999
#> 15057 2001
#> 15058 2001
#> 15059 2000
#> 15060 1998
#> 15061 1999
#> 15062 2001
#> 15063 1992
#> 15064 1998
#> 15065 1995
#> 15066 1990
#> 15067 1993
#> 15068 1992
#> 15069 1992
#> 15070 1997
#> 15071 1993
#> 15072 1992
#> 15073 1992
#> 15074 1993
#> 15075 1992
#> 15076 1992
#> 15077 1992
#> 15078 1992
#> 15079 1995
#> 15080 1997
#> 15081 1992
#> 15082 1993
#> 15083 1992
#> 15084 1992
#> 15085 1993
#> 15086 1993
#> 15087 1993
#> 15088 1993
#> 15089 1992
#> 15090 1997
#> 15091 1992
#> 15092 1991
#> 15093 1993
#> 15094 1992
#> 15095 1992
#> 15096 1993
#> 15097 1993
#> 15098 1992
#> 15099 1992
#> 15100 1992
#> 15101 1992
#> 15102 1995
#> 15103 1992
#> 15104 1993
#> 15105 1993
#> 15106 1992
#> 15107 1992
#> 15108 1993
#> 15109 1993
#> 15110 2006
#> 15111 2006
#> 15112 2006
#> 15113 2005
#> 15114 2006
#> 15115 2006
#> 15116 2006
#> 15117 2006
#> 15118 2006
#> 15119 2006
#> 15120 2006
#> 15121 2009
#> 15122 2011
#> 15123 2011
#> 15124 2011
#> 15125 2006
#> 15126 2011
#> 15127 2006
#> 15128 2006
#> 15129 2007
#> 15130 2007
#> 15131 1994
#> 15132 2008
#> 15133 1939
#> 15134 1931
#> 15135 1935
#> 15136 1929
#> 15137 1935
#> 15138 1903
#> 15139 1923
#> 15140 1939
#> 15141 1937
#> 15142 1929
#> 15143 1923
#> 15144 1935
#> 15145 1935
#> 15146 1937
#> 15147 1932
#> 15148 1936
#> 15149 1925
#> 15150 1921
#> 15151 1921
#> 15152 1917
#> 15153 1929
#> 15154 1938
#> 15155 1931
#> 15156 1935
#> 15157 1937
#> 15158 1923
#> 15159 1937
#> 15160 1921
#> 15161 1933
#> 15162 1917
#> 15163 1927
#> 15164 1935
#> 15165 1933
#> 15166 1937
#> 15167 1931
#> 15168 1937
#> 15169 1925
#> 15170 1930
#> 15171 1937
#> 15172 1930
#> 15173 1935
#> 15174 1925
#> 15175 1947
#> 15176 1932
#> 15177 1921
#> 15178 1919
#> 15179 1939
#> 15180 1933
#> 15181 1977
#> 15182 1983
#> 15183 1993
#> 15184 1975
#> 15185 1993
#> 15186 1975
#> 15187 1993
#> 15188 1988
#> 15189 1996
#> 15190 1995
#> 15191 1992
#> 15192 1984
#> 15193 1994
#> 15194 1976
#> 15195 1974
#> 15196 1977
#> 15197 1975
#> 15198 1976
#> 15199 1975
#> 15200 1998
#> 15201 1994
#> 15202 1973
#> 15203 1977
#> 15204 1977
#> 15205 1978
#> 15206 1975
#> 15207 1995
#> 15208 1977
#> 15209 1972
#> 15210 1981
#> 15211 1971
#> 15212 1988
#> 15213 1978
#> 15214 1988
#> 15215 1988
#> 15216 1973
#> 15217 1983
#> 15218 1975
#> 15219 1988
#> 15220 1976
#> 15221 1998
#> 15222 1982
#> 15223 1989
#> 15224 1970
#> 15225 1968
#> 15226 1999
#> 15227 1991
#> 15228 1992
#> 15229 1993
#> 15230 1993
#> 15231 2006
#> 15232 1998
#> 15233 1993
#> 15234 1992
#> 15235 2011
#> 15236 1994
#> 15237 1994
#> 15238 2007
#> 15239 1991
#> 15240 1991
#> 15241 1989
#> 15242 1988
#> 15243 1990
#> 15244 1992
#> 15245 1991
#> 15246 1992
#> 15247 1990
#> 15248 1987
#> 15249 1989
#> 15250 1989
#> 15251 1987
#> 15252 1991
#> 15253 1995
#> 15254 1991
#> 15255 1989
#> 15256 1987
#> 15257 1995
#> 15258 1994
#> 15259 1998
#> 15260 2000
#> 15261 2001
#> 15262 2012
#> 15263 1991
#> 15264 1935
#> 15265 1935
#> 15266 1935
#> 15267 1935
#> 15268 1935
#> 15269 1943
#> 15270 1935
#> 15271 1937
#> 15272 1935
#> 15273 1935
#> 15274 1935
#> 15275 1937
#> 15276 1937
#> 15277 1934
#> 15278 1936
#> 15279 1935
#> 15280 1933
#> 15281 1935
#> 15282 1937
#> 15283 1937
#> 15284 1936
#> 15285 1935
#> 15286 1935
#> 15287 1937
#> 15288 1937
#> 15289 1935
#> 15290 1934
#> 15291 1935
#> 15292 1935
#> 15293 1935
#> 15294 1935
#> 15295 1947
#> 15296 1935
#> 15297 1935
#> 15298 1936
#> 15299 1935
#> 15300 1938
#> 15301 1935
#> 15302 1935
#> 15303 1935
#> 15304 1935
#> 15305 1935
#> 15306 1938
#> 15307 1934
#> 15308 1935
#> 15309 1999
#> 15310 1998
#> 15311 1998
#> 15312 1998
#> 15313 1998
#> 15314 1998
#> 15315 1998
#> 15316 1998
#> 15317 1998
#> 15318 1998
#> 15319 1998
#> 15320 1998
#> 15321 1998
#> 15322 1998
#> 15323 1998
#> 15324 1998
#> 15325 1998
#> 15326 1998
#> 15327 1998
#> 15328 1998
#> 15329 1991
#> 15330 1992
#> 15331 1992
#> 15332 1991
#> 15333 2004
#> 15334 2011
#> 15335 2011
#> 15336 2011
#> 15337 2011
#> 15338 2011
#> 15339 2011
#> 15340 2011
#> 15341 2011
#> 15342 2011
#> 15343 2004
#> 15344 1992
#> 15345 2001
#> 15346 2003
#> 15347 1997
#> 15348 1997
#> 15349 2000
#> 15350 2001
#> 15351 2000
#> 15352 1987
#> 15353 2000
#> 15354 1999
#> 15355 2002
#> 15356 1989
#> 15357 1907
#> 15358 1912
#> 15359 1909
#> 15360 1879
#> 15361 1911
#> 15362 1901
#> 15363 1921
#> 15364 1913
#> 15365 1913
#> 15366 1913
#> 15367 1919
#> 15368 1891
#> 15369 1929
#> 15370 1907
#> 15371 1917
#> 15372 1921
#> 15373 1891
#> 15374 1914
#> 15375 1864
#> 15376 1899
#> 15377 1907
#> 15378 1916
#> 15379 1917
#> 15380 1913
#> 15381 1921
#> 15382 1913
#> 15383 1911
#> 15384 1915
#> 15385 1915
#> 15386 1896
#> 15387 1901
#> 15388 1912
#> 15389 1910
#> 15390 1907
#> 15391 1909
#> 15392 1929
#> 15393 1912
#> 15394 1915
#> 15395 1913
#> 15396 1923
#> 15397 1905
#> 15398 1898
#> 15399 1882
#> 15400 1916
#> 15401 1905
#> 15402 1904
#> 15403 1899
#> 15404 1909
#> 15405 1955
#> 15406 1936
#> 15407 1930
#> 15408 1940
#> 15409 1934
#> 15410 1951
#> 15411 1939
#> 15412 1955
#> 15413 1943
#> 15414 1953
#> 15415 1940
#> 15416 1936
#> 15417 1956
#> 15418 1956
#> 15419 1957
#> 15420 1956
#> 15421 1957
#> 15422 1948
#> 15423 1948
#> 15424 1948
#> 15425 1941
#> 15426 1939
#> 15427 1942
#> 15428 1956
#> 15429 1955
#> 15430 1939
#> 15431 1932
#> 15432 1953
#> 15433 1953
#> 15434 1955
#> 15435 1942
#> 15436 1952
#> 15437 1942
#> 15438 1942
#> 15439 1939
#> 15440 1921
#> 15441 1905
#> 15442 1923
#> 15443 1922
#> 15444 1921
#> 15445 1951
#> 15446 1939
#> 15447 1947
#> 15448 1929
#> 15449 1935
#> 15450 1915
#> 15451 1935
#> 15452 1924
#> 15453 1935
#> 15454 1916
#> 15455 1956
#> 15456 1956
#> 15457 1956
#> 15458 1924
#> 15459 1934
#> 15460 1938
#> 15461 1933
#> 15462 1920
#> 15463 1936
#> 15464 1931
#> 15465 1926
#> 15466 1956
#> 15467 1937
#> 15468 1939
#> 15469 1932
#> 15470 1921
#> 15471 1914
#> 15472 1955
#> 15473 1896
#> 15474 1927
#> 15475 1935
#> 15476 1918
#> 15477 1928
#> 15478 1932
#> 15479 1930
#> 15480 1848
#> 15481 1859
#> 15482 1850
#> 15483 1846
#> 15484 1852
#> 15485 1855
#> 15486 1847
#> 15487 1849
#> 15488 1848
#> 15489 1860
#> 15490 1859
#> 15491 1848
#> 15492 1848
#> 15493 1848
#> 15494 1847
#> 15495 1846
#> 15496 1847
#> 15497 1855
#> 15498 1848
#> 15499 1851
#> 15500 1846
#> 15501 1845
#> 15502 1845
#> 15503 1847
#> 15504 1848
#> 15505 1847
#> 15506 1847
#> 15507 1854
#> 15508 1847
#> 15509 1854
#> 15510 1847
#> 15511 1847
#> 15512 1851
#> 15513 1982
#> 15514 1978
#> 15515 1979
#> 15516 1977
#> 15517 1991
#> 15518 1978
#> 15519 1994
#> 15520 1978
#> 15521 1980
#> 15522 1992
#> 15523 1979
#> 15524 1986
#> 15525 1978
#> 15526 1992
#> 15527 1980
#> 15528 1981
#> 15529 1976
#> 15530 1991
#> 15531 1985
#> 15532 1979
#> 15533 1992
#> 15534 1980
#> 15535 1978
#> 15536 1978
#> 15537 1989
#> 15538 1979
#> 15539 1992
#> 15540 1992
#> 15541 1990
#> 15542 1990
#> 15543 1992
#> 15544 1995
#> 15545 1993
#> 15546 1992
#> 15547 1992
#> 15548 1992
#> 15549 2000
#> 15550 1996
#> 15551 1992
#> 15552 1990
#> 15553 1992
#> 15554 2002
#> 15555 2002
#> 15556 2003
#> 15557 2002
#> 15558 2001
#> 15559 2002
#> 15560 2002
#> 15561 1998
#> 15562 2002
#> 15563 2002
#> 15564 2002
#> 15565 2002
#> 15566 2003
#> 15567 2002
#> 15568 2001
#> 15569 2002
#> 15570 1998
#> 15571 2002
#> 15572 2002
#> 15573 2002
#> 15574 1994
#> 15575 1995
#> 15576 1994
#> 15577 1988
#> 15578 1968
#> 15579 1998
#> 15580 2009
#> 15581 1994
#> 15582 1999
#> 15583 1968
#> 15584 1993
#> 15585 1993
#> 15586 1993
#> 15587 1994
#> 15588 1994
#> 15589 1999
#> 15590 1996
#> 15591 1995
#> 15592 1994
#> 15593 1994
#> 15594 1994
#> 15595 1995
#> 15596 1994
#> 15597 1994
#> 15598 1994
#> 15599 1994
#> 15600 1994
#> 15601 1995
#> 15602 1995
#> 15603 1995
#> 15604 1994
#> 15605 1994
#> 15606 1995
#> 15607 1995
#> 15608 1995
#> 15609 1994
#> 15610 1995
#> 15611 1995
#> 15612 1994
#> 15613 1993
#> 15614 1994
#> 15615 1994
#> 15616 1995
#> 15617 1995
#> 15618 1993
#> 15619 1996
#> 15620 1995
#> 15621 1994
#> 15622 1993
#> 15623 1995
#> 15624 1994
#> 15625 1995
#> 15626 1995
#> 15627 1995
#> 15628 1995
#> 15629 1996
#> 15630 1995
#> 15631 1994
#> 15632 1994
#> 15633 1997
#> 15634 1996
#> 15635 1994
#> 15636 1993
#> 15637 1998
#> 15638 1991
#> 15639 1997
#> 15640 1996
#> 15641 1994
#> 15642 1999
#> 15643 1998
#> 15644 1996
#> 15645 1994
#> 15646 1997
#> 15647 1997
#> 15648 1994
#> 15649 1998
#> 15650 1998
#> 15651 1994
#> 15652 1999
#> 15653 1998
#> 15654 1992
#> 15655 1997
#> 15656 1991
#> 15657 1993
#> 15658 1993
#> 15659 1997
#> 15660 1997
#> 15661 1995
#> 15662 1992
#> 15663 2005
#> 15664 2005
#> 15665 1991
#> 15666 1993
#> 15667 1994
#> 15668 1991
#> 15669 1997
#> 15670 1998
#> 15671 1998
#> 15672 1995
#> 15673 1995
#> 15674 1995
#> 15675 1999
#> 15676 1994
#> 15677 1993
#> 15678 1990
#> 15679 1993
#> 15680 1988
#> 15681 1988
#> 15682 1990
#> 15683 1981
#> 15684 1984
#> 15685 1986
#> 15686 1983
#> 15687 1982
#> 15688 1988
#> 15689 1990
#> 15690 1989
#> 15691 1981
#> 15692 1988
#> 15693 1982
#> 15694 1990
#> 15695 1981
#> 15696 1990
#> 15697 1984
#> 15698 1987
#> 15699 1989
#> 15700 1999
#> 15701 1980
#> 15702 1990
#> 15703 1995
#> 15704 1985
#> 15705 1988
#> 15706 1987
#> 15707 1989
#> 15708 2012
#> 15709 1989
#> 15710 1983
#> 15711 1994
#> 15712 1986
#> 15713 1987
#> 15714 2004
#> 15715 1986
#> 15716 1992
#> 15717 1988
#> 15718 2000
#> 15719 2013
#> 15720 1989
#> 15721 1996
#> 15722 1986
#> 15723 1981
#> 15724 1986
#> 15725 2006
#> 15726 1984
#> 15727 1992
#> 15728 1983
#> 15729 1984
#> 15730 1991
#> 15731 1986
#> 15732 1986
#> 15733 1990
#> 15734 1988
#> 15735 1985
#> 15736 1984
#> 15737 1984
#> 15738 1995
#> 15739 1996
#> 15740 1985
#> 15741 1990
#> 15742 1985
#> 15743 1984
#> 15744 1985
#> 15745 1989
#> 15746 1986
#> 15747 1985
#> 15748 1986
#> 15749 1987
#> 15750 1988
#> 15751 1989
#> 15752 1986
#> 15753 1999
#> 15754 1985
#> 15755 1994
#> 15756 1985
#> 15757 1985
#> 15758 1992
#> 15759 1985
#> 15760 1985
#> 15761 1987
#> 15762 1989
#> 15763 1996
#> 15764 1987
#> 15765 1985
#> 15766 1986
#> 15767 1986
#> 15768 1985
#> 15769 1993
#> 15770 1985
#> 15771 1986
#> 15772 1992
#> 15773 1995
#> 15774 1990
#> 15775 2015
#> 15776 1988
#> 15777 1991
#> 15778 1988
#> 15779 1987
#> 15780 1987
#> 15781 1989
#> 15782 1974
#> 15783 1991
#> 15784 1988
#> 15785 1991
#> 15786 1986
#> 15787 1988
#> 15788 1988
#> 15789 1989
#> 15790 1987
#> 15791 1986
#> 15792 1988
#> 15793 1991
#> 15794 1988
#> 15795 1982
#> 15796 1990
#> 15797 1989
#> 15798 1985
#> 15799 1985
#> 15800 2002
#> 15801 1999
#> 15802 1999
#> 15803 1995
#> 15804 1999
#> 15805 1985
#> 15806 2005
#> 15807 1998
#> 15808 2003
#> 15809 1978
#> 15810 1991
#> 15811 1987
#> 15812 1998
#> 15813 1998
#> 15814 1999
#> 15815 1996
#> 15816 1989
#> 15817 1997
#> 15818 1981
#> 15819 1973
#> 15820 1983
#> 15821 1974
#> 15822 1980
#> 15823 1973
#> 15824 2013
#> 15825 1973
#> 15826 2011
#> 15827 1998
#> 15828 2001
#> 15829 1973
#> 15830 1978
#> 15831 1974
#> 15832 1983
#> 15833 1974
#> 15834 2013
#> 15835 1973
#> 15836 1978
#> 15837 1974
#> 15838 1973
#> 15839 1975
#> 15840 1975
#> 15841 1978
#> 15842 2002
#> 15843 2007
#> 15844 1995
#> 15845 1973
#> 15846 1989
#> 15847 2013
#> 15848 1981
#> 15849 2013
#> 15850 1975
#> 15851 1976
#> 15852 1975
#> 15853 1999
#> 15854 1983
#> 15855 2000
#> 15856 1979
#> 15857 1978
#> 15858 1973
#> 15859 2011
#> 15860 1998
#> 15861 2001
#> 15862 1978
#> 15863 1974
#> 15864 1983
#> 15865 1987
#> 15866 2013
#> 15867 1974
#> 15868 2013
#> 15869 2002
#> 15870 2007
#> 15871 1995
#> 15872 2006
#> 15873 1997
#> 15874 1989
#> 15875 1981
#> 15876 2013
#> 15877 1979
#> 15878 2013
#> 15879 2006
#> 15880 2003
#> 15881 2005
#> 15882 2006
#> 15883 2002
#> 15884 2014
#> 15885 2004
#> 15886 2014
#> 15887 2012
#> 15888 2009
#> 15889 2015
#> 15890 2014
#> 15891 2004
#> 15892 2013
#> 15893 2003
#> 15894 2004
#> 15895 2016
#> 15896 2003
#> 15897 2005
#> 15898 2007
#> 15899 2006
#> 15900 2005
#> 15901 2006
#> 15902 2005
#> 15903 2004
#> 15904 2004
#> 15905 2009
#> 15906 2005
#> 15907 2014
#> 15908 2003
#> 15909 2016
#> 15910 2016
#> 15911 2017
#> 15912 1984
#> 15913 1985
#> 15914 1976
#> 15915 1976
#> 15916 1977
#> 15917 1994
#> 15918 1994
#> 15919 1996
#> 15920 1990
#> 15921 1995
#> 15922 1995
#> 15923 1996
#> 15924 1996
#> 15925 1995
#> 15926 1995
#> 15927 1994
#> 15928 1993
#> 15929 1995
#> 15930 1994
#> 15931 1995
#> 15932 1994
#> 15933 1995
#> 15934 1996
#> 15935 1995
#> 15936 1911
#> 15937 1996
#> 15938 1995
#> 15939 1985
#> 15940 1995
#> 15941 1990
#> 15942 2004
#> 15943 1991
#> 15944 2006
#> 15945 2001
#> 15946 1999
#> 15947 1988
#> 15948 1994
#> 15949 2006
#> 15950 1998
#> 15951 2001
#> 15952 2000
#> 15953 1988
#> 15954 2003
#> 15955 2003
#> 15956 1987
#> 15957 2005
#> 15958 1999
#> 15959 2001
#> 15960 1997
#> 15961 2005
#> 15962 1998
#> 15963 2009
#> 15964 1998
#> 15965 1993
#> 15966 1999
#> 15967 1987
#> 15968 1988
#> 15969 2008
#> 15970 1985
#> 15971 1983
#> 15972 1995
#> 15973 1983
#> 15974 1979
#> 15975 2002
#> 15976 1980
#> 15977 1988
#> 15978 2009
#> 15979 1977
#> 15980 1985
#> 15981 2009
#> 15982 1983
#> 15983 1984
#> 15984 1988
#> 15985 2000
#> 15986 2000
#> 15987 1985
#> 15988 1994
#> 15989 1988
#> 15990 1978
#> 15991 1998
#> 15992 1998
#> 15993 1976
#> 15994 1990
#> 15995 2009
#> 15996 2001
#> 15997 1993
#> 15998 1998
#> 15999 1991
#> 16000 1976
#> 16001 1999
#> 16002 1992
#> 16003 1994
#> 16004 1998
#> 16005 1976
#> 16006 2000
#> 16007 2004
#> 16008 2009
#> 16009 2006
#> 16010 2005
#> 16011 2006
#> 16012 2006
#> 16013 2005
#> 16014 2004
#> 16015 2007
#> 16016 2015
#> 16017 2004
#> 16018 2004
#> 16019 2008
#> 16020 2007
#> 16021 2007
#> 16022 2007
#> 16023 2006
#> 16024 2006
#> 16025 2009
#> 16026 2012
#> 16027 2013
#> 16028 2012
#> 16029 2004
#> 16030 2010
#> 16031 2005
#> 16032 2005
#> 16033 2005
#> 16034 2006
#> 16035 2013
#> 16036 2005
#> 16037 2015
#> 16038 2006
#> 16039 2007
#> 16040 2011
#> 16041 2005
#> 16042 2009
#> 16043 2008
#> 16044 2007
#> 16045 2014
#> 16046 2008
#> 16047 2008
#> 16048 2003
#> 16049 2007
#> 16050 2008
#> 16051 2003
#> 16052 2012
#> 16053 2010
#> 16054 2015
#> 16055 1993
#> 16056 1993
#> 16057 1992
#> 16058 1993
#> 16059 1988
#> 16060 1991
#> 16061 2002
#> 16062 1992
#> 16063 1998
#> 16064 1993
#> 16065 1991
#> 16066 1993
#> 16067 1991
#> 16068 1991
#> 16069 1994
#> 16070 1991
#> 16071 1990
#> 16072 1992
#> 16073 1994
#> 16074 1996
#> 16075 1992
#> 16076 1989
#> 16077 1994
#> 16078 1992
#> 16079 1991
#> 16080 1991
#> 16081 1989
#> 16082 1993
#> 16083 1995
#> 16084 1992
#> 16085 1994
#> 16086 1993
#> 16087 1991
#> 16088 1992
#> 16089 1988
#> 16090 1989
#> 16091 1992
#> 16092 1991
#> 16093 2001
#> 16094 1989
#> 16095 1993
#> 16096 1993
#> 16097 1990
#> 16098 1994
#> 16099 1991
#> 16100 1993
#> 16101 1992
#> 16102 1991
#> 16103 1995
#> 16104 1993
#> 16105 1993
#> 16106 1991
#> 16107 1992
#> 16108 1994
#> 16109 1991
#> 16110 1995
#> 16111 1992
#> 16112 1996
#> 16113 1991
#> 16114 1993
#> 16115 1991
#> 16116 1993
#> 16117 1994
#> 16118 1991
#> 16119 1996
#> 16120 1992
#> 16121 1993
#> 16122 1996
#> 16123 1993
#> 16124 1992
#> 16125 1992
#> 16126 1992
#> 16127 1991
#> 16128 1991
#> 16129 1993
#> 16130 1993
#> 16131 1995
#> 16132 1992
#> 16133 1995
#> 16134 1991
#> 16135 1994
#> 16136 1991
#> 16137 1993
#> 16138 1992
#> 16139 2000
#> 16140 2008
#> 16141 1994
#> 16142 1995
#> 16143 1995
#> 16144 1993
#> 16145 1994
#> 16146 1992
#> 16147 1993
#> 16148 1996
#> 16149 1991
#> 16150 2005
#> 16151 2009
#> 16152 2006
#> 16153 2014
#> 16154 2003
#> 16155 2010
#> 16156 2005
#> 16157 2009
#> 16158 2009
#> 16159 2008
#> 16160 2005
#> 16161 2013
#> 16162 2013
#> 16163 2013
#> 16164 2013
#> 16165 2012
#> 16166 2013
#> 16167 2016
#> 16168 2016
#> 16169 2013
#> 16170 2013
#> 16171 2013
#> 16172 2013
#> 16173 2013
#> 16174 2013
#> 16175 2016
#> 16176 2013
#> 16177 2014
#> 16178 2013
#> 16179 2014
#> 16180 2014
#> 16181 2013
#> 16182 2013
#> 16183 2013
#> 16184 2013
#> 16185 2013
#> 16186 2013
#> 16187 2013
#> 16188 2013
#> 16189 2013
#> 16190 2012
#> 16191 2013
#> 16192 2015
#> 16193 2013
#> 16194 2013
#> 16195 2013
#> 16196 2013
#> 16197 2013
#> 16198 2013
#> 16199 2013
#> 16200 2013
#> 16201 2015
#> 16202 2013
#> 16203 2013
#> 16204 2013
#> 16205 1993
#> 16206 1993
#> 16207 1991
#> 16208 1991
#> 16209 1990
#> 16210 1990
#> 16211 1990
#> 16212 1992
#> 16213 1991
#> 16214 1992
#> 16215 1991
#> 16216 1991
#> 16217 1990
#> 16218 1991
#> 16219 1991
#> 16220 1990
#> 16221 1992
#> 16222 1990
#> 16223 1992
#> 16224 1991
#> 16225 1992
#> 16226 1990
#> 16227 1991
#> 16228 1992
#> 16229 1991
#> 16230 1991
#> 16231 1991
#> 16232 1993
#> 16233 1995
#> 16234 1992
#> 16235 1990
#> 16236 1993
#> 16237 1991
#> 16238 1991
#> 16239 1990
#> 16240 1991
#> 16241 1992
#> 16242 1991
#> 16243 1996
#> 16244 1991
#> 16245 1991
#> 16246 1993
#> 16247 1990
#> 16248 1994
#> 16249 1990
#> 16250 1991
#> 16251 1992
#> 16252 1991
#> 16253 1997
#> 16254 1999
#> 16255 1996
#> 16256 1997
#> 16257 1996
#> 16258 1996
#> 16259 1996
#> 16260 1998
#> 16261 1999
#> 16262 2002
#> 16263 1996
#> 16264 1996
#> 16265 1996
#> 16266 1996
#> 16267 1996
#> 16268 1996
#> 16269 2000
#> 16270 1999
#> 16271 1997
#> 16272 1997
#> 16273 1998
#> 16274 1999
#> 16275 1997
#> 16276 1996
#> 16277 1997
#> 16278 1997
#> 16279 1996
#> 16280 1997
#> 16281 1998
#> 16282 1998
#> 16283 1997
#> 16284 2000
#> 16285 1999
#> 16286 1997
#> 16287 1997
#> 16288 1996
#> 16289 1997
#> 16290 2001
#> 16291 2000
#> 16292 2001
#> 16293 1998
#> 16294 1998
#> 16295 1999
#> 16296 1997
#> 16297 1998
#> 16298 1997
#> 16299 1997
#> 16300 2006
#> 16301 1997
#> 16302 1990
#> 16303 1992
#> 16304 1991
#> 16305 1997
#> 16306 1990
#> 16307 1997
#> 16308 1996
#> 16309 1993
#> 16310 2004
#> 16311 1991
#> 16312 1990
#> 16313 1991
#> 16314 1993
#> 16315 1996
#> 16316 1993
#> 16317 2015
#> 16318 1998
#> 16319 1993
#> 16320 1991
#> 16321 2007
#> 16322 1994
#> 16323 1992
#> 16324 1992
#> 16325 1991
#> 16326 1992
#> 16327 1996
#> 16328 1999
#> 16329 1991
#> 16330 1994
#> 16331 2004
#> 16332 1991
#> 16333 1991
#> 16334 1991
#> 16335 1993
#> 16336 1995
#> 16337 1992
#> 16338 2001
#> 16339 2004
#> 16340 1993
#> 16341 1996
#> 16342 1997
#> 16343 1991
#> 16344 1992
#> 16345 2001
#> 16346 2001
#> 16347 1993
#> 16348 1998
#> 16349 1993
#> 16350 1996
#> 16351 1994
#> 16352 2011
#> 16353 1993
#> 16354 2010
#> 16355 1991
#> 16356 2004
#> 16357 2009
#> 16358 2006
#> 16359 2007
#> 16360 2006
#> 16361 2006
#> 16362 2004
#> 16363 2004
#> 16364 2010
#> 16365 2010
#> 16366 2004
#> 16367 2004
#> 16368 2008
#> 16369 2007
#> 16370 2007
#> 16371 2007
#> 16372 2012
#> 16373 2009
#> 16374 2009
#> 16375 2004
#> 16376 2013
#> 16377 2012
#> 16378 2004
#> 16379 2006
#> 16380 2005
#> 16381 2005
#> 16382 2005
#> 16383 2006
#> 16384 2013
#> 16385 2005
#> 16386 2015
#> 16387 2006
#> 16388 2005
#> 16389 2011
#> 16390 2005
#> 16391 2009
#> 16392 2008
#> 16393 2006
#> 16394 2014
#> 16395 2009
#> 16396 2008
#> 16397 2005
#> 16398 2006
#> 16399 2015
#> 16400 2004
#> 16401 2012
#> 16402 2010
#> 16403 2015
#> 16404 1990
#> 16405 1990
#> 16406 1987
#> 16407 1992
#> 16408 1988
#> 16409 1987
#> 16410 1989
#> 16411 1989
#> 16412 1988
#> 16413 1987
#> 16414 1990
#> 16415 1992
#> 16416 1989
#> 16417 1987
#> 16418 1990
#> 16419 1987
#> 16420 1989
#> 16421 1992
#> 16422 1987
#> 16423 1991
#> 16424 1989
#> 16425 1994
#> 16426 1996
#> 16427 1996
#> 16428 1995
#> 16429 1995
#> 16430 1996
#> 16431 1996
#> 16432 1997
#> 16433 1997
#> 16434 1998
#> 16435 1998
#> 16436 1997
#> 16437 1995
#> 16438 1995
#> 16439 1995
#> 16440 1997
#> 16441 1996
#> 16442 1996
#> 16443 1995
#> 16444 1997
#> 16445 1996
#> 16446 1996
#> 16447 1998
#> 16448 1995
#> 16449 1996
#> 16450 1997
#> 16451 1997
#> 16452 1995
#> 16453 1997
#> 16454 1998
#> 16455 1997
#> 16456 1996
#> 16457 1997
#> 16458 1997
#> 16459 1997
#> 16460 1997
#> 16461 1995
#> 16462 1995
#> 16463 1996
#> 16464 2000
#> 16465 2001
#> 16466 1998
#> 16467 1997
#> 16468 1995
#> 16469 1996
#> 16470 1996
#> 16471 1996
#> 16472 1995
#> 16473 1998
#> 16474 1996
#> 16475 1981
#> 16476 1982
#> 16477 2001
#> 16478 1973
#> 16479 2002
#> 16480 2003
#> 16481 1982
#> 16482 2002
#> 16483 1978
#> 16484 1978
#> 16485 1979
#> 16486 1985
#> 16487 1986
#> 16488 1980
#> 16489 1976
#> 16490 1978
#> 16491 1983
#> 16492 1980
#> 16493 1973
#> 16494 1979
#> 16495 1981
#> 16496 1985
#> 16497 2001
#> 16498 1973
#> 16499 1978
#> 16500 2001
#> 16501 1973
#> 16502 1983
#> 16503 1979
#> 16504 2002
#> 16505 1982
#> 16506 1985
#> 16507 1973
#> 16508 2001
#> 16509 2001
#> 16510 2001
#> 16511 1983
#> 16512 2014
#> 16513 2013
#> 16514 2014
#> 16515 2013
#> 16516 2014
#> 16517 2012
#> 16518 2011
#> 16519 2013
#> 16520 2012
#> 16521 2013
#> 16522 2012
#> 16523 2012
#> 16524 2012
#> 16525 2011
#> 16526 2012
#> 16527 2012
#> 16528 2012
#> 16529 2012
#> 16530 2013
#> 16531 2012
#> 16532 2013
#> 16533 2012
#> 16534 2011
#> 16535 2013
#> 16536 2013
#> 16537 2013
#> 16538 2011
#> 16539 2011
#> 16540 2012
#> 16541 2013
#> 16542 2013
#> 16543 2015
#> 16544 2012
#> 16545 2011
#> 16546 2012
#> 16547 2015
#> 16548 2012
#> 16549 2013
#> 16550 2011
#> 16551 2013
#> 16552 2012
#> 16553 2012
#> 16554 2011
#> 16555 2013
#> 16556 2014
#> 16557 2012
#> 16558 2011
#> 16559 2012
#> 16560 2013
#> 16561 2001
#> 16562 2000
#> 16563 1975
#> 16564 2001
#> 16565 2000
#> 16566 2001
#> 16567 2001
#> 16568 2000
#> 16569 2001
#> 16570 2001
#> 16571 2000
#> 16572 2001
#> 16573 2000
#> 16574 2000
#> 16575 1974
#> 16576 1975
#> 16577 2000
#> 16578 1988
#> 16579 2000
#> 16580 1999
#> 16581 2001
#> 16582 2001
#> 16583 2000
#> 16584 2001
#> 16585 1988
#> 16586 1999
#> 16587 1999
#> 16588 1999
#> 16589 2001
#> 16590 2001
#> 16591 2001
#> 16592 2001
#> 16593 2000
#> 16594 2001
#> 16595 2001
#> 16596 1975
#> 16597 1973
#> 16598 2001
#> 16599 2000
#> 16600 1988
#> 16601 2000
#> 16602 2000
#> 16603 1999
#> 16604 2000
#> 16605 1994
#> 16606 2000
#> 16607 2000
#> 16608 2001
#> 16609 2001
#> 16610 2002
#> 16611 1999
#> 16612 2003
#> 16613 2011
#> 16614 2007
#> 16615 2007
#> 16616 2005
#> 16617 2009
#> 16618 1999
#> 16619 2006
#> 16620 2007
#> 16621 2010
#> 16622 2009
#> 16623 2011
#> 16624 2009
#> 16625 2008
#> 16626 2006
#> 16627 1996
#> 16628 2008
#> 16629 2011
#> 16630 2010
#> 16631 2012
#> 16632 2010
#> 16633 1998
#> 16634 2004
#> 16635 2000
#> 16636 1999
#> 16637 2008
#> 16638 1995
#> 16639 1999
#> 16640 1997
#> 16641 1997
#> 16642 1995
#> 16643 1997
#> 16644 2007
#> 16645 1997
#> 16646 1999
#> 16647 2006
#> 16648 1972
#> 16649 1986
#> 16650 1983
#> 16651 1979
#> 16652 1987
#> 16653 1987
#> 16654 1972
#> 16655 1974
#> 16656 1983
#> 16657 1987
#> 16658 1968
#> 16659 1979
#> 16660 1987
#> 16661 1988
#> 16662 1970
#> 16663 1968
#> 16664 1979
#> 16665 1986
#> 16666 1989
#> 16667 1989
#> 16668 1975
#> 16669 1968
#> 16670 1968
#> 16671 1986
#> 16672 1988
#> 16673 1973
#> 16674 1978
#> 16675 1983
#> 16676 1984
#> 16677 1983
#> 16678 1984
#> 16679 1991
#> 16680 2001
#> 16681 2003
#> 16682 2004
#> 16683 2006
#> 16684 2005
#> 16685 2002
#> 16686 2003
#> 16687 2001
#> 16688 2002
#> 16689 2003
#> 16690 2001
#> 16691 1987
#> 16692 1967
#> 16693 1997
#> 16694 1969
#> 16695 1989
#> 16696 1997
#> 16697 1967
#> 16698 1997
#> 16699 1995
#> 16700 1997
#> 16701 1994
#> 16702 1997
#> 16703 1999
#> 16704 1993
#> 16705 1994
#> 16706 2008
#> 16707 2006
#> 16708 1995
#> 16709 1998
#> 16710 1993
#> 16711 2011
#> 16712 2010
#> 16713 2015
#> 16714 2009
#> 16715 2013
#> 16716 1994
#> 16717 1992
#> 16718 1992
#> 16719 1992
#> 16720 1992
#> 16721 1994
#> 16722 1992
#> 16723 1992
#> 16724 1992
#> 16725 1992
#> 16726 1992
#> 16727 1996
#> 16728 1998
#> 16729 2000
#> 16730 1994
#> 16731 1992
#> 16732 1992
#> 16733 1992
#> 16734 1992
#> 16735 1992
#> 16736 1994
#> 16737 1992
#> 16738 1992
#> 16739 1996
#> 16740 1994
#> 16741 1992
#> 16742 1996
#> 16743 1992
#> 16744 1992
#> 16745 1994
#> 16746 1994
#> 16747 1994
#> 16748 1992
#> 16749 1994
#> 16750 1994
#> 16751 1992
#> 16752 1994
#> 16753 1996
#> 16754 1992
#> 16755 1992
#> 16756 1994
#> 16757 1996
#> 16758 1998
#> 16759 1996
#> 16760 1992
#> 16761 1998
#> 16762 1994
#> 16763 1992
#> 16764 1992
#> 16765 1994
#> 16766 1993
#> 16767 1993
#> 16768 1992
#> 16769 1989
#> 16770 1993
#> 16771 1994
#> 16772 1993
#> 16773 1988
#> 16774 1992
#> 16775 1993
#> 16776 1989
#> 16777 1993
#> 16778 1992
#> 16779 1993
#> 16780 1993
#> 16781 2002
#> 16782 1995
#> 16783 2006
#> 16784 2007
#> 16785 2008
#> 16786 2006
#> 16787 1997
#> 16788 1998
#> 16789 2005
#> 16790 2002
#> 16791 2017
#> 16792 2011
#> 16793 2017
#> 16794 2009
#> 16795 2010
#> 16796 2010
#> 16797 2013
#> 16798 2010
#> 16799 2013
#> 16800 2010
#> 16801 2011
#> 16802 2017
#> 16803 2011
#> 16804 2009
#> 16805 2015
#> 16806 2011
#> 16807 2002
#> 16808 2013
#> 16809 2014
#> 16810 2012
#> 16811 2010
#> 16812 2009
#> 16813 2011
#> 16814 2010
#> 16815 1949
#> 16816 1947
#> 16817 1951
#> 16818 1949
#> 16819 1949
#> 16820 1951
#> 16821 1949
#> 16822 1947
#> 16823 1948
#> 16824 1949
#> 16825 1951
#> 16826 1950
#> 16827 1950
#> 16828 1951
#> 16829 1952
#> 16830 1949
#> 16831 1949
#> 16832 1949
#> 16833 1951
#> 16834 1951
#> 16835 1947
#> 16836 1949
#> 16837 1950
#> 16838 1951
#> 16839 1950
#> 16840 1951
#> 16841 1949
#> 16842 1950
#> 16843 1946
#> 16844 1950
#> 16845 1941
#> 16846 1950
#> 16847 1951
#> 16848 1949
#> 16849 1880
#> 16850 1910
#> 16851 1899
#> 16852 1875
#> 16853 1885
#> 16854 1853
#> 16855 1887
#> 16856 1879
#> 16857 1913
#> 16858 1871
#> 16859 1905
#> 16860 1878
#> 16861 1901
#> 16862 1880
#> 16863 1898
#> 16864 1858
#> 16865 1910
#> 16866 1864
#> 16867 1873
#> 16868 1887
#> 16869 1884
#> 16870 1875
#> 16871 1907
#> 16872 1885
#> 16873 1907
#> 16874 1844
#> 16875 1907
#> 16876 1911
#> 16877 1885
#> 16878 1891
#> 16879 1885
#> 16880 1867
#> 16881 1907
#> 16882 1887
#> 16883 1907
#> 16884 1839
#> 16885 1878
#> 16886 1885
#> 16887 1883
#> 16888 1891
#> 16889 1917
#> 16890 1855
#> 16891 1876
#> 16892 1889
#> 16893 1913
#> 16894 1874
#> 16895 1915
#> 16896 1947
#> 16897 1941
#> 16898 1963
#> 16899 1941
#> 16900 1977
#> 16901 1997
#> 16902 1963
#> 16903 1959
#> 16904 1965
#> 16905 1955
#> 16906 1937
#> 16907 1989
#> 16908 1941
#> 16909 1943
#> 16910 1945
#> 16911 1953
#> 16912 1942
#> 16913 1944
#> 16914 1947
#> 16915 1949
#> 16916 1947
#> 16917 1945
#> 16918 1946
#> 16919 1943
#> 16920 1943
#> 16921 1943
#> 16922 1951
#> 16923 1947
#> 16924 1990
#> 16925 1998
#> 16926 1984
#> 16927 1991
#> 16928 1995
#> 16929 1999
#> 16930 1994
#> 16931 1994
#> 16932 1990
#> 16933 1982
#> 16934 1992
#> 16935 1996
#> 16936 1988
#> 16937 1994
#> 16938 1992
#> 16939 1996
#> 16940 1992
#> 16941 1998
#> 16942 1994
#> 16943 1988
#> 16944 1998
#> 16945 1992
#> 16946 1997
#> 16947 1996
#> 16948 1991
#> 16949 1992
#> 16950 1996
#> 16951 1994
#> 16952 1996
#> 16953 1999
#> 16954 1986
#> 16955 1996
#> 16956 1998
#> 16957 1989
#> 16958 1994
#> 16959 1996
#> 16960 1989
#> 16961 1993
#> 16962 1995
#> 16963 1996
#> 16964 1997
#> 16965 1995
#> 16966 1984
#> 16967 1991
#> 16968 1996
#> 16969 1985
#> 16970 1993
#> 16971 1985
#> 16972 1979
#> 16973 1999
#> 16974 1998
#> 16975 1989
#> 16976 1986
#> 16977 1985
#> 16978 1995
#> 16979 2001
#> 16980 1983
#> 16981 1985
#> 16982 1983
#> 16983 1998
#> 16984 1986
#> 16985 1995
#> 16986 1985
#> 16987 1991
#> 16988 1994
#> 16989 1994
#> 16990 1984
#> 16991 1998
#> 16992 1987
#> 16993 1994
#> 16994 1997
#> 16995 1998
#> 16996 1996
#> 16997 1984
#> 16998 1996
#> 16999 2000
#> 17000 1993
#> 17001 1996
#> 17002 1995
#> 17003 1995
#> 17004 1985
#> 17005 1992
#> 17006 1993
#> 17007 1991
#> 17008 1995
#> 17009 1989
#> 17010 1996
#> 17011 1997
#> 17012 1995
#> 17013 1984
#> 17014 1991
#> 17015 1996
#> 17016 1985
#> 17017 1993
#> 17018 1988
#> 17019 1985
#> 17020 1979
#> 17021 1999
#> 17022 1998
#> 17023 1989
#> 17024 1986
#> 17025 1985
#> 17026 1995
#> 17027 2001
#> 17028 1983
#> 17029 1985
#> 17030 1983
#> 17031 1998
#> 17032 1986
#> 17033 1995
#> 17034 1981
#> 17035 1985
#> 17036 1991
#> 17037 1994
#> 17038 1994
#> 17039 1984
#> 17040 1998
#> 17041 1987
#> 17042 1994
#> 17043 1991
#> 17044 1997
#> 17045 1998
#> 17046 1996
#> 17047 1984
#> 17048 1996
#> 17049 2000
#> 17050 1993
#> 17051 1996
#> 17052 1995
#> 17053 1995
#> 17054 1985
#> 17055 1992
#> 17056 1993
#> 17057 1991
#> 17058 1994
#> 17059 1994
#> 17060 1990
#> 17061 1982
#> 17062 1992
#> 17063 1996
#> 17064 1988
#> 17065 1994
#> 17066 1992
#> 17067 1996
#> 17068 1992
#> 17069 1998
#> 17070 1994
#> 17071 1992
#> 17072 1998
#> 17073 1992
#> 17074 1998
#> 17075 1996
#> 17076 1996
#> 17077 1991
#> 17078 1992
#> 17079 1996
#> 17080 1994
#> 17081 1996
#> 17082 1996
#> 17083 1986
#> 17084 1996
#> 17085 1998
#> 17086 1989
#> 17087 1994
#> 17088 1996
#> 17089 1989
#> 17090 1993
#> 17091 1995
#> 17092 2017
#> 17093 2015
#> 17094 2015
#> 17095 2015
#> 17096 2017
#> 17097 2016
#> 17098 2015
#> 17099 2017
#> 17100 2015
#> 17101 2015
#> 17102 2015
#> 17103 2015
#> 17104 2017
#> 17105 2003
#> 17106 2010
#> 17107 1983
#> 17108 1989
#> 17109 2003
#> 17110 1995
#> 17111 2005
#> 17112 2013
#> 17113 1984
#> 17114 1996
#> 17115 1992
#> 17116 1993
#> 17117 1983
#> 17118 1983
#> 17119 2012
#> 17120 1997
#> 17121 1999
#> 17122 1983
#> 17123 1997
#> 17124 1984
#> 17125 2008
#> 17126 2009
#> 17127 2012
#> 17128 1998
#> 17129 2000
#> 17130 2011
#> 17131 2002
#> 17132 1999
#> 17133 2003
#> 17134 1995
#> 17135 2001
#> 17136 1997
#> 17137 1999
#> 17138 2001
#> 17139 2001
#> 17140 2003
#> 17141 2003
#> 17142 2005
#> 17143 2005
#> 17144 2007
#> 17145 2003
#> 17146 2006
#> 17147 1998
#> 17148 2000
#> 17149 2000
#> 17150 2000
#> 17151 1978
#> 17152 1935
#> 17153 1998
#> 17154 1975
#> 17155 1971
#> 17156 1994
#> 17157 2007
#> 17158 2005
#> 17159 1976
#> 17160 1973
#> 17161 1995
#> 17162 1993
#> 17163 2000
#> 17164 1999
#> 17165 1995
#> 17166 1985
#> 17167 1980
#> 17168 1970
#> 17169 1967
#> 17170 1975
#> 17171 1970
#> 17172 1976
#> 17173 1981
#> 17174 1957
#> 17175 1966
#> 17176 1976
#> 17177 1996
#> 17178 1995
#> 17179 1989
#> 17180 1977
#> 17181 1978
#> 17182 1995
#> 17183 1971
#> 17184 1999
#> 17185 1999
#> 17186 2002
#> 17187 1972
#> 17188 1973
#> 17189 1977
#> 17190 1995
#> 17191 1996
#> 17192 1976
#> 17193 2010
#> 17194 2007
#> 17195 1977
#> 17196 1985
#> 17197 1976
#> 17198 1991
#> 17199 1980
#> 17200 1975
#> 17201 1977
#> 17202 1995
#> 17203 1999
#> 17204 2010
#> 17205 2008
#> 17206 1997
#> 17207 2008
#> 17208 1976
#> 17209 1975
#> 17210 1978
#> 17211 1999
#> 17212 2007
#> 17213 1994
#> 17214 2000
#> 17215 1975
#> 17216 2003
#> 17217 1992
#> 17218 2013
#> 17219 1981
#> 17220 2007
#> 17221 1983
#> 17222 1980
#> 17223 2002
#> 17224 1977
#> 17225 1977
#> 17226 2001
#> 17227 2010
#> 17228 1977
#> 17229 2001
#> 17230 2006
#> 17231 1976
#> 17232 2010
#> 17233 1981
#> 17234 2001
#> 17235 1999
#> 17236 2009
#> 17237 1981
#> 17238 2010
#> 17239 2010
#> 17240 1984
#> 17241 1973
#> 17242 1989
#> 17243 2007
#> 17244 1977
#> 17245 1973
#> 17246 1975
#> 17247 1973
#> 17248 1973
#> 17249 1975
#> 17250 1975
#> 17251 1974
#> 17252 1975
#> 17253 1975
#> 17254 1991
#> 17255 1994
#> 17256 1974
#> 17257 1973
#> 17258 1975
#> 17259 1969
#> 17260 1980
#> 17261 1974
#> 17262 1974
#> 17263 1992
#> 17264 1987
#> 17265 1979
#> 17266 1988
#> 17267 1982
#> 17268 1973
#> 17269 1974
#> 17270 1977
#> 17271 1974
#> 17272 1976
#> 17273 1981
#> 17274 1976
#> 17275 1987
#> 17276 1972
#> 17277 2011
#> 17278 2008
#> 17279 2011
#> 17280 2013
#> 17281 2006
#> 17282 2006
#> 17283 2007
#> 17284 2005
#> 17285 2014
#> 17286 1993
#> 17287 2011
#> 17288 2006
#> 17289 2004
#> 17290 2007
#> 17291 1995
#> 17292 2007
#> 17293 2006
#> 17294 1992
#> 17295 1991
#> 17296 2009
#> 17297 1991
#> 17298 2001
#> 17299 1989
#> 17300 1999
#> 17301 1998
#> 17302 1992
#> 17303 2003
#> 17304 1995
#> 17305 1991
#> 17306 1982
#> 17307 2005
#> 17308 1991
#> 17309 2009
#> 17310 2009
#> 17311 1989
#> 17312 2009
#> 17313 1998
#> 17314 1992
#> 17315 2002
#> 17316 1992
#> 17317 2009
#> 17318 1969
#> 17319 1990
#> 17320 1970
#> 17321 1983
#> 17322 1990
#> 17323 1966
#> 17324 1935
#> 17325 1977
#> 17326 1981
#> 17327 1991
#> 17328 1935
#> 17329 1935
#> 17330 1990
#> 17331 1959
#> 17332 1959
#> 17333 1989
#> 17334 1969
#> 17335 1992
#> 17336 1990
#> 17337 1990
#> 17338 1988
#> 17339 1968
#> 17340 1970
#> 17341 1966
#> 17342 1990
#> 17343 1991
#> 17344 1990
#> 17345 1990
#> 17346 1935
#> 17347 1935
#> 17348 1995
#> 17349 1967
#> 17350 1990
#> 17351 1945
#> 17352 1893
#> 17353 1885
#> 17354 1884
#> 17355 1963
#> 17356 1961
#> 17357 1885
#> 17358 1885
#> 17359 1884
#> 17360 1874
#> 17361 1959
#> 17362 1963
#> 17363 1865
#> 17364 1885
#> 17365 1885
#> 17366 1955
#> 17367 1885
#> 17368 1961
#> 17369 1884
#> 17370 1955
#> 17371 1874
#> 17372 1961
#> 17373 1884
#> 17374 1953
#> 17375 1887
#> 17376 1885
#> 17377 1963
#> 17378 1957
#> 17379 1890
#> 17380 1895
#> 17381 1961
#> 17382 2002
#> 17383 2009
#> 17384 2001
#> 17385 1979
#> 17386 2005
#> 17387 1973
#> 17388 2001
#> 17389 1992
#> 17390 1992
#> 17391 1995
#> 17392 1990
#> 17393 1990
#> 17394 1993
#> 17395 2003
#> 17396 1992
#> 17397 2005
#> 17398 1995
#> 17399 1995
#> 17400 2011
#> 17401 1991
#> 17402 1991
#> 17403 2005
#> 17404 1991
#> 17405 2003
#> 17406 1980
#> 17407 1991
#> 17408 2003
#> 17409 1990
#> 17410 2001
#> 17411 2004
#> 17412 1985
#> 17413 1919
#> 17414 1912
#> 17415 1893
#> 17416 1897
#> 17417 1891
#> 17418 1873
#> 17419 1919
#> 17420 1917
#> 17421 1919
#> 17422 1919
#> 17423 1869
#> 17424 1889
#> 17425 1898
#> 17426 1873
#> 17427 1906
#> 17428 1904
#> 17429 1913
#> 17430 1900
#> 17431 1863
#> 17432 1871
#> 17433 1883
#> 17434 1886
#> 17435 1897
#> 17436 1907
#> 17437 1901
#> 17438 1933
#> 17439 1895
#> 17440 1883
#> 17441 1921
#> 17442 1867
#> 17443 1869
#> 17444 1911
#> 17445 1867
#> 17446 1908
#> 17447 1913
#> 17448 1869
#> 17449 1869
#> 17450 1915
#> 17451 1890
#> 17452 1915
#> 17453 1919
#> 17454 1935
#> 17455 1917
#> 17456 1908
#> 17457 1901
#> 17458 1909
#> 17459 1871
#> 17460 1891
#> 17461 1990
#> 17462 1989
#> 17463 2013
#> 17464 2002
#> 17465 1990
#> 17466 1999
#> 17467 2001
#> 17468 2014
#> 17469 1999
#> 17470 2013
#> 17471 1995
#> 17472 1989
#> 17473 2000
#> 17474 2008
#> 17475 2001
#> 17476 1989
#> 17477 1992
#> 17478 1993
#> 17479 1990
#> 17480 1996
#> 17481 1996
#> 17482 1979
#> 17483 1989
#> 17484 1987
#> 17485 1997
#> 17486 1990
#> 17487 2010
#> 17488 1998
#> 17489 1978
#> 17490 1991
#> 17491 2009
#> 17492 1998
#> 17493 1992
#> 17494 1991
#> 17495 2010
#> 17496 1981
#> 17497 1995
#> 17498 1977
#> 17499 1978
#> 17500 1977
#> 17501 1975
#> 17502 1980
#> 17503 1984
#> 17504 1999
#> 17505 1982
#> 17506 1972
#> 17507 1975
#> 17508 1972
#> 17509 1985
#> 17510 1989
#> 17511 1976
#> 17512 1999
#> 17513 1983
#> 17514 1974
#> 17515 1979
#> 17516 1975
#> 17517 1997
#> 17518 1970
#> 17519 2000
#> 17520 1976
#> 17521 1964
#> 17522 1983
#> 17523 1973
#> 17524 1977
#> 17525 1967
#> 17526 1971
#> 17527 1981
#> 17528 1963
#> 17529 1985
#> 17530 1977
#> 17531 1973
#> 17532 1984
#> 17533 1977
#> 17534 1971
#> 17535 2001
#> 17536 1980
#> 17537 1980
#> 17538 1976
#> 17539 1989
#> 17540 1973
#> 17541 2004
#> 17542 1977
#> 17543 1975
#> 17544 1982
#> 17545 1981
#> 17546 1982
#> 17547 1975
#> 17548 2012
#> 17549 2013
#> 17550 1987
#> 17551 1973
#> 17552 2012
#> 17553 2011
#> 17554 2011
#> 17555 2011
#> 17556 2012
#> 17557 1974
#> 17558 1974
#> 17559 1974
#> 17560 2010
#> 17561 1973
#> 17562 1995
#> 17563 2011
#> 17564 1989
#> 17565 1974
#> 17566 1973
#> 17567 1990
#> 17568 2002
#> 17569 2002
#> 17570 2003
#> 17571 1999
#> 17572 2003
#> 17573 2002
#> 17574 2000
#> 17575 2002
#> 17576 2002
#> 17577 1999
#> 17578 2001
#> 17579 2002
#> 17580 2001
#> 17581 2001
#> 17582 2002
#> 17583 2002
#> 17584 2002
#> 17585 2002
#> 17586 2003
#> 17587 2002
#> 17588 2003
#> 17589 2002
#> 17590 2002
#> 17591 2004
#> 17592 2001
#> 17593 2002
#> 17594 2002
#> 17595 2002
#> 17596 2002
#> 17597 2002
#> 17598 2002
#> 17599 2001
#> 17600 2002
#> 17601 2002
#> 17602 2003
#> 17603 1920
#> 17604 1915
#> 17605 1912
#> 17606 1939
#> 17607 1911
#> 17608 1915
#> 17609 1914
#> 17610 1918
#> 17611 1935
#> 17612 1921
#> 17613 1915
#> 17614 1918
#> 17615 1911
#> 17616 1915
#> 17617 1914
#> 17618 1912
#> 17619 1916
#> 17620 1915
#> 17621 1916
#> 17622 1914
#> 17623 1912
#> 17624 1912
#> 17625 1913
#> 17626 1948
#> 17627 1925
#> 17628 1915
#> 17629 1914
#> 17630 1911
#> 17631 1912
#> 17632 1911
#> 17633 1917
#> 17634 1914
#> 17635 1929
#> 17636 1919
#> 17637 1912
#> 17638 1915
#> 17639 1914
#> 17640 1916
#> 17641 1912
#> 17642 1935
#> 17643 1917
#> 17644 1919
#> 17645 1913
#> 17646 1917
#> 17647 1915
#> 17648 1919
#> 17649 1911
#> 17650 1913
#> 17651 1911
#> 17652 1915
#> 17653 2007
#> 17654 2003
#> 17655 2004
#> 17656 2007
#> 17657 2008
#> 17658 2009
#> 17659 2007
#> 17660 2010
#> 17661 2008
#> 17662 2005
#> 17663 2010
#> 17664 2008
#> 17665 2006
#> 17666 2009
#> 17667 2007
#> 17668 2006
#> 17669 2004
#> 17670 2006
#> 17671 2007
#> 17672 2009
#> 17673 2009
#> 17674 2005
#> 17675 2003
#> 17676 2006
#> 17677 2010
#> 17678 2006
#> 17679 1993
#> 17680 1995
#> 17681 1996
#> 17682 1996
#> 17683 1995
#> 17684 1996
#> 17685 1998
#> 17686 1996
#> 17687 1996
#> 17688 1990
#> 17689 1993
#> 17690 1994
#> 17691 1997
#> 17692 1995
#> 17693 1995
#> 17694 1997
#> 17695 1997
#> 17696 1997
#> 17697 1994
#> 17698 1995
#> 17699 1997
#> 17700 1995
#> 17701 1997
#> 17702 1996
#> 17703 1997
#> 17704 1983
#> 17705 1990
#> 17706 1994
#> 17707 1994
#> 17708 1993
#> 17709 1998
#> 17710 1996
#> 17711 1995
#> 17712 1994
#> 17713 1997
#> 17714 1993
#> 17715 1992
#> 17716 1994
#> 17717 1996
#> 17718 1995
#> 17719 1997
#> 17720 1994
#> 17721 1996
#> 17722 1991
#> 17723 1996
#> 17724 1995
#> 17725 1998
#> 17726 1998
#> 17727 1993
#> 17728 1997
#> 17729 1992
#> 17730 1997
#> 17731 1994
#> 17732 1994
#> 17733 1994
#> 17734 1997
#> 17735 1998
#> 17736 1996
#> 17737 1997
#> 17738 1985
#> 17739 1993
#> 17740 1994
#> 17741 1997
#> 17742 1996
#> 17743 1995
#> 17744 1997
#> 17745 1998
#> 17746 1998
#> 17747 1995
#> 17748 1995
#> 17749 1997
#> 17750 1995
#> 17751 1997
#> 17752 1997
#> 17753 1998
#> 17754 1983
#> 17755 1988
#> 17756 1994
#> 17757 1995
#> 17758 1993
#> 17759 1998
#> 17760 1997
#> 17761 1996
#> 17762 1994
#> 17763 1998
#> 17764 1993
#> 17765 1993
#> 17766 1994
#> 17767 1997
#> 17768 1984
#> 17769 1997
#> 17770 1994
#> 17771 1997
#> 17772 1991
#> 17773 1996
#> 17774 1996
#> 17775 1998
#> 17776 1998
#> 17777 1993
#> 17778 1998
#> 17779 1992
#> 17780 1991
#> 17781 1994
#> 17782 1994
#> 17783 1994
#> 17784 1984
#> 17785 1998
#> 17786 1996
#> 17787 1997
#> 17788 1985
#> 17789 1993
#> 17790 1987
#> 17791 1998
#> 17792 1996
#> 17793 1996
#> 17794 1997
#> 17795 1992
#> 17796 1998
#> 17797 1995
#> 17798 1995
#> 17799 1997
#> 17800 1996
#> 17801 1998
#> 17802 1997
#> 17803 1998
#> 17804 1984
#> 17805 1989
#> 17806 1994
#> 17807 1995
#> 17808 1993
#> 17809 1995
#> 17810 1997
#> 17811 1996
#> 17812 1994
#> 17813 1998
#> 17814 1993
#> 17815 1993
#> 17816 1984
#> 17817 1997
#> 17818 1984
#> 17819 1998
#> 17820 1991
#> 17821 1996
#> 17822 1990
#> 17823 1996
#> 17824 1991
#> 17825 1998
#> 17826 1999
#> 17827 1994
#> 17828 1994
#> 17829 1993
#> 17830 1992
#> 17831 1995
#> 17832 1995
#> 17833 1994
#> 17834 1984
#> 17835 1998
The first column (statenam) gives the state that adopted the policy in year adopt_year. Let’s take a closer look at the data.
print(policies_metadata)
#> policy
#> 1 aboldeapen
#> 2 aborparc
#> 3 aborparn
#> 4 aborpreroe
#> 5 abortion_consent_1973_199
#> 6 abortion_consent_1992_201
#> 7 abortion_medicai
#> 8 abortion_partial_birt
#> 9 abortion_reform_prero
#> 10 absvot
#> 11 acctlic
#> 12 adawork
#> 13 adc
#> 14 adcom
#> 15 admittpriv
#> 16 adoption act (1953)(1969)
#> 17 adoption act (1994)
#> 18 adult guardianship and protective proceedings jurisdiction act
#> 19 advertban
#> 20 afdc_u
#> 21 aging
#> 22 agreement on detainers
#> 23 agreement on qualifications of educational personnel
#> 24 aidperm
#> 25 airpol
#> 26 alcbevcon
#> 27 alcoholism and intoxication treatment
#> 28 alctreat
#> 29 allpass_seatbelt
#> 30 amber
#> 31 anatomical gift (1968)
#> 32 anatomical gift act (1987)
#> 33 anatomical gift act (2006)
#> 34 anim_cruel_felonfirs
#> 35 animcruel
#> 36 anti-discrimination
#> 37 antiage
#> 38 antibully
#> 39 antiinj
#> 40 antimis
#> 41 antishack
#> 42 antistalk
#> 43 anyactnot
#> 44 anyid2
#> 45 anyphotoid2
#> 46 apology
#> 47 appointment of commissioners
#> 48 arbitration act (1956)
#> 49 arbitration act (2000)
#> 50 archlic
#> 51 article 1 of the uniform business organizations code (uboc hub) (2011) (last amended 2013)
#> 52 arts
#> 53 assignment of rents act
#> 54 athlete agents act
#> 55 athlete agents act (2015)
#> 56 attendance of out of state witnesses
#> 57 audio-visual deposition
#> 58 ausbalsys
#> 59 autism
#> 60 autoreg
#> 61 autosaf
#> 62 banfaninc
#> 63 bangag
#> 64 barbanstate
#> 65 beaulic
#> 66 bikehelmet
#> 67 bldstds_yearadopted
#> 68 blind
#> 69 boehmke_snrpres
#> 70 boh
#> 71 bootcamp
#> 72 bottle
#> 73 bradycamp
#> 74 breastdensity
#> 75 breastfeed
#> 76 broadcom
#> 77 budgstd
#> 78 buildingcode
#> 79 bus taxation proration and reciprocity agreement
#> 80 business organizations code
#> 81 candlim
#> 82 ccb
#> 83 ccreceipt
#> 84 cctheft
#> 85 cent
#> 86 certificate of title for vessels act
#> 87 certification of questions of law (1967)
#> 88 certification of questions of law (1995)
#> 89 chartersch
#> 90 child abduction prevention
#> 91 child custody jurisdiction and enforcement act
#> 92 child pornography
#> 93 child witness testimony by alternative methods act
#> 94 childabuse
#> 95 childlab
#> 96 childrest
#> 97 chirolic
#> 98 cigtax
#> 99 citzon
#> 100 civil defense and disaster compact
#> 101 civinjaut
#> 102 class actions
#> 103 clinic_access
#> 104 cogrowman
#> 105 colcanscr
#> 106 collaborative law act
#> 107 collateral consequences of conviction act
#> 108 collegesavings
#> 109 comage
#> 110 commercial real estate receivership act
#> 111 common interest owners bill of rights
#> 112 common interest ownership act (1982)
#> 113 common interest ownership act (1994)
#> 114 common interest ownership act (2008)
#> 115 compact for a balanced budget
#> 116 compact for education
#> 117 compact for pension portability for educators
#> 118 compact on adoption and medical assistance
#> 119 compact on mental health
#> 120 compact on placement of children
#> 121 compact on taxation of motor fuels consumed by interstate buses
#> 122 compcrime
#> 123 compsch
#> 124 computer information transactions act
#> 125 comsrv12
#> 126 comsrvdy
#> 127 conacchwy
#> 128 concealed carry
#> 129 condominium act
#> 130 conflicts of laws - limitations act
#> 131 conservation easement act
#> 132 consgsoil
#> 133 const_protect
#> 134 consumer credit code
#> 135 consumer leases act
#> 136 consumer sales practices
#> 137 continsurance
#> 138 contr_eq
#> 139 controlled substances act
#> 140 corporateeff_yearadopted
#> 141 corporaterenew_yearadopted
#> 142 corporlimits
#> 143 correct
#> 144 correction or clarification of defamation
#> 145 cpban
#> 146 credfreez
#> 147 crimeviccomp
#> 148 crtadm
#> 149 custodial trust act
#> 150 cyberstalk
#> 151 damagereduce
#> 152 damremov
#> 153 deaf
#> 154 deathpen
#> 155 debt-management services (2011)
#> 156 debt-management services act, 2005
#> 157 deceptive trade practices act (1964)
#> 158 declaratory judgments act
#> 159 denlic
#> 160 deployed parents custody and visitation act
#> 161 determination of death act
#> 162 dev_s1
#> 163 dev_s10
#> 164 dev_s2
#> 165 dev_s3
#> 166 dev_s4
#> 167 dev_s5
#> 168 dev_s6
#> 169 dev_s7
#> 170 dev_s8
#> 171 dev_s9
#> 172 dirdem
#> 173 dirprim
#> 174 disclaimer of property interests act
#> 175 disclaimer of property interests act (1973)
#> 176 discovery of electronically stored information, rules relating to
#> 177 discrenot
#> 178 disposition of community property rights at death act (1971)
#> 179 division of income for tax purposes
#> 180 dnafelon
#> 181 dnaforexon
#> 182 dormant mineral interests act, model
#> 183 driver license compact
#> 184 drugs_boehmke_statrapag
#> 185 drugs_boehmke_zeroto
#> 186 drugs_marijuana_decriminalizati
#> 187 drugs_medical_marijuan
#> 188 drugs_smoking_ban_restaurant
#> 189 drugs_smoking_ban_workplace
#> 190 drugtest
#> 191 dual_enroll
#> 192 dui
#> 193 dui08
#> 194 durable power of attorney
#> 195 duties to persons with medical id devices
#> 196 dwi reform
#> 197 earlvot
#> 198 earned_income_taxcredi
#> 199 econdev
#> 200 education
#> 201 education_corporal_punishment_b
#> 202 education_teacher_cert_elementa
#> 203 education_teacher_cert_h
#> 204 edutv
#> 205 elecdayreg
#> 206 elecdereg
#> 207 electronic legal material act
#> 208 electronic recordation of custodial interrogations
#> 209 electronic transactions act
#> 210 emcont_avail
#> 211 emergency management assistance compact
#> 212 emergency medical services personnel licensure interstate compact
#> 213 emergency volunteer health practitioners
#> 214 eminent domain code
#> 215 eminentscholar
#> 216 enforcement of foreign judgments act
#> 217 englic
#> 218 engonly
#> 219 enterzone
#> 220 entity transactions act, model (2007) (last amended 2013)
#> 221 environ
#> 222 environment_air_pollution_contr
#> 223 environment_bottlebil
#> 224 environment_ca_car_emissions_st
#> 225 environment_electronic_wast
#> 226 environment_ghg_ca
#> 227 environment_publicbenefit_fund
#> 228 environment_state_nepa
#> 229 environmental covenants act
#> 230 eqrightam
#> 231 equalpay
#> 232 estate tax apportionment and probate code 3-916
#> 233 estate_ta
#> 234 ewaste
#> 235 exemptions act, model
#> 236 expsta
#> 237 extradition and rendition act, model
#> 238 facsimile signatures of public officials
#> 239 fairemp
#> 240 fairtrade
#> 241 faithful presidential electors act
#> 242 famcap
#> 243 famlim
#> 244 federal lien registration act
#> 245 fetaldispos
#> 246 fetalheart
#> 247 fetalhomic
#> 248 fetalpain
#> 249 fhpriv
#> 250 fiduciary access to digital assets act (2014)
#> 251 fiduciary access to digital assets act, revised (2015)
#> 252 filmtaxcredit
#> 253 fish
#> 254 foca
#> 255 foia
#> 256 foreign money claims act
#> 257 foreign money judgments recognition act
#> 258 foreign-country money judgments recognition act
#> 259 forest
#> 260 fraudulent transfer act (1984)
#> 261 frontpass_seatbelt
#> 262 funds_avail
#> 263 fundslife
#> 264 fundslifehea
#> 265 furlough
#> 266 furprog
#> 267 gagrule
#> 268 gambling_casino
#> 269 gambling_lottery_adoptio
#> 270 gap
#> 271 gastax
#> 272 gay_employment_discrim_genderi
#> 273 gayhate
#> 274 gaymarban
#> 275 gayrights_ban_sodom
#> 276 gayrights_civilunion
#> 277 gayrights_hatecrime
#> 278 gayrights_marriag
#> 279 gdl
#> 280 gender_disc_laws_post196
#> 281 genderrights_era_ratificatio
#> 282 genderrights_gender_discriminat
#> 283 genderrights_gender_equal_pa
#> 284 genderrights_nofault_divorc
#> 285 genderrights_state_era
#> 286 giexorder
#> 287 gilaw
#> 288 goodsam911
#> 289 governance_reform
#> 290 guardianship and protective proceedings act (1997)
#> 291 guncontrl_bc_private_handgu
#> 292 guncontrl_bc_private_rifl
#> 293 guncontrl_waitperiod_handgu
#> 294 guncontrol_assaultweapon_ba
#> 295 guncontrol_licenses_dealer
#> 296 guncontrol_opencarr
#> 297 guncontrol_satnightspecial_ba
#> 298 harass
#> 299 hate crimes
#> 300 hatecrime
#> 301 hazing
#> 302 health
#> 303 health care compact
#> 304 health-care decisions act
#> 305 health-care information act
#> 306 helmetlaw_17
#> 307 helmetlaw_learn
#> 308 helmetlaw_pass
#> 309 higissue
#> 310 higrenew
#> 311 hiport
#> 312 hiprecon
#> 313 hmomod1
#> 314 hmomod2
#> 315 hostliability
#> 316 hsexit
#> 317 humantraffic
#> 318 humrel
#> 319 hwyagen
#> 320 idas
#> 321 ide
#> 322 idtheft
#> 323 imitcontsub
#> 324 immigration_english_languag
#> 325 immigration_instate_tuition_ill
#> 326 inctax
#> 327 indgaming
#> 328 indlimit
#> 329 indorgris
#> 330 infanthear
#> 331 infconsent
#> 332 infertility
#> 333 information practices code
#> 334 initiative
#> 335 ins_stateexch
#> 336 insandefref
#> 337 insanity
#> 338 insanity defense and post-trial disposition
#> 339 insprivate
#> 340 inspublic
#> 341 inst_tu_und
#> 342 inst_tu_vet
#> 343 insurable interest amendment to the uniform trust code
#> 344 inswaiver
#> 345 intbar
#> 346 interpleader compact
#> 347 interreg
#> 348 interstate compact for adult offender supervision
#> 349 interstate compact for juveniles
#> 350 interstate compact for mutual military aid in an emergency
#> 351 interstate compact on adoption and medical assistance
#> 352 interstate compact on agricultural grain marketing
#> 353 interstate compact on educational opportunity for military children
#> 354 interstate compact on industrialized/modular buildings
#> 355 interstate compact on licensure of participants in horse racing with pari-mutuel wagering
#> 356 interstate compact on mentally disordered offenders
#> 357 interstate compact on the placement of children
#> 358 interstate compact to conserve oil and gas
#> 359 interstate corrections compact
#> 360 interstate depositions and discovery act
#> 361 interstate earthquake emergency compact
#> 362 interstate enforcement of domestic violence protection orders act
#> 363 interstate family support act (1992)(1996)
#> 364 interstate family support act (2001)
#> 365 interstate family support act amendments (2008)
#> 366 interstate forest fire suppression compact
#> 367 interstate high speed rail network compact
#> 368 interstate insurance product regulation compact
#> 369 interstate insurance receivership compact
#> 370 interstate library compact
#> 371 interstate medical licensure compact
#> 372 interstate mining compact
#> 373 interstate mutual aid compact
#> 374 interstate rail passenger network compact
#> 375 intestacy, wills, and donative transfers act
#> 376 jucoen
#> 377 juvct
#> 378 juvisup
#> 379 keg_reg
#> 380 kinship
#> 381 labor_age_discriminatio
#> 382 labor_collective_bargaining_sta
#> 383 labor_collective_bargaining_tea
#> 384 labor_minimumwage_me
#> 385 labor_minwage_abovefe
#> 386 labor_prevailing_wage_la
#> 387 labor_relations_tafthar
#> 388 labor_relations_wagne
#> 389 labor_right_to_wor
#> 390 labor_state_ada_accomodat
#> 391 labor_state_ada_antidiscri
#> 392 labor_state_disability_insuranc
#> 393 labor_state_retirement_syste
#> 394 laborag
#> 395 land sales practices
#> 396 law on notarial acts, revised
#> 397 legpre
#> 398 legresea
#> 399 lemon
#> 400 libext
#> 401 license_plates
#> 402 licenseplate
#> 403 licenses_accountant
#> 404 limited cooperative association act (2007) (last amended 2013)
#> 405 limited liability company (1995)(1996)
#> 406 limited liability company (2006) (last amended 2013)
#> 407 limited partnership (1976)
#> 408 limited partnership act (1916)
#> 409 limited partnership act (2001) (last amended 2013)
#> 410 lott
#> 411 mailreg
#> 412 manaccess
#> 413 management of institutional funds act
#> 414 management of public employee retirement systems act
#> 415 manclin
#> 416 mandatory disposition of detainers
#> 417 mandnot
#> 418 marital property act
#> 419 marriage and divorce act, model
#> 420 medianot
#> 421 mediation act
#> 422 medicaid_stateadoptio
#> 423 medicalrest
#> 424 medmar
#> 425 meganslaw
#> 426 mendeapen
#> 427 merit
#> 428 meritaid
#> 429 meritstateadmin
#> 430 methpre
#> 431 miglab
#> 432 military and overseas voters act
#> 433 minfine
#> 434 minor student capacity to borrow act (1969)
#> 435 minwage
#> 436 missplan
#> 437 mlda21
#> 438 mntlhlth
#> 439 model mandatory disposition of detainers act
#> 440 model real estate time-share act
#> 441 model state administrative procedure act (1981)
#> 442 money services act
#> 443 mothersaid
#> 444 mothpen
#> 445 motorvoter
#> 446 mprisdm
#> 447 msas
#> 448 multiple-person accounts
#> 449 multistate highway transportation agreement
#> 450 multistate lottery agreement
#> 451 multistate reciprocity agreement
#> 452 multistate tax compact
#> 453 naticurric
#> 454 national crime prevention and privacy compact
#> 455 national guard mutual assistance compact
#> 456 national guard mutual assistance counter-drug activities compact
#> 457 national popular vote interstate compact
#> 458 natreso
#> 459 neartotalban
#> 460 neighnot
#> 461 netmeter
#> 462 netmeter_yearadopted
#> 463 newbornheartscreen
#> 464 nonprobate transfers on death act
#> 465 nonresident violator compact
#> 466 norealid
#> 467 notarial acts (1982)
#> 468 nrmlsch
#> 469 nrslic
#> 470 nurse licensure compact
#> 471 offwmh
#> 472 oldagea
#> 473 opencont
#> 474 optinnot
#> 475 pain management
#> 476 paperterror
#> 477 parconsent
#> 478 parcounsel
#> 479 parentage act
#> 480 parentage act (1973)
#> 481 parksys
#> 482 parnotific
#> 483 parolesup
#> 484 partition of heirs property act
#> 485 partnership act (1914)
#> 486 partnership act (1997) (last amended 2013)
#> 487 pbf
#> 488 pdrugmon
#> 489 perforfun
#> 490 periodic payment of judgments act
#> 491 personaltax_yearadopted
#> 492 personaltaxeff_yearadopted
#> 493 pestcomp
#> 494 pharmlic
#> 495 physical therapy licensure compact
#> 496 physreq
#> 497 planned community act
#> 498 pldvpag
#> 499 post-conviction procedure act, model
#> 500 postdna
#> 501 postvia
#> 502 power of attorney
#> 503 powers of appointment
#> 504 pre20wk
#> 505 preconvictdays
#> 506 premarital agreement act
#> 507 premarital and marital agreements act
#> 508 prepaid
#> 509 prepaytut
#> 510 prescdrug
#> 511 prevention of and remedies for human trafficking
#> 512 primaryenforce_all
#> 513 primaryenforce_minor
#> 514 primseat
#> 515 principal and income act (1962)
#> 516 principal and income act (2000)
#> 517 principal and income amendments (2008)
#> 518 prisondayswag
#> 519 prkagcit
#> 520 prob
#> 521 probate code
#> 522 probate code amendments (2008)
#> 523 protection of charitable assets act, model
#> 524 prudent investor act
#> 525 prudent management of institutional funds act
#> 526 pubaccess
#> 527 pubbenefits_yearadopted
#> 528 pubbrefeed
#> 529 pubcamfun
#> 530 pubemployees
#> 531 pubfacilities
#> 532 pubhouen
#> 533 r_d_tax_credit
#> 534 race_boehmke_fhpu
#> 535 race_boehmke_fhur
#> 536 race_disc_publicaccom_agenc
#> 537 race_fair_employmen
#> 538 race_fair_housing_law
#> 539 race_fair_housing_owne
#> 540 racialpro
#> 541 rackact
#> 542 rapeshield
#> 543 real estate cooperative
#> 544 real property electronic recording act
#> 545 real property transfer on death act
#> 546 realest
#> 547 reciprocal enforcement of support act (1950)
#> 548 recipsup
#> 549 recognition and enforcement of canadian domestic-violence protection orders
#> 550 recognition of substitute decision-making documents
#> 551 refuseserv
#> 552 registered agents act, model (2006) (last amended 2011)
#> 553 regreq
#> 554 regulation_bicycle_helmet
#> 555 regulation_boehmke_cogrowma
#> 556 regulation_boehmke_grandvis
#> 557 regulation_boehmke_livingwil
#> 558 regulation_boehmke_shiel
#> 559 regulation_forced_sterilization
#> 560 regulation_hate_crime
#> 561 regulation_homerul
#> 562 regulation_housing_directstatea
#> 563 regulation_mandatory_car_insura
#> 564 regulation_mandatory_seatbelt
#> 565 regulation_motorcycle_helmet
#> 566 regulation_pain_suffering_limit
#> 567 regulation_physician_suicid
#> 568 regulation_rent_contro
#> 569 regulation_rfr
#> 570 regulation_sedition_law
#> 571 regulation_utility_jurisdictio
#> 572 regulations_lemonla
#> 573 regulations_state_debt_limitati
#> 574 renewenergy
#> 575 repsodomy
#> 576 requireanyid2
#> 577 residential landlord and tenant act 1972
#> 578 residential mortgage satisfaction act
#> 579 restaurantbanstate
#> 580 restruct
#> 581 retail theft
#> 582 retainag
#> 583 retstate
#> 584 revenue
#> 585 revised uniform unclaimed property act
#> 586 rico
#> 587 right2work
#> 588 rightdie
#> 589 rights of the terminally ill act (1985)
#> 590 roadshwy
#> 591 roeovertur
#> 592 rps_yearadopted
#> 593 rules of evidence (1974)
#> 594 sals
#> 595 salvia
#> 596 savingplan
#> 597 schoolchoi
#> 598 sdce
#> 599 securities act
#> 600 securities act (1956)
#> 601 securities act (1988)
#> 602 segoss
#> 603 sexreginfo
#> 604 sexselect
#> 605 shield
#> 606 shoplift
#> 607 simultaneous death act
#> 608 simultaneous death act (1940)
#> 609 slains
#> 610 smokeban
#> 611 soexorder
#> 612 soil
#> 613 solaw
#> 614 sonofsam
#> 615 sonsam
#> 616 sprinsch
#> 617 st_wd_tran
#> 618 stalkdef
#> 619 stalking
#> 620 standground
#> 621 stateptr
#> 622 statrape
#> 623 status of children of assisted conception act
#> 624 status of convicted persons act (1964)
#> 625 statutory form power of attorney act
#> 626 statutory rule against perpetuities
#> 627 statutory trust entity act
#> 628 statutory will act (1984)
#> 629 stplnb
#> 630 sundayban
#> 631 supp_research
#> 632 surplus lines insurance multi-state compliance compact
#> 633 syringe
#> 634 taxcom
#> 635 teacelm
#> 636 teacsec
#> 637 telgrareg
#> 638 tels
#> 639 termlim
#> 640 terrorfund
#> 641 testamentary additions to trusts act
#> 642 threestrikes
#> 643 timelim
#> 644 tod security registration act
#> 645 trade secrets act
#> 646 transboundary pollution reciprocal access act
#> 647 transfers to minors act
#> 648 transport
#> 649 trap
#> 650 trap_hosp
#> 651 trap_lic
#> 652 trust code
#> 653 trust decanting
#> 654 trustees' powers act (1964)
#> 655 truthsent
#> 656 tu_decent
#> 657 u_record_sys
#> 658 ucc article 1, general provisions (2001)
#> 659 ucc article 2a, leases (1987) (1990)
#> 660 ucc article 3, negotiable instruments (1990)
#> 661 ucc article 3, negotiable instruments and article 4, bank deposits (2002)
#> 662 ucc article 4a amendments (2012)
#> 663 ucc article 4a, funds transfers (1989)
#> 664 ucc article 5, letters of credit (1995)
#> 665 ucc article 6 (repeal)
#> 666 ucc article 6 (revise)
#> 667 ucc article 6, bulk sales (1989)
#> 668 ucc article 7, documents of title (2003)
#> 669 ucc article 8, investment securities
#> 670 ucc article 8, investment securities (1994)
#> 671 ucc article 9 amendments
#> 672 ucc article 9 amendments (2010)
#> 673 ucc article 9, secured transactions (1998)
#> 674 ultrasound
#> 675 unclaimed property act
#> 676 unclaimed property act (1952)(1981)
#> 677 undoctuit
#> 678 uniform unclaimed property act
#> 679 unincorporated nonprofit association act (1992)(1996)
#> 680 unincorporated nonprofit association act (2008) (last amended 2011)
#> 681 unionlimits
#> 682 universal health care
#> 683 universalprek
#> 684 unsworn declarations act
#> 685 unsworn foreign declarations act (2008)
#> 686 urbrenen
#> 687 utreg
#> 688 vendor and purchaser risk act (1935)
#> 689 veterans guardianship act (1942)
#> 690 viatesting
#> 691 vicrtsamd
#> 692 victim notification
#> 693 victimnotif
#> 694 victimrights
#> 695 victims of crime act, model
#> 696 voidable transactions act amendments (2014) - formerly fraudulent transfer act
#> 697 vouchers
#> 698 w_abortion_parental_notice_1983
#> 699 w_animal_cruelty_felon
#> 700 w_ec_access_expan
#> 701 w_educ_biblepubli
#> 702 w_educ_bibleschoo
#> 703 w_educ_mom_silentmandator
#> 704 w_educ_mom_silentpermis
#> 705 w_envir_solar_taxcredit_loca
#> 706 w_envir_solar_taxcredit_stat
#> 707 w_environment_endangered_specie
#> 708 w_gayright_publi_accom_genderi
#> 709 w_gayrights_employment_discrimi
#> 710 w_gayrights_public_accomodation
#> 711 w_guncontrl_bc_dealer_handgu
#> 712 w_guncontrl_bc_dealer_rifl
#> 713 w_guncontrol_registration_requi
#> 714 w_guncontrol_waitingperio
#> 715 w_race_disc_public_accommodatio
#> 716 waiting
#> 717 welfagy
#> 718 wildlife violator compact
#> 719 wills recognition act
#> 720 witnessint
#> 721 wk20via
#> 722 wmd
#> 723 workcom
#> 724 worksitebanstate
#> 725 writreq
#> 726 zerotol
#> 727 zerotoleranceapis
#> 728 zerotolerancelaw
#> source first_year last_year adopt_count
#> 1 Boehmke-Skinner 1846 1969 15
#> 2 Boehmke-Skinner 1981 1999 15
#> 3 Boehmke-Skinner 1981 2000 17
#> 4 Boehmke-Skinner 1966 1972 18
#> 5 Caughey-Warshaw 1973 1981 4
#> 6 Caughey-Warshaw 1992 2011 30
#> 7 Caughey-Warshaw 1981 2002 20
#> 8 Caughey-Warshaw 1996 1999 12
#> 9 Caughey-Warshaw 1967 1972 17
#> 10 Boehmke-Skinner 1960 2003 26
#> 11 Walker 1896 1951 48
#> 12 Other 1950 1967 28
#> 13 Walker 1936 1955 48
#> 14 Walker 1925 1939 41
#> 15 Kreitzer 2011 2013 13
#> 16 Uniform Law 1971 1977 5
#> 17 Uniform Law 1996 1996 1
#> 18 Uniform Law 2008 2016 44
#> 19 Sheprd 1989 2001 16
#> 20 Caughey-Warshaw 1961 1985 31
#> 21 Boehmke-Skinner 1974 1991 19
#> 22 Karch 1951 1981 48
#> 23 Karch 1962 1988 35
#> 24 Walker 1950 1957 44
#> 25 Walker 1907 1973 48
#> 26 Walker 1926 1948 39
#> 27 Uniform Law 1972 1975 10
#> 28 Walker 1943 1957 39
#> 29 Sheprd 1985 2007 24
#> 30 Boushey 1999 2004 48
#> 31 Uniform Law 1970 1971 38
#> 32 Uniform Law 1988 2003 20
#> 33 Uniform Law 2007 2013 45
#> 34 Caughey-Warshaw 1935 2013 42
#> 35 Boehmke-Skinner 1804 2003 41
#> 36 Uniform Law 1968 1970 2
#> 37 Walker 1903 1975 22
#> 38 Mallinson 1999 2015 50
#> 39 Walker 1913 1939 24
#> 40 Boehmke-Skinner 1691 1913 38
#> 41 Boushey 1999 2005 3
#> 42 Boushey 1990 1995 50
#> 43 Other 1995 2006 14
#> 44 Biggers 1972 2013 34
#> 45 Biggers 1972 2013 21
#> 46 Mallinson 1986 2013 37
#> 47 Uniform Law 1921 1955 11
#> 48 Uniform Law 1968 1987 21
#> 49 Uniform Law 2001 2013 17
#> 50 Walker 1897 1951 47
#> 51 Uniform Law 2015 2015 2
#> 52 Walker 1936 1966 28
#> 53 Uniform Law 2007 2013 5
#> 54 Uniform Law 2001 2010 39
#> 55 Uniform Law 2016 2017 5
#> 56 Uniform Law 1931 1977 49
#> 57 Uniform Law 1980 1984 3
#> 58 Walker 1878 1950 48
#> 59 Mallinson 1999 2012 32
#> 60 Walker 1901 1915 48
#> 61 Walker 1962 1965 43
#> 62 Boehmke-Skinner 1996 2001 29
#> 63 Boehmke-Skinner 1975 1999 46
#> 64 Sheprd 1980 2010 25
#> 65 Walker 1914 1948 45
#> 66 Sheprd 1989 2007 21
#> 67 Matisoff 1991 2008 36
#> 68 Walker 1936 1953 48
#> 69 Caughey-Warshaw 1975 2001 22
#> 70 Walker 1869 1919 48
#> 71 Boushey 1982 1999 23
#> 72 Boehmke-Skinner 1971 2002 11
#> 73 Boehmke-Skinner 1989 2000 17
#> 74 Mallinson 2009 2013 13
#> 75 Mallinson 1993 2009 48
#> 76 Boehmke-Skinner 1990 1997 18
#> 77 Walker 1911 1926 48
#> 78 Min Hee Go 1953 2010 43
#> 79 Karch 1965 1983 5
#> 80 Uniform Law 2015 2015 1
#> 81 Michiganstate 1992 2013 34
#> 82 Lacy 1989 2006 16
#> 83 Boehmke-Skinner 1999 2008 31
#> 84 Boushey 1961 1999 50
#> 85 Lacy 1985 2005 17
#> 86 Uniform Law 2013 2014 2
#> 87 Uniform Law 1970 1993 11
#> 88 Uniform Law 1996 2000 7
#> 89 Boehmke-Skinner 1991 1996 25
#> 90 Uniform Law 2007 2015 14
#> 91 Uniform Law 1970 2002 48
#> 92 Makse 1974 2001 44
#> 93 Uniform Law 2003 2011 4
#> 94 Boushey 1963 1967 50
#> 95 Walker 1901 1919 46
#> 96 Other 1981 1984 49
#> 97 Walker 1899 1949 44
#> 98 Walker 1921 1964 46
#> 99 Walker 1913 1929 47
#> 100 Karch 1951 1978 19
#> 101 Boehmke-Skinner 1998 2001 15
#> 102 Uniform Law 1977 1980 2
#> 103 Kreitzer 1973 2005 16
#> 104 Boehmke-Skinner 1961 1998 10
#> 105 Boehmke-Skinner 1991 2007 27
#> 106 Uniform Law 2010 2017 15
#> 107 Uniform Law 2014 2014 1
#> 108 Lacy 1988 2002 47
#> 109 Walker 1945 1955 21
#> 110 Uniform Law 2017 2017 1
#> 111 Uniform Law 2010 2010 1
#> 112 Uniform Law 1983 1993 5
#> 113 Uniform Law 1995 1998 2
#> 114 Uniform Law 2009 2010 3
#> 115 Karch 2014 2015 4
#> 116 Karch 1965 2001 45
#> 117 Karch 1989 1991 2
#> 118 Karch 1984 2002 22
#> 119 Karch 1955 1989 44
#> 120 Karch 1960 1990 47
#> 121 Karch 1963 1963 2
#> 122 Boushey 1978 2000 50
#> 123 Walker 1852 1918 48
#> 124 Uniform Law 2000 2000 2
#> 125 Sheprd 1982 2005 43
#> 126 Sheprd 1987 2005 3
#> 127 Walker 1937 1959 42
#> 128 Makse 1975 2001 25
#> 129 Uniform Law 1980 2010 13
#> 130 Uniform Law 1983 2006 7
#> 131 Uniform Law 1982 2005 21
#> 132 Walker 1892 1948 31
#> 133 Kreitzer 1981 2002 17
#> 134 Uniform Law 1969 1985 11
#> 135 Uniform Law 2002 2002 1
#> 136 Uniform Law 1972 1973 3
#> 137 Mallinson 1996 2010 28
#> 138 Kreitzer 1998 2010 29
#> 139 Uniform Law 1971 1992 29
#> 140 Matisoff 1990 2008 23
#> 141 Matisoff 1990 2008 8
#> 142 Michiganstate 1992 2000 50
#> 143 Boehmke-Skinner 1970 1991 18
#> 144 Uniform Law 1995 2013 3
#> 145 Boushey 1974 2003 50
#> 146 Boehmke-Skinner 2001 2006 25
#> 147 Boushey 1965 1992 50
#> 148 Walker 1937 1965 25
#> 149 Uniform Law 1988 2007 17
#> 150 Boehmke-Skinner 1998 2001 21
#> 151 Sheprd 1984 1995 16
#> 152 Other 1967 1999 17
#> 153 Walker 1822 1921 31
#> 154 Boushey 1972 1995 39
#> 155 Uniform Law 2012 2012 1
#> 156 Uniform Law 2006 2011 7
#> 157 Uniform Law 1968 1973 8
#> 158 Uniform Law 1922 2008 40
#> 159 Walker 1868 1935 48
#> 160 Uniform Law 2013 2016 12
#> 161 Uniform Law 1981 2014 35
#> 162 Lacy 1988 2009 17
#> 163 Lacy 1988 2009 6
#> 164 Lacy 1996 2009 6
#> 165 Lacy 2006 2009 7
#> 166 Lacy 1978 2009 13
#> 167 Lacy 1997 2008 3
#> 168 Lacy 2004 2008 3
#> 169 Lacy 1989 2008 3
#> 170 Lacy 1996 2006 2
#> 171 Lacy 1996 2008 7
#> 172 Walker 1898 1972 26
#> 173 Walker 1901 1955 48
#> 174 Uniform Law 2000 2015 17
#> 175 Uniform Law 1974 1995 9
#> 176 Uniform Law 2009 2011 2
#> 177 Other 1995 2006 8
#> 178 Uniform Law 1973 2013 16
#> 179 Uniform Law 1950 1983 23
#> 180 Boushey 2000 2004 32
#> 181 Boushey 1997 2008 44
#> 182 Uniform Law 1987 1987 2
#> 183 Karch 1961 1996 44
#> 184 Caughey-Warshaw 1950 1996 41
#> 185 Caughey-Warshaw 1983 1994 25
#> 186 Caughey-Warshaw 1973 2013 17
#> 187 Caughey-Warshaw 1996 2013 19
#> 188 Caughey-Warshaw 1995 2013 35
#> 189 Caughey-Warshaw 2002 2012 30
#> 190 Other 1987 1997 26
#> 191 Lacy 1976 2005 39
#> 192 Boushey 1983 2004 50
#> 193 Boehmke-Skinner 1983 2001 25
#> 194 Uniform Law 1980 2009 17
#> 195 Uniform Law 1973 1978 6
#> 196 Makse 1983 2002 31
#> 197 Boehmke-Skinner 1970 2002 15
#> 198 Caughey-Warshaw 1988 2012 24
#> 199 Boehmke-Skinner 1981 1992 24
#> 200 Boehmke-Skinner 1970 1991 14
#> 201 Caughey-Warshaw 1970 2011 29
#> 202 Caughey-Warshaw 1930 1961 41
#> 203 Caughey-Warshaw 1896 1960 45
#> 204 Walker 1951 1966 33
#> 205 Boehmke-Skinner 1974 1994 7
#> 206 Boehmke-Skinner 1996 1999 24
#> 207 Uniform Law 2012 2016 13
#> 208 Uniform Law 2011 2014 2
#> 209 Uniform Law 1999 2009 46
#> 210 Kreitzer 1997 2009 23
#> 211 Karch 1995 2014 48
#> 212 Karch 2013 2013 1
#> 213 Uniform Law 2007 2016 14
#> 214 Uniform Law 1985 1985 1
#> 215 Lacy 1983 2007 20
#> 216 Uniform Law 1953 1997 46
#> 217 Walker 1908 1947 48
#> 218 Boehmke-Skinner 1811 2007 30
#> 219 Boehmke-Skinner 1981 1992 38
#> 220 Uniform Law 2007 2015 6
#> 221 Boehmke-Skinner 1978 1991 14
#> 222 Caughey-Warshaw 1947 1966 29
#> 223 Caughey-Warshaw 1972 2005 11
#> 224 Caughey-Warshaw 2003 2007 15
#> 225 Caughey-Warshaw 2000 2012 29
#> 226 Caughey-Warshaw 2006 2007 11
#> 227 Caughey-Warshaw 1996 2009 20
#> 228 Caughey-Warshaw 1970 1991 15
#> 229 Uniform Law 2004 2010 22
#> 230 Other 1890 1976 17
#> 231 Walker 1919 1966 27
#> 232 Uniform Law 1972 2011 10
#> 233 Caughey-Warshaw 2009 2010 22
#> 234 Mallinson 2003 2011 25
#> 235 Uniform Law 1982 1982 1
#> 236 Walker 1887 1893 48
#> 237 Uniform Law 1985 1985 1
#> 238 Uniform Law 1958 1999 20
#> 239 Boehmke-Skinner 1945 1964 26
#> 240 Walker 1931 1938 44
#> 241 Uniform Law 2011 2015 4
#> 242 Boehmke-Skinner 1992 1998 21
#> 243 Michiganstate 1992 2002 50
#> 244 Uniform Law 1968 1998 37
#> 245 Kreitzer 1980 2013 21
#> 246 Kreitzer 2013 2013 2
#> 247 Kreitzer 1970 2013 36
#> 248 Kreitzer 2011 2013 10
#> 249 Walker 1959 1963 11
#> 250 Uniform Law 2014 2014 1
#> 251 Uniform Law 2016 2017 29
#> 252 Mallinson 1992 2009 44
#> 253 Walker 1864 1915 35
#> 254 Kreitzer 1973 2006 7
#> 255 Boehmke-Skinner 1851 2003 40
#> 256 Uniform Law 1989 2010 20
#> 257 Uniform Law 1963 2003 31
#> 258 Uniform Law 2007 2017 22
#> 259 Walker 1885 1952 44
#> 260 Uniform Law 1985 2015 43
#> 261 Sheprd 1985 1995 26
#> 262 Kreitzer 1982 1995 6
#> 263 Kreitzer 1977 1990 36
#> 264 Kreitzer 1985 2002 42
#> 265 Boushey 1967 1997 47
#> 266 Other 1973 1997 29
#> 267 Kreitzer 1991 2010 21
#> 268 Caughey-Warshaw 1977 2009 23
#> 269 Caughey-Warshaw 1964 2013 44
#> 270 Kreitzer 2005 2009 7
#> 271 Boehmke-Skinner 1919 1929 48
#> 272 Caughey-Warshaw 1993 2014 18
#> 273 Boushey 1989 2005 31
#> 274 Boehmke-Skinner 1994 2008 33
#> 275 Caughey-Warshaw 1962 1962 49
#> 276 Caughey-Warshaw 2000 2011 12
#> 277 Caughey-Warshaw 1999 2012 30
#> 278 Caughey-Warshaw 2004 2012 7
#> 279 Boehmke-Skinner 1996 2009 49
#> 280 Caughey-Warshaw 1965 1992 43
#> 281 Caughey-Warshaw 1972 1977 34
#> 282 Caughey-Warshaw 1961 1963 3
#> 283 Caughey-Warshaw 1935 1971 40
#> 284 Caughey-Warshaw 1966 1991 50
#> 285 Caughey-Warshaw 1971 1999 22
#> 286 Michiganstate 1999 2011 11
#> 287 Michiganstate 1993 2013 17
#> 288 Mallinson 2007 2013 14
#> 289 Lacy 1985 2001 23
#> 290 Uniform Law 1987 2009 5
#> 291 Caughey-Warshaw 1935 1996 14
#> 292 Caughey-Warshaw 1935 2014 10
#> 293 Caughey-Warshaw 1935 1991 13
#> 294 Caughey-Warshaw 1989 2000 7
#> 295 Caughey-Warshaw 1935 1994 20
#> 296 Caughey-Warshaw 1961 2013 42
#> 297 Caughey-Warshaw 1974 1999 8
#> 298 Boehmke-Skinner 1998 2001 11
#> 299 Makse 1978 2002 42
#> 300 Boushey 1978 2003 46
#> 301 Boushey 1969 2004 43
#> 302 Boehmke-Skinner 1985 1991 23
#> 303 Karch 2011 2014 9
#> 304 Uniform Law 1995 2005 7
#> 305 Uniform Law 1987 1991 2
#> 306 Sheprd 1980 2006 48
#> 307 Sheprd 1980 2006 28
#> 308 Sheprd 1980 2007 28
#> 309 Boehmke-Skinner 1990 1994 36
#> 310 Boehmke-Skinner 1990 1995 45
#> 311 Boehmke-Skinner 1990 1995 43
#> 312 Boehmke-Skinner 1990 1994 39
#> 313 Boehmke-Skinner 1973 1988 23
#> 314 Boehmke-Skinner 1989 1995 22
#> 315 Sheprd 1998 2009 27
#> 316 Boehmke-Skinner 1976 1999 26
#> 317 Boushey 2003 2008 39
#> 318 Walker 1945 1963 22
#> 319 Walker 1893 1919 48
#> 320 Boehmke-Skinner 1993 2001 35
#> 321 Kreitzer 1995 2000 31
#> 322 Boushey 1996 2006 50
#> 323 Boushey 1962 1999 50
#> 324 Caughey-Warshaw 1970 2010 31
#> 325 Caughey-Warshaw 2001 2013 18
#> 326 Boehmke-Skinner 1916 1937 28
#> 327 Boehmke-Skinner 1990 1995 24
#> 328 Michiganstate 1992 2000 50
#> 329 Boehmke-Skinner 1994 1997 14
#> 330 Boehmke-Skinner 1990 2008 43
#> 331 Kreitzer 1973 2013 40
#> 332 Mallinson 1987 2002 14
#> 333 Uniform Law 1988 1988 1
#> 334 Other 1898 1918 20
#> 335 Kreitzer 2011 2013 22
#> 336 Other 1975 1998 34
#> 337 Boushey 1975 1998 37
#> 338 Uniform Law 1985 1985 1
#> 339 Kreitzer 1978 2013 24
#> 340 Kreitzer 1978 2011 21
#> 341 Lacy 2001 2009 11
#> 342 Lacy 2006 2009 8
#> 343 Uniform Law 2011 2014 7
#> 344 Kreitzer 1978 2013 5
#> 345 Walker 1921 1956 26
#> 346 Karch 1954 1978 5
#> 347 Other 1997 2004 15
#> 348 Karch 1951 2008 49
#> 349 Karch 1955 1986 49
#> 350 Karch 1951 1976 3
#> 351 Karch 1984 1991 10
#> 352 Karch 1979 1979 2
#> 353 Karch 2008 2014 49
#> 354 Karch 1990 2011 4
#> 355 Karch 2000 2007 14
#> 356 Karch 1967 1980 8
#> 357 Karch 1976 1976 1
#> 358 Karch 1935 1982 29
#> 359 Karch 1959 1994 38
#> 360 Uniform Law 2008 2016 37
#> 361 Karch 1988 1990 4
#> 362 Uniform Law 2001 2016 18
#> 363 Uniform Law 1993 1998 49
#> 364 Uniform Law 2002 2007 20
#> 365 Uniform Law 2009 2016 49
#> 366 Karch 1991 1993 3
#> 367 Karch 1980 1991 6
#> 368 Karch 2003 2014 42
#> 369 Karch 1995 1996 3
#> 370 Karch 1957 1976 33
#> 371 Karch 2015 2016 17
#> 372 Karch 1966 1991 8
#> 373 Karch 1985 1986 2
#> 374 Karch 1979 1993 7
#> 375 Uniform Law 1991 1995 4
#> 376 Walker 1907 1959 31
#> 377 Boehmke-Skinner 1899 1959 48
#> 378 Walker 1951 1966 41
#> 379 Sheprd 1980 2008 31
#> 380 Boehmke-Skinner 1998 2006 26
#> 381 Caughey-Warshaw 1935 1997 48
#> 382 Caughey-Warshaw 1966 1992 26
#> 383 Caughey-Warshaw 1960 1987 33
#> 384 Caughey-Warshaw 1944 1967 28
#> 385 Caughey-Warshaw 1968 2009 30
#> 386 Caughey-Warshaw 1891 1973 41
#> 387 Caughey-Warshaw 1939 1961 8
#> 388 Caughey-Warshaw 1937 1945 7
#> 389 Caughey-Warshaw 1944 2012 26
#> 390 Caughey-Warshaw 1977 1988 18
#> 391 Caughey-Warshaw 1965 1986 41
#> 392 Caughey-Warshaw 1945 1969 5
#> 393 Caughey-Warshaw 1935 1956 46
#> 394 Walker 1869 1935 40
#> 395 Uniform Law 1967 1973 9
#> 396 Uniform Law 2011 2017 6
#> 397 Walker 1933 1959 30
#> 398 Walker 1901 1963 48
#> 399 Boehmke-Skinner 1982 1984 29
#> 400 Walker 1890 1949 48
#> 401 Kreitzer 2003 2010 4
#> 402 Kreitzer 2000 2013 33
#> 403 Caughey-Warshaw 1896 1951 48
#> 404 Uniform Law 2008 2012 6
#> 405 Uniform Law 1997 1999 5
#> 406 Uniform Law 2008 2017 17
#> 407 Uniform Law 1979 1998 43
#> 408 Uniform Law 1968 1973 4
#> 409 Uniform Law 2003 2017 20
#> 410 Boehmke-Skinner 1964 1993 36
#> 411 Boehmke-Skinner 1972 1995 49
#> 412 Other 1993 2000 13
#> 413 Uniform Law 1973 1998 34
#> 414 Uniform Law 2005 2005 2
#> 415 Boehmke-Skinner 1994 2008 23
#> 416 Uniform Law 1959 1980 8
#> 417 Other 1995 2006 12
#> 418 Uniform Law 1984 1984 1
#> 419 Uniform Law 1973 1978 6
#> 420 Other 1995 2003 5
#> 421 Uniform Law 2003 2013 11
#> 422 Caughey-Warshaw 1966 1972 49
#> 423 Kreitzer 2001 2013 18
#> 424 Boehmke-Skinner 1978 2008 31
#> 425 Boushey 1990 1999 50
#> 426 Other 1988 2001 16
#> 427 Walker 1883 1953 48
#> 428 Lacy 1993 2005 12
#> 429 Doyle 1993 2002 11
#> 430 Boehmke-Skinner 1996 2005 25
#> 431 Walker 1943 1960 28
#> 432 Uniform Law 2011 2015 15
#> 433 Sheprd 1980 2001 28
#> 434 Uniform Law 1970 1973 6
#> 435 Walker 1915 1965 34
#> 436 Other 1940 1976 20
#> 437 Boehmke-Skinner 1933 1988 50
#> 438 Walker 1955 1965 30
#> 439 Uniform Law 1968 1975 2
#> 440 Uniform Law 1983 1988 5
#> 441 Uniform Law 1968 1986 10
#> 442 Uniform Law 2001 2016 7
#> 443 Mallinson 1911 1931 45
#> 444 Boehmke-Skinner 1911 1931 46
#> 445 Boehmke-Skinner 1976 1995 49
#> 446 Sheprd 1982 2003 34
#> 447 Boehmke-Skinner 1993 1997 28
#> 448 Uniform Law 1993 2009 6
#> 449 Karch 1975 1997 10
#> 450 Karch 1988 2009 30
#> 451 Karch 1962 1962 1
#> 452 Karch 1967 2014 13
#> 453 Other 1999 2007 25
#> 454 Karch 1999 2013 30
#> 455 Karch 1968 1993 6
#> 456 Karch 1993 1998 10
#> 457 Karch 2007 2014 10
#> 458 Boehmke-Skinner 1975 1991 16
#> 459 Kreitzer 1991 1991 2
#> 460 Other 1995 2006 11
#> 461 Other 1983 2006 36
#> 462 Matisoff 1990 2008 40
#> 463 Mallinson 2011 2013 30
#> 464 Uniform Law 1990 2009 8
#> 465 Karch 1965 1993 26
#> 466 Boehmke-Skinner 2007 2009 18
#> 467 Uniform Law 1983 2008 11
#> 468 Walker 1839 1910 48
#> 469 Walker 1903 1933 48
#> 470 Karch 1998 2004 12
#> 471 Boehmke-Skinner 1993 2009 19
#> 472 Walker 1936 1938 48
#> 473 Sheprd 1980 2006 43
#> 474 Other 1996 2006 5
#> 475 Other 1989 2001 39
#> 476 Boushey 1995 1999 27
#> 477 Kreitzer 1974 2006 28
#> 478 Kreitzer 1978 1978 1
#> 479 Uniform Law 2001 2015 11
#> 480 Uniform Law 1975 1989 14
#> 481 Walker 1885 1937 46
#> 482 Kreitzer 1973 2010 24
#> 483 Walker 1935 1951 48
#> 484 Uniform Law 2011 2017 9
#> 485 Uniform Law 1969 1993 8
#> 486 Uniform Law 1993 2017 38
#> 487 Lacy 1979 2008 25
#> 488 Boehmke-Skinner 1940 1999 15
#> 489 Other 1979 2001 25
#> 490 Uniform Law 1986 1986 1
#> 491 Matisoff 1990 2008 19
#> 492 Matisoff 1990 2008 12
#> 493 Boehmke-Skinner 1968 2009 36
#> 494 Walker 1874 1935 48
#> 495 Karch 2016 2016 4
#> 496 Kreitzer 1973 2002 45
#> 497 Uniform Law 1997 1997 1
#> 498 Walker 1935 1947 43
#> 499 Uniform Law 1970 1970 1
#> 500 Boehmke-Skinner 1997 2005 35
#> 501 Kreitzer 1973 2002 32
#> 502 Uniform Law 2007 2017 20
#> 503 Uniform Law 2014 2017 7
#> 504 Kreitzer 1997 2000 18
#> 505 Sheprd 1980 2004 42
#> 506 Uniform Law 1985 2007 26
#> 507 Uniform Law 2013 2013 2
#> 508 Lacy 1986 2000 25
#> 509 Other 1986 1999 20
#> 510 Boushey 1961 2006 22
#> 511 Uniform Law 2014 2015 7
#> 512 Sheprd 1985 2010 29
#> 513 Sheprd 1986 2007 5
#> 514 Boehmke-Skinner 1984 2004 21
#> 515 Uniform Law 1968 1992 17
#> 516 Uniform Law 1997 2012 45
#> 517 Uniform Law 2009 2017 35
#> 518 Sheprd 1980 2003 7
#> 519 Walker 1919 1946 21
#> 520 Walker 1878 2005 45
#> 521 Uniform Law 1971 2009 17
#> 522 Uniform Law 2009 2011 4
#> 523 Uniform Law 2014 2014 1
#> 524 Uniform Law 1991 2006 42
#> 525 Uniform Law 2007 2012 48
#> 526 Other 1993 2000 13
#> 527 Matisoff 1996 2005 18
#> 528 Boehmke-Skinner 1993 2008 46
#> 529 Boehmke-Skinner 1973 1987 23
#> 530 Kreitzer 1990 2005 2
#> 531 Kreitzer 1981 2009 10
#> 532 Walker 1933 1950 43
#> 533 Lacy 1982 2007 35
#> 534 Caughey-Warshaw 1937 1962 16
#> 535 Caughey-Warshaw 1945 1963 16
#> 536 Caughey-Warshaw 1949 1963 14
#> 537 Caughey-Warshaw 1965 1992 43
#> 538 Caughey-Warshaw 1959 1967 16
#> 539 Caughey-Warshaw 1959 1968 14
#> 540 Boushey 1999 2004 25
#> 541 Other 1977 1995 28
#> 542 Boushey 1973 1998 48
#> 543 Uniform Law 1982 1982 1
#> 544 Uniform Law 2005 2016 29
#> 545 Uniform Law 2011 2015 12
#> 546 Walker 1917 1949 40
#> 547 Uniform Law 1968 1990 20
#> 548 Walker 1934 1959 40
#> 549 Uniform Law 2016 2017 2
#> 550 Uniform Law 2015 2016 2
#> 551 Kreitzer 1976 2004 47
#> 552 Uniform Law 2007 2012 10
#> 553 Other 1983 1996 15
#> 554 Caughey-Warshaw 1992 2007 21
#> 555 Caughey-Warshaw 1961 2000 17
#> 556 Caughey-Warshaw 1964 1986 49
#> 557 Caughey-Warshaw 1976 1991 49
#> 558 Caughey-Warshaw 1935 2011 42
#> 559 Caughey-Warshaw 1945 1945 27
#> 560 Caughey-Warshaw 1981 2010 45
#> 561 Caughey-Warshaw 1875 1960 31
#> 562 Caughey-Warshaw 1939 1949 10
#> 563 Caughey-Warshaw 1945 1984 33
#> 564 Caughey-Warshaw 1985 1996 49
#> 565 Caughey-Warshaw 1967 1992 49
#> 566 Caughey-Warshaw 1975 2009 32
#> 567 Caughey-Warshaw 1998 2013 4
#> 568 Caughey-Warshaw 1950 2002 33
#> 569 Caughey-Warshaw 1993 2013 19
#> 570 Caughey-Warshaw 1935 1954 29
#> 571 Caughey-Warshaw 1887 1956 43
#> 572 Caughey-Warshaw 1970 1993 50
#> 573 Caughey-Warshaw 1842 1976 43
#> 574 Other 1983 2014 38
#> 575 Boushey 1962 2003 50
#> 576 Biggers 1972 2013 15
#> 577 Uniform Law 1972 2006 21
#> 578 Uniform Law 2005 2014 4
#> 579 Sheprd 1980 2010 29
#> 580 Other 1996 2001 18
#> 581 Makse 1973 2000 39
#> 582 Walker 1957 1965 14
#> 583 Walker 1911 1961 48
#> 584 Boehmke-Skinner 1981 1991 18
#> 585 Uniform Law 2017 2017 2
#> 586 Boushey 1972 1995 30
#> 587 Boehmke-Skinner 1911 2001 22
#> 588 Boushey 1976 1988 15
#> 589 Uniform Law 1985 1992 12
#> 590 Walker 1891 1917 48
#> 591 Kreitzer 1974 2005 4
#> 592 Matisoff 1997 2008 27
#> 593 Uniform Law 1975 1980 8
#> 594 Walker 1945 1965 25
#> 595 Boushey 2005 2008 13
#> 596 Other 1988 1999 31
#> 597 Boehmke-Skinner 1987 1992 16
#> 598 Boehmke-Skinner 1994 2008 25
#> 599 Uniform Law 2003 2016 19
#> 600 Uniform Law 1968 1987 11
#> 601 Uniform Law 1988 1990 4
#> 602 Boehmke-Skinner 1927 1943 10
#> 603 Boehmke-Skinner 1991 1997 15
#> 604 Kreitzer 1975 2014 7
#> 605 Boehmke-Skinner 1935 2009 34
#> 606 Boushey 1965 2000 48
#> 607 Uniform Law 1992 2009 12
#> 608 Uniform Law 1985 1985 1
#> 609 Walker 1894 1955 27
#> 610 Boehmke-Skinner 1995 2009 25
#> 611 Michiganstate 1975 2010 27
#> 612 Walker 1937 1945 48
#> 613 Michiganstate 1981 2009 21
#> 614 Boushey 1974 1997 47
#> 615 Other 1974 1997 44
#> 616 Walker 1813 1891 47
#> 617 Lacy 1976 2008 40
#> 618 Boehmke-Skinner 1998 2001 24
#> 619 Makse 1990 1998 47
#> 620 Mallinson 1994 2011 23
#> 621 Walker 1903 1947 48
#> 622 Boushey 1971 1998 42
#> 623 Uniform Law 1989 1989 1
#> 624 Uniform Law 1968 1970 2
#> 625 Uniform Law 1991 2006 9
#> 626 Uniform Law 1987 2011 27
#> 627 Uniform Law 2012 2012 1
#> 628 Uniform Law 1991 1991 1
#> 629 Walker 1933 1947 45
#> 630 Sheprd 1998 1999 20
#> 631 Kreitzer 1991 2004 5
#> 632 Karch 2011 2011 9
#> 633 Boushey 1987 2004 14
#> 634 Walker 1864 1929 48
#> 635 Walker 1930 1957 34
#> 636 Walker 1896 1956 41
#> 637 Other 1845 1860 33
#> 638 Boehmke-Skinner 1976 1994 26
#> 639 Boehmke-Skinner 1990 2000 15
#> 640 Boushey 1998 2003 20
#> 641 Uniform Law 1968 2009 16
#> 642 Boushey 1993 1996 25
#> 643 Boehmke-Skinner 1993 1996 18
#> 644 Uniform Law 1990 2005 47
#> 645 Uniform Law 1980 2013 46
#> 646 Uniform Law 1983 1992 6
#> 647 Uniform Law 1984 2015 48
#> 648 Boehmke-Skinner 1974 1991 20
#> 649 Mallinson 1978 2005 19
#> 650 Kreitzer 1973 2013 33
#> 651 Kreitzer 1973 2013 27
#> 652 Uniform Law 2002 2016 30
#> 653 Uniform Law 2016 2017 3
#> 654 Uniform Law 1976 1985 5
#> 655 Other 1911 1996 25
#> 656 Lacy 1987 2006 20
#> 657 Lacy 1976 2009 45
#> 658 Uniform Law 2003 2015 48
#> 659 Uniform Law 1988 2002 48
#> 660 Uniform Law 1991 2008 47
#> 661 Uniform Law 2003 2014 11
#> 662 Uniform Law 2012 2016 44
#> 663 Uniform Law 1990 1996 48
#> 664 Uniform Law 1996 2006 49
#> 665 Uniform Law 1990 1990 1
#> 666 Uniform Law 1990 1997 5
#> 667 Uniform Law 1990 2015 48
#> 668 Uniform Law 2004 2015 48
#> 669 Uniform Law 1987 1994 22
#> 670 Uniform Law 1995 2001 49
#> 671 Uniform Law 1973 2003 37
#> 672 Uniform Law 2011 2015 49
#> 673 Uniform Law 1973 2001 49
#> 674 Kreitzer 1996 2012 24
#> 675 Uniform Law 1995 2008 14
#> 676 Uniform Law 1968 1991 32
#> 677 Boushey 2001 2006 10
#> 678 Karch 1967 2001 9
#> 679 Uniform Law 1993 2008 12
#> 680 Uniform Law 2009 2015 5
#> 681 Michiganstate 1992 2000 50
#> 682 Gray Et Al 1988 1994 15
#> 683 Curran 1995 2008 10
#> 684 Uniform Law 2017 2017 1
#> 685 Uniform Law 2002 2017 23
#> 686 Walker 1941 1952 34
#> 687 Walker 1839 1917 47
#> 688 Uniform Law 1937 1997 13
#> 689 Uniform Law 1942 1953 15
#> 690 Kreitzer 1984 1999 6
#> 691 Boehmke-Skinner 1982 1999 32
#> 692 Makse 1979 2001 46
#> 693 Boushey 1979 2001 50
#> 694 Boushey 1982 1998 33
#> 695 Uniform Law 1995 1995 1
#> 696 Uniform Law 2015 2017 13
#> 697 Lacy 2003 2003 1
#> 698 Caughey-Warshaw 1983 2013 19
#> 699 Caughey-Warshaw 1995 2012 13
#> 700 Caughey-Warshaw 1998 2007 10
#> 701 Caughey-Warshaw 2000 2000 3
#> 702 Caughey-Warshaw 1935 1978 2
#> 703 Caughey-Warshaw 1971 2007 11
#> 704 Caughey-Warshaw 1957 2002 29
#> 705 Caughey-Warshaw 1975 2010 9
#> 706 Caughey-Warshaw 1975 2013 36
#> 707 Caughey-Warshaw 1969 2010 39
#> 708 Caughey-Warshaw 1993 2014 17
#> 709 Caughey-Warshaw 1982 2009 13
#> 710 Caughey-Warshaw 1989 2009 11
#> 711 Caughey-Warshaw 1935 1992 18
#> 712 Caughey-Warshaw 1966 1991 8
#> 713 Caughey-Warshaw 1935 1990 4
#> 714 Caughey-Warshaw 1967 1995 3
#> 715 Caughey-Warshaw 1865 1963 31
#> 716 Kreitzer 1973 2011 31
#> 717 Walker 1863 1935 48
#> 718 Karch 1989 2014 20
#> 719 Uniform Law 1978 2010 17
#> 720 Boushey 1963 2004 49
#> 721 Kreitzer 1973 2013 21
#> 722 Boushey 1999 2004 35
#> 723 Other 1911 1948 50
#> 724 Sheprd 2003 2010 26
#> 725 Other 1993 1998 7
#> 726 Boushey 1983 1998 50
#> 727 Sheprd 1983 1998 50
#> 728 Sheprd 1984 1999 50
#> description
#> 1 Death Penalty Reform
#> 2 Parent Consent For Abortion By A Minor
#> 3 Parent Notification For Abortion By A Minor
#> 4 Abortion Pre-Roe
#> 5 Does The State Mandate Counseling Before An Abortion (Pre-Casey)?
#> 6 Does The State Mandate Counseling Before An Abortion (Post-Casey)?
#> 7 Does The State'S Medicaid System Pay For Abortions?
#> 8 Does The State Ban Late-Term Or Partial Birth Abortions?
#> 9 Did The State Allow Abortion Before Roe V. Wade?
#> 10 Unrestricted Absentee Voting
#> 11 Accountant Licensing
#> 12 State Passes Work Requirements For Eligibility Of Ada/Afdc
#> 13 Aid To Dependent Children (Social Security)
#> 14 Creation Of State Advertising Commission
#> 15 Requirement That Abortion Clinics Must Have Admitting Privileges
#> 16 Act Regulating Adoption Requirements And Standards
#> 17 Act Regulating Adoption Requirements And Standards (1994 Version)
#> 18 Mechanism For Multi-State Guardianship Disputes
#> 19 Banning Of Cigarette Advertising
#> 20 Does The State Have The Afdc Unemployed Parent Program?
#> 21 Does The State Have Strategic Planning For The Aging
#> 22 Facilitates Disposition Of Charges Against A Prisoner
#> 23 Facilitates Movement Of Education Professionals Across States
#> 24 Program For Aid To Permanently And Totally Disabled
#> 25 Air Pollution Control Program
#> 26 Alcoholic Beverage Control
#> 27 Legal Framework For Public Intoxication Law
#> 28 Alcoholic Treatment Agencies
#> 29 Requiring All Passengers To Wear A Seatbelt
#> 30 Alerts Abduction Of A Minor
#> 31 Sets Framework For The Donation Of Organs And Other Body Parts
#> 32 Framework For Donation Of Organs Other Body Parts (1987 Version)
#> 33 Framework For Donation Of Organs Other Body Parts (2006 Version)
#> 34 Is Animal Cruelty A Felony On The First Offense?
#> 35 Animal Cruelty Felony Laws
#> 36 Anti-Discrimination Law (Later Updated In 1995 Law)
#> 37 Anti-Age Discrimination Law
#> 38 Anti-Bullying Program
#> 39 Ant-Injunction Laws
#> 40 Anti- Miscegenation Laws
#> 41 Prohibits Shackling Inmates In Labor Or Recovery
#> 42 Prohibition Of Harassment And Intimidation
#> 43 Any Active Notification About Sex Offenders
#> 44 Request Any Id For Voting
#> 45 Photo Id Voting Requirement
#> 46 Physician Apology Protection Laws
#> 47 Creates Commission On Uniform State Laws, And Procedure To Appoint Commissioners
#> 48 Provides Judicial Facilitation Of Private Dispute Resolution
#> 49 Provides Judicial Facilitation Of Private Dispute Resolution
#> 50 Architects Licensing
#> 51 Harmonizes The Language Of All Of The Uniform Unincorporated Entity Acts
#> 52 Creation Of Council On The Arts
#> 53 Establishes A Comprehensive Statutory Model For The Creation, Perfection, And Enforcement Of Security Interests In Rents.
#> 54 Governs Relations Among Student Athletes, Athlete Agents, And Educational Institutions
#> 55 Revision Of Previous Law- Expands Definition Of Student And Athlete
#> 56 Provides States With Statutory Authority To Secure The Attendance Of A Witness From Without The State In Which The Criminal Proceeding Or Grand Jury Proceeding Is Pending.
#> 57 Permit Audio-Visual Means For Taking Depositions.
#> 58 Australian Ballot System
#> 59 Requirement That Insurance Provide Or Offer Some Autism Coverage
#> 60 Automobile Registration
#> 61 Automobile Safety Compact
#> 62 Ban On Financial Incentives For Doctors To Perform Less Costly Procedures/Prescribe Less Costly Drugs
#> 63 Prohibits Agreements That Limits A Doctor'S Ability To Inform Patients Of All Treatment Options
#> 64 Full Smoking Ban In Bars
#> 65 Beautician Licensing
#> 66 Requiring Helmet For Riding Bike
#> 67 Environmental Building Standards
#> 68 Aid To The Blind (Social Security)
#> 69 Does The State Provide Pharmaceutical Coverage Or Assistance For Seniors Who Do Not Qualify For Medicaid?
#> 70 Board Of Health
#> 71 Short-Term Programs For Incarcerated Youth (Similar To Military School)
#> 72 Container-Deposit Legislation
#> 73 Prohibits Agreements That Limits A Doctor'S Ability To Inform Patients Of All Treatment Options
#> 74 Breast Density Notification Acts
#> 75 Allows Public Breastfeeding
#> 76 Requiring Broad Community Notification Of Sex Offenders
#> 77 Budgeting Standards
#> 78 Building Code Adoption
#> 79 System For Bus Fleet Owners To Pro-Rate Mileage In Multiple States
#> 80 Creates Statutory Structure For Organizing Business And Nonprofit Entities
#> 81 Candidate Campaign Limit
#> 82 Community College Bachelor'S Degree
#> 83 Restrictions On Displaying Credit Card Numbers On Sales Receipts
#> 84 Laws Regulating Punishment And Protection Of Credit Card Theft
#> 85 Centralization Of Tuition Control
#> 86 Regulating Titles For Vehicles
#> 87 Empowers Court To Answer Questions Certified To It By A Federal Court, Appellate, Another State, Or Canada And Mexico
#> 88 Any Jurisdiction'S Own Courts Should Always Rule Upon A Point Of That Jurisdiction'S Common Law.
#> 89 Charter Schools
#> 90 Provides States With Tools To Prevent Child Abduction
#> 91 Regulating Child Custody Laws
#> 92 State Ban Of Child Pornography
#> 93 Allows Children Witnesses To Provide Testimony By Alternate Methods
#> 94 Requirement Of Professionals To Report Cases Of Suspected Abuse
#> 95 Child Labor Standards
#> 96 Child Passenger Restraint Mandate Law
#> 97 Chiropractors Licensing
#> 98 Cigarette Tax
#> 99 Zoning In Cities- Enabling Legislation
#> 100 Bilateral/Mutual Aid For Disasters
#> 101 Civil Injunction Authority
#> 102 Provides Complete Procedures To Govern The Conduct Of A Class Action Law Suit.
#> 103 No-Protest Zone Around Abortion Clinic
#> 104 Requiring Local Government To Coordinate Growth Management
#> 105 Colorectal Cancer Screenings
#> 106 Regulates The Use Of Collaborative Law, A Form Of Alternative Dispute Resolution.
#> 107 Addresses The Penalties And Disqualifications That Individuals Face Incidental To Criminal Sentencing.
#> 108 College Savings Plan
#> 109 Committee On The Aged
#> 110 Provides A Standard Set Of Rules For Courts To Apply For Real Estate Receivership
#> 111 Governs The Formation, Management, And Termination Of Common Interest Communities
#> 112 Governs The Formation, Management, And Termination Of Common Interest Communities (1982 Version)
#> 113 Governs The Formation, Management, And Termination Of Common Interest Communities (1994 Version)
#> 114 Governs The Formation, Management, And Termination Of Common Interest Communities (2008 Version)
#> 115 Seek Passage Of Balanced Budget Amendment To Us Constitution
#> 116 Information Center On Education Matters
#> 117 System For Transferring Professional Education Employees' Pension
#> 118 Provides All The Benefit Of Adoption Subsidy Agreement, Regardless Of State
#> 119 Provides For Care Of Mentally Retarded Persons Regardless Of Residence Requirements
#> 120 Ensures Protection And Services To Children Placed Across States
#> 121 Establish Criteria To Avoid Double Taxation Of Motor Fuels Consumed By Interstate Buses
#> 122 Law Punishing Hacking
#> 123 Compulsory School Attendance
#> 124 Contract Law To Regulate Transactions In Computer Information Products
#> 125 Mandated Community Service After 1St Or 2Nd Offense
#> 126 Mandated Community Service After 1St Dui
#> 127 Controlled Access Highways
#> 128 State Permit For Conceal And Carry
#> 129 Provisions For Creation, Management, And Termination Of Condominium Associations
#> 130 Applying Limitations Periods Chosen By Conflict Of Laws
#> 131 Creation Of Permanent Easements On Real Property For Conservation And Historic Preservation Purposes
#> 132 Conservation Of Gas And Oil Program
#> 133 The State Constitution Protects Access To Abortion
#> 134 Provides Standards For Credit Transactions Entered Into By Individuals Who Purchase, Use, Maintain, And Dispose Of Products And Services.
#> 135 Assure That Meaningful And Accurate Disclosure Of Lease Terms Is Provided To Consumers Before Entering Into A Contract
#> 136 Crystallize The Best Elements Of Contemporary Federal And State Regulation Of Consumer Sales Practices
#> 137 Mandates Contraception Coverage By Insurance
#> 138 Contraceptive Equality
#> 139 Drug Policy Under Which The Manufacture, Importation, Possession, Use And Distribution Of Certain Substances Is Regulated
#> 140 Corporate Incentives
#> 141 Tax Credits For Renewable Technologies
#> 142 Limits On Corporate Campaign Spending In State
#> 143 Strategic Planning For Corrections
#> 144 Timely Request For A Correction Or Clarification From The Publisher Of A Defamation In Order To Maintain An Action For Defamation.
#> 145 Bans Child Pornography
#> 146 Limits Credit Agencies From Issuing A Credit Report Without Consumer Consent
#> 147 State Programs To Compensate Victims Of Crimes
#> 148 Court Administrators
#> 149 Establishes A Legal Structure For Organizing The Ownership And Management Of Property For Its Preservation On Behalf Of Specified Individuals
#> 150 Cyberstalking Definition And Penalty
#> 151 Presence Of A Law That Decreases Monetary Awards For Injuries In Law Suits For Seatbelt Nonuse
#> 152 Removal Of River Dam
#> 153 Creation Of Schools For The Deaf
#> 154 Post-Supreme Court Reenactment Of Death Penalty
#> 155 Governing National Administration Of Debt Counseling And Management In A Fair And Effective Way. (2011 Update)
#> 156 Governing National Administration Of Debt Counseling And Management In A Fair And Effective Way.
#> 157 Prohibit Unfair Or Deceptive Trade Practices And Unfair Competition
#> 158 Authorizes Courts To Adjudicate Actual Controversies Concerning Legal Rights And Duties Even Though Traditional Remedies For Damages Or Equitable Relief Are Not Available.
#> 159 Dentists Licensing
#> 160 Addresses Issues Of Child Custody And Visitation That Arise When Parents Are Deployed In Military Or Other National Service.
#> 161 Sets Medial Standards For Determining Death
#> 162 Comprehensive Remediation Reform
#> 163 Delivery Of Remediation
#> 164 Accountability (Such As Reporting Rates Of Enrollment And Outcomes, Performance Based Funding)
#> 165 Financial Support Or Reduction Of The Support For Remediation (Cost)
#> 166 Access To College Placement Exams And Remediation Before College
#> 167 Placement Policies (Placement Examination, Changes To Placement Criteria
#> 168 Remedial Credits Counting Toward Financial Aid
#> 169 Remedial Credits Counting Or Non-Counting Towards Graduation And Full-Time Status
#> 170 Remediation Expanded Or Limited To Certain Sectors Of Higher Education
#> 171 Limits For Remediation (Time, Credit Hours, Etc.) And Punishment Of Unsuccessful Students In The Developmental Education
#> 172 Initiative And Referendum
#> 173 Direct Primary
#> 174 Allow Every Sort Of Disclaimer, Including Those That Are Useful For Tax Planning Purposes.
#> 175 Allow Every Sort Of Disclaimer, Including Those That Are Useful For Tax Planning Purposes.
#> 176 Rules For The Discovery Of Electronic Documents In Civil Cases.
#> 177 Notification Of Sex Offenders Is At Authority'S Discretion
#> 178 Preserves The Rights Of Each Spouse In Property That Was Community Property Before The Spouses Moved To The Non-Community Property State,
#> 179 Divides Income Between States For Tax Purposes When Living/Working In Multiple States
#> 180 Dna Collection Of All Convicted Felons
#> 181 Post-Conviction Exoneration Using Dna Evidence
#> 182 Ownership Of Real Estate Means Ownership Of Interests And Rights In An Actual Piece Of Geography.
#> 183 System For States To Exchange License Suspension/Violation Between States
#> 184 Does A State Adopt An Age Span Provision Into Its Statutory Rape Law Which Effectively Decriminalizes Sexual Activity Between Similar-Aged Teens?
#> 185 Does The State Have A Zero Tolerance Law For Blood Alcohol Levels <0.02 For Individuals Under Age 21?
#> 186 Is Marijuana Possession A Criminal Act?
#> 187 Is It Legal To Use Marijuana For Medical Purposes?
#> 188 Does The State Ban Smoking In Restaurants?
#> 189 Does The State Ban Smoking In All Workplaces?
#> 190 Workplace Drug Testing
#> 191 Allowed To Enroll In College While In High School
#> 192 Establishes Drunk Driving Threshold Of .08 Blood Alcohol Level
#> 193 .08 Per Se Penalty For Dui
#> 194 Establishes Power Of Attorney For Medical Care And Finances
#> 195 Provide For A Minimum Level Of Duty Toward Persons In An Unconscious State
#> 196 State Reform For Driving Intoxication Limits
#> 197 In-Person Early Voting
#> 198 Does The State Have An Earned Income Tax Credit?
#> 199 Strategic Planning For Economic Development
#> 200 Strategic Planning For Education
#> 201 Does The State Ban Corporal Punishment In Schools?
#> 202 In What Year Does The State Require Elementary School Teachers To Hold A Degree?
#> 203 In What Year Does The State Require High School Teachers To Hold A Degree?
#> 204 Educational Television
#> 205 Election Day Registration
#> 206 Electricity Deregulation
#> 207 Establishes An Outcomes-Based, Technology-Neutral Framework For Providing Online Legal Material With The Same Level Of Trustworthiness Traditionally Provided By Publication In A Law Book
#> 208 Improve The Fairness And Professionalism Associated With Electronic Recordings.
#> 209 Establishes The Legal Equivalence Of Electronic Records And Signatures With Paper Writings And Manually-Signed Signatures
#> 210 Requires Availability Of Emergency Contraception
#> 211 Mutual Assistance Between States In Emergency Or Disaster Situations
#> 212 Establishes System For Licensing Emergency Personnel
#> 213 Allows State Governments During A Declared Emergency To Give Reciprocity To Other States Licenses On Emergency Service Providers
#> 214 Regulating Condemnation Of Property On Behalf Of Private And Public Entities
#> 215 State Eminent Scholar Policy
#> 216 Provides A Simplified Way Of Enforcing Judgments Entered In Another State,
#> 217 Engineer Licensing
#> 218 English Only Law
#> 219 State Enterprise Zones
#> 220 Allow Conversion Of One Kind Of Business Organization To Another, Or The Merger Of Two Or More Business Organizations Into One Organization
#> 221 Strategic Planning For Environmental Protection
#> 222 Does The State Have An Air Pollution Control Act (Pre-Clean Air Act)?
#> 223 Does The State Require A Deposit On Bottles Paid By The Consumer And Refunded When The Consumer Recycles?
#> 224 Does The State Adopt California'S Car Emissions Standards (Which Are More Stringent Than The Federal Level)?
#> 225 Does The State Have A Recycling Program For Electronic Waste?
#> 226 Does The State Have A Binding Cap On Greenhouse Gas Emissions In The Utility Sector?
#> 227 Does The State Have A Public Benefit Fund For Renewable Energy And Energy Efficiency?
#> 228 Does The State Have Its Own Version Of The Federal National Environmental Policy Act?
#> 229 Provides Clear Rules For A Perpetual Real Estate Interest An Environmental Covenant To Regulate The Use Of Brownfields When Real Estate Is Transferred From One Owner To Another.
#> 230 Equal Rights Amendment Pertaining To Women'S Rights
#> 231 Equal Pay For Females
#> 232 Regulated Apportionment Of Assets Of The Deceased
#> 233 Is There A State Estate Tax?
#> 234 State E-Waste Disposal Programs
#> 235 Bankruptcy Law
#> 236 Agricultural Experiment Stations
#> 237 Provides Two Separate Procedures To Be Used For The Retrieval Of Wanted Persons Found In Another State
#> 238 Permits The Use Of Facsimile Signatures By Public Officials Whose Signature To A Public Security Or Instrument Of Payment Is Required Or Permitted.
#> 239 Fair Employment Laws
#> 240 Fair Trade Laws
#> 241 Require Delegates In Electoral College To Vote In Accordance With Voters
#> 242 Family Cap Exemptions For Welfare
#> 243 Limit On Family Campaign Contributions
#> 244 Allows Federal Tax Liens To Be Filed In An Office Designated By The Law Of The State In Which The Property Subject To The Lien Is Situated.
#> 245 Disposal Of Fetal Remains Regulation
#> 246 Bans Abortion After Fetal Heartbeat
#> 247 Establishing Fetal Personhood
#> 248 Requires Anesthetic For Fetus For Abortions
#> 249 Fair Housing- Private Housing
#> 250 Extends Power Of Fiduciary
#> 251 Extends Power Of Fiduciary- Revision Of 2014 Law Only Passed By Delaware
#> 252 Film Tax Credits
#> 253 Creation Of Fish Agency
#> 254 Codifies Roe V Wade In State
#> 255 Open Records/Freedom Of Information Acts
#> 256 Provides The Rules For Fair Conversions Of Foreign Money Judgments Into Dollar Amounts
#> 257 Provides For Enforcement Of A State Court Judgment In Another State To Implement The Full Faith And Credit Clause Of The U.S. Constitution
#> 258 Makes It Clear That A Judgment Entitled To Full Faith And Credit Under The U.S. Constitution Is Not Enforceable Under This Act
#> 259 Creation Of Forest Agency
#> 260 Classifies A Category Of Transfers As Fraudulent To Creditors And Provides Creditors With A Remedy For Such Transfers
#> 261 Requiring Front Passengers To Wear Seatbelts
#> 262 Requires Contraceptive Equality
#> 263 Bans Public Funding To Be Used For Abortion
#> 264 Bans Public Funding For Abortion, But With More Exceptions
#> 265 Releasing Inmates Daily For Purpose Of Employment
#> 266 Allows Prisoners To Work Outside Of Prison During Incarceration
#> 267 Public Employees Can'T Provide Information On Abortion
#> 268 Does The State Allow Casinos?
#> 269 Does The State Have A Lottery?
#> 270 Pharmacists Are Not Allow To Deny Prescriptions
#> 271 State Gas Tax
#> 272 Does State Ban Employment Discrimination On The Basis Of Gender Identity?
#> 273 Laws Establishing Anti-Lgbt Hate Crimes
#> 274 Constitutional Amendment Banning Gay Marriage
#> 275 Does The State Ban Sodomy?
#> 276 Does The State Allow For Civil Unions?
#> 277 Are Lgbt Hate Crimes Explicitly Illegal?
#> 278 Does The State Allow Gay Marriages?
#> 279 Graduated Driver'S Licensing Program
#> 280 Does The State Ban Hiring Discrimination On The Basis Of Gender (Post-1964)
#> 281 Has The State Ratified The Equal Rights Amendment?
#> 282 Does The State Ban Hiring Discrimination On The Basis Of Gender?
#> 283 Does The State Have A Law Providing For Equal Pay For Women Working In The Same Job?
#> 284 Do States Have A No-Fault Divorce Policy?
#> 285 Has The State Passed A State-Level Equivalent To The Equal Rights Amendment?
#> 286 Executive Order On Gender Discrimination
#> 287 Law On Gender Discrimination
#> 288 Good Samaritan Protection For Reporting Overdose
#> 289 Restructuring Of State Higher Education Governance Structures
#> 290 Procedures On The Appointment And Guardians Of Conservators Of Minors
#> 291 Does The State Require Background Checks For Private Handgun Sales?
#> 292 Does The State Require Background Checks For Private Rifle Sales?
#> 293 Is There A Waiting Period After Handgun Sales?
#> 294 Is There A Waiting Period After Assault Weapon Sales?
#> 295 Does The State Have Any License Requirements For Manufacturers Or Dealers?
#> 296 Does The State Have Open Carry Laws?
#> 297 Does The State Ban ``Saturday Night Special\\" Handguns?
#> 298 Harassment Crime
#> 299 Does The State Explicitly Have Hate Crime Legislation?
#> 300 Laws Establishing Hate Crimes Against Minorities
#> 301 Laws Banning Hazing
#> 302 Strategic Planning For Health Services
#> 303 Restores Authority For Health Care Regulation To The States
#> 304 Provides Right To Refuse Treatment
#> 305 Provides For Confidentiality Of A Patient'S Health Care Records
#> 306 Motorcyclists 17 And Under Required To Wear A Helmet
#> 307 Those With Instructional Permits Or License Less Than Year Old Required To Wear Helmet On Motorcycle
#> 308 Helmet Required For Motorcycle Passenger
#> 309 Guaranteed Issue Of Health Insurance
#> 310 Guaranteed Renewal Of Health Insurance
#> 311 Health Insurance Portability
#> 312 Health Insurance Preexisting Conditions Limits
#> 313 Health Maintenance Organization Model Act (First)
#> 314 Health Maintenance Organization Model Act (Second)
#> 315 Laws Impose Liability Against Hosts Of Underage Drinking Events
#> 316 High School Exit Exams
#> 317 Human Trafficking Law
#> 318 Human Relations Commission
#> 319 Highway Agency
#> 320 Individual Development Accounts
#> 321 Ban On Intact Dilation And Extraction
#> 322 Identity Theft Regulation
#> 323 Regulating Imitation Prescription Drugs
#> 324 Is English The State'S Official Language?
#> 325 Does The State Allow In-State Tuition For Illegal Immigrants?
#> 326 State Income Tax
#> 327 State Allows Tribal Gaming
#> 328 Individual Limit On Campaigns
#> 329 Requiring Notification To Individuals At Risk
#> 330 Newborn Hearing Screening
#> 331 Requires Informed Consent Procedure For Abortions
#> 332 Requirement That Insurance Provide Fertility Services
#> 333 Provides A Uniform Statutory Approach To Privacy And Freedom Of Information.
#> 334 State Adoption Of The Initiative
#> 335 Bans Abortion Coverage In State Exchanges
#> 336 Reforms The Process Defendants Use To Claim Insanity, Including The Standard Or Burden Of Proof
#> 337 Making Insanity Plea More Difficult
#> 338 Provides Cognitive Test For Determining Insanity
#> 339 Ban On Insurance Coverage By Private Insurance For Abortions
#> 340 Ban On Insurance Coverage By Public Insurance For Abortions
#> 341 Instate Tuition For Undocumented Immigrants
#> 342 Instate Tuition For Veterans
#> 343 Address Purchase Of Life Insurance Trusts
#> 344 Requires Waivers For Abortion Coverage
#> 345 Integrated Bar
#> 346 Allows States To Acquire Jurisdiction Over Claimants To Property Located Within Compact States
#> 347 Internet Registry Of Sex Offenders
#> 348 Regulates Movement And Supervision Of Offenders Under Community Supervision
#> 349 Establishes Procedure For Out Of State Supervision Of Juveniles And Procedures For Their Return
#> 350 Provides Mutual Military Aid Between States In An Emergency
#> 351 Assures Continued Provision Of All Benefits Of An Adoption Subsidy Agreement, Regardless Of State Of Residence Of The Child
#> 352 Creates Commission To Promote Exporting American Grain
#> 353 Helps Military Children Transfer Academic Credits Between Institutions
#> 354 Creates Commission To Create Uniform Rules And Regulations Governing The Design And Construction Of Industrialized/Modular Buildings
#> 355 Establishes Uniform Requirements For Licensing Of Participants In Live Racing With Pari-Mutuel Wagering
#> 356 Commitment For Better Treatment And Care For Mentally Disordered Offenders
#> 357 Assists With Placement Of Children Across State Lines
#> 358 Compact On Reducing Waste Of Oil And Gas
#> 359 Compact On Improving Management And Treatment In Corrections System
#> 360 Provides Simple Procedures For Courts In One State To Issue Subpoenas For Out-Of-State Depositions
#> 361 Compact For Assistance In Event Of Earthquake
#> 362 Gives Law Enforcement And The Courts A Means Of Either Warning Off Victimizers By Weight Of The Law Or By Getting Them Into Custody Before Actual Harm Occurs.
#> 363 Regulates Interstate Child Support
#> 364 Regulates Interstate Child Support (2001 Version)
#> 365 Regulates Interstate Child Support (2008 Version)
#> 366 Compact For Coordinating Forest Fire Resources In Event Of A Fire
#> 367 Compact For Administering High Speed Rail Commuter Network
#> 368 Compact Regulating Insurance Policies
#> 369 Managing Insolvent Interstate Insurance Companies
#> 370 Agreement For Using Libraries On An Interstate Basis
#> 371 Agreement For Licensing Of Physicians Across State Lines
#> 372 Agreement For Cross State Regulation Of Mining And Conservation
#> 373 Agreement For Aid Across States In Event Of Disaster/Emergency
#> 374 Agreement To Coordinate A Rail Passenger Network
#> 375 Provides Instruction On Transfer Of Property At Death
#> 376 Junior College- Enabling Legislation
#> 377 Juvenile Court Law
#> 378 Juveniles Supervision Compact
#> 379 Required Registration Of Beer Keg Purchases
#> 380 Kinship Care Program
#> 381 Does The State Ban Age Discrimination?
#> 382 Does The State Have Collective Bargaining Rights For State Government Employees?
#> 383 Does The State Have Collective Bargaining Rights For Local Teachers?
#> 384 Does The State Have A Minimum Wage For Men?
#> 385 Is The State'S Minimum Wage Above The Federal Level?
#> 386 Does The State Have Prevailing Wage Laws?
#> 387 Does The State Have A Labor Relations Act Patterned After Taft-Hartley?
#> 388 Does The State Have A Labor Relations Act Patterned After Wagner Act?
#> 389 Does The State Have Right To Work Legislation?
#> 390 Does The State Have Reasonable Accommodation Laws For Disabled People?
#> 391 Does The State Ban Discrimination Against Disabled People?
#> 392 Does The State Have A Temporary Disability Insurance Program?
#> 393 Does The State Have A Pension System?
#> 394 Labor Agencies
#> 395 Regulation On Promotional Sale Of Land
#> 396 Provide A Consistent Framework For Notarial Acts
#> 397 Legislative Pre-Planning Agencies
#> 398 Legislative Research Agencies
#> 399 Lemon Laws
#> 400 Library Extension System
#> 401 Allow Pro-Choice Plates
#> 402 Allow Pro-Life Plates
#> 403 State License Required For Accountants
#> 404 Addresses The Cooperative Form Of Business.
#> 405 Permits The Formation Of Limited Liability Companies,
#> 406 Permits The Formation Of Limited Liability Companies,
#> 407 Permits The Formation Of Limited Liability Companies,
#> 408 Regulates Business Partnerships In The Us
#> 409 Regulates Business Partnerships In The Us
#> 410 Lottery
#> 411 Voter Registration By Mail
#> 412 Mandatory Access To Paper Registry Of Sex Offenders
#> 413 Provides Guidance On Investment Decisions And Endowment Expenditures
#> 414 Provide Legal Rules That Permit Public Employee Retirement Systems To Invest Their Funds In The Most Productive And Secure Manner.
#> 415 Mandated Coverage Of Clinical Trials
#> 416 Establishing Rules For The Prompt Disposition Of Detainers
#> 417 Mandatory Notification About Sex Offenders
#> 418 Allows The Family To Be Viewed As Single Economic Unit
#> 419 It Minimizes The Number Of Prohibited Marriages, And Includes The Concept Of No-Fault Divorce.
#> 420 Media Notification About Sex Offenders
#> 421 Establishes A Privilege Of Confidentiality For Mediators And Participants.
#> 422 Does The State Have A Medicaid Program?
#> 423 Restrictions On Medical Abortions
#> 424 Symbolic Medical Marijuana Policy
#> 425 Requires Information Be Made Public Regarding Registered Sex Offenders
#> 426 States Amend Death Penalty To Prohibit Execution Of Mentally Handicapped
#> 427 Merit System
#> 428 Merit Based Aid Program
#> 429 Merit System For States (Post 1993)
#> 430 Restrictions On Otc Medications With Methamphetamine Precursors
#> 431 Migratory Labor Committee
#> 432 Simplifies Absentee Voting For Military And Civilians Abroad
#> 433 Minimum Fine For First Dui
#> 434 Provides That A Student Loan Is Enforceable Against Debtor
#> 435 Minimum Wage Law
#> 436 Judges Chosen By Non-Partisan Committee
#> 437 Minimum Legal Drinking Age
#> 438 Mental Health Standards Committee
#> 439 Establishing Rules For The Prompt Disposition Of Detainers
#> 440 Covers Creation, Management, And Termination Of Time Shares
#> 441 Provides Procedures For Promulgating Administrative Regulations
#> 442 Provides A Framework For Dealing With Money Laundering Issues Unique To No Depository Providers Of Financial Services
#> 443 Mothers' Aid Cash Assistance Program
#> 444 Mothers' Pensions
#> 445 Voter Registration With Driver'S License Renewal
#> 446 Mandates Prison Time For First Dui
#> 447 Medical Savings Accounts
#> 448 Encourages Banks And Credit Unions To Offer Pod (Pay On Death) And Agency (Convenience) Account Forms For Use By Persons Desiring Some, But Not All, Incidents Of Joint Accounts.
#> 449 Agreement For Establishing Vehicle Size And Loads Across States
#> 450 Establishes Multistate Lottery
#> 451 System So That Interstate Buses Can Avoid Being Required To Register In Multiple States
#> 452 Creates System For Taxing Multistate Taxpayers
#> 453 Teaching Of Native American History Made Mandatory Or Optional
#> 454 Organizes Electronic Information Sharing System Among Federal Government And The States To Exchange Criminal Records
#> 455 Agreement For Coordinating State National Guards For Assistance
#> 456 Agreement To Coordinate State National Guards For Counter-Drug Activities
#> 457 Agreement To Award All Electoral College Votes To Winner Of National Popular Vote
#> 458 Strategic Planning For Natural Resources
#> 459 Near Total Abortion Ban
#> 460 Neighbor Notification About Sex Offenders
#> 461 Billing Credit For Renewable Energy Users Who Add Electricity To The Grid
#> 462 Implement Onsite Renewable Energy Generation
#> 463 Coverage For Newborn Screening For Critical Congenital Heart Disease
#> 464 Allows Owner To Designate Beneficiary To Automatically Receive Property At Death
#> 465 Agreement For Equal Treatment Of Nonresidents In Traffic Violations
#> 466 State Policy To Refuse To Comply With 2005 Federal Real Id Act
#> 467 Simplifies Rules For Notarization
#> 468 Normal Schools- Enabling Act
#> 469 Nursing Licensing
#> 470 Interstate Coordination On Nurse Licensing
#> 471 Special Agent/Office For Women'S Health
#> 472 Old Age Assistance (Social Security)
#> 473 Prohibits Open Alcoholic Containers In Vehicles
#> 474 Opt-In Notification About Sex Offenders
#> 475 State Pain Management Program
#> 476 Regulates Paper Terrorism- Term Referring To Using Legal Documents Without Factual Basis To Harass, Particularly Against Government Officials
#> 477 Requires Parental Consent For Abortions
#> 478 Requires Counseling For Minors Seeking Abortions
#> 479 Law Of Determination Of Parentage, Paternity Actions And Child Support.
#> 480 Law Of Determination Of Parentage, Paternity Actions And Child Support.
#> 481 Park System
#> 482 Requires Parental Notification For Abortions
#> 483 Parolees And Probationers Supervision
#> 484 Helps Preserve Family Wealth Passed To The Next Generation In The Form Of Real Property.
#> 485 Helps Make Regulation Of Business Partnerships Uniform Between States
#> 486 Helps Make Regulation Of Business Partnerships Uniform Between States
#> 487 Performance Based Funding
#> 488 Prescription Drug Monitoring
#> 489 States Adopting Performance Based Funding For Higher Education
#> 490 Pays Damage Awards Over Periods Of Time
#> 491 Residential Tax Credits For Renewable Energy Systems
#> 492 Residential Tax Credits For Efficiency
#> 493 Interstate Pest Control Compact
#> 494 Pharmacist Licensing
#> 495 Facilitating Interstate Licensing Of Physical Therapists
#> 496 Require A Licensed Physician For Abortion
#> 497 Comprehensive Provisions For Creating, Managing, And Terminating Planned Community Developments.
#> 498 Planning And Development Agencies
#> 499 Allows For Convicted To Petition For Relief If Rights Violated
#> 500 Post-Conviction Dna Motions
#> 501 Ban On Post-Viability Abortion
#> 502 Provides For Power Of Attorney
#> 503 Regulate Power Of Appointment For Estate Planning
#> 504 Pre-20 Week Abortion Ban
#> 505 Length License Suspension For First Dui, Pre-Conviction
#> 506 Allows For Agreement Between Spouses Made Before Marriage To Be Effective Upon Marriage
#> 507 Standardizes Martial And Pre-Martial Agreements
#> 508 State Sponsored Prepaid Tuition Plans
#> 509 State Adoption Of Prepaid Tuition
#> 510 Requirement For Pharmaceuticals To Provide State With Prescription Drug Information
#> 511 Laws Aiming To Prevent Human Trafficking
#> 512 Police May Pull Over Drivers For Driving Without Seatbelt
#> 513 Police May Pull Over Drivers For Minors Riding Without Seatbelt
#> 514 Primary Seat Belt Laws
#> 515 Provide Procedures For Trustees Administering Trusts And Personal Representatives Administering Estates In Allocating Assets To Principal And Income,
#> 516 Provide Procedures For Trustees Administering Trusts And Personal Representatives Administering Estates In Allocating Assets To Principal And Income,
#> 517 Provide Procedures For Trustees Administering Trusts And Personal Representatives Administering Estates In Allocating Assets To Principal And Income,
#> 518 Mandatory Days Spent In Prison For First Dui
#> 519 Parking Agencies- Enabling Act For Cities
#> 520 Probation Law
#> 521 Governs Inheritance And Decedents' Estates
#> 522 Governs Inheritance And Decedents' Estates
#> 523 Articulate And Confirm The Role Of The State Attorney General In Protecting Charitable Assets.
#> 524 Reflects A \\"Modern Portfolio Theory\\" And \\"Total Return\\" Approach To The Exercise Of Fiduciary Investment Discretion
#> 525 Requires Prudent And Diverse Investments Of State Funds
#> 526 Public Access To Sex Offender Registration
#> 527 Collect Public Benefit Fund
#> 528 Allowance Of Breastfeeding In Public
#> 529 Allowance Of Breastfeeding In Public
#> 530 Ban On Public Employees Conducting Abortions
#> 531 Ban On Using Public Facilities For Abortions
#> 532 Public Housing- Enabling Legislation
#> 533 State Credits For Research And Development
#> 534 Does The State Ban Discrimination In Public Housing?
#> 535 Does The State Have Urban Renewal Areas?
#> 536 Does The State Have An Agency To Prosecute Cases On Public Accommodation?
#> 537 Does The State Have Fair Employment Laws
#> 538 Does The State Have Fair Housing Laws?
#> 539 Does The State Have Fair Housing Laws For Owners
#> 540 Racial Profiling Regulation
#> 541 Taking Steps To Address Racial Profiling By Police
#> 542 Protection Of Victims Of Sex Crimes During Criminal Proceedings
#> 543 Provides Comprehensive Legislation Governing The Critical Phases Of Cooperative Development: Creation, Financing, Management, And Termination.
#> 544 Give County Clerks And Recorders The Legal Authority To Prepare For Electronic Recording Of Real Property Instruments.
#> 545 Allows For Designated Beneficiary To Automatically Receive Property Transfer At Owner'S Death
#> 546 Real Estate Brokers- Licensing
#> 547 Facilitates Interstate Cooperation On Collecting Child Support
#> 548 Reciprocal Support Law
#> 549 Enforces Canadian Domestic Violence Orders
#> 550 Allows Substituting Documents Created In Other Jurisdictions
#> 551 Physicians Can Refuse To Do An Abortion
#> 552 Provides States With One Registration Procedure For Registered Agents
#> 553 Establishes Definitions Of Racketeering Activity To Help Prosecute Organized Crime And Criminal Activity
#> 554 Does The State Require That People Use Helmets While On Bicycles?
#> 555 Does A State Have A Law Authorizing Or Requiring Growth-Management Planning?
#> 556 Does The State Have A Law Guaranteeing Grandparents' Visitation Rights?
#> 557 Does The State Have A Law Permitting Individuals Control Over The Use Of Heroic Medical Treatment In The Event Of A Terminal Illness?
#> 558 Does The State Have A Shield Law Protecting Them From Revealing Their Sources?
#> 559 Does The State Have A Forced Sterilization Program?
#> 560 Are Hate Crimes Explicitly Illegal In The State?
#> 561 Enables Cities To Adopt A Home Rule Charter That Acts As The City'S Basic Governing Document Over Local Issues.
#> 562 Does The State Provide Direct Aid For Urban Housing?
#> 563 Does The State Require Drivers To Obtain Car Insurance?
#> 564 Does The State Require The Usage Of Seat Belts (Either Primary Or Secondary Enforcement)?
#> 565 Does The State Require The Usage Of Helmets By People On Motorcycles?
#> 566 Are There Limits On Damages For Pain And Suffering In Lawsuits?
#> 567 Does The State Allow Physician-Assisted Suicide?
#> 568 Does State Prohibit The Passage Of Rent Control Laws In Its Cities Or Municipalities?
#> 569 Did The State Pass The Religious Freedom Restoration Act?
#> 570 Does The State Have Anti-Sedition Laws?
#> 571 State Commission With Rate-Setting Authority Over Electricity Utilities
#> 572 Did The State Pass A Law Protecting Consumers Who Purchase Automobiles Which Fail After Repeated Repairs?
#> 573 Does The State Constitution Restrict State Debt Issuance?
#> 574 Setting Renewable Energy Standards
#> 575 Repeal Sodomy Law
#> 576 Require Any Id
#> 577 Codify Best Practices In Leasing Housing
#> 578 Regulating Mortgage Holder Rights
#> 579 Smoking Ban In All Restaurants In State
#> 580 Restructuring Electricity System
#> 581 Retail Theft Law
#> 582 Retainers Agreement
#> 583 Retirement System For State Employees
#> 584 Strategic Planning For Revenue
#> 585 Includes Gift Cards And Other Technological Property In Previous Unclaimed Property Law
#> 586 Program To Combat Organized Crime
#> 587 Right To Work Legislation
#> 588 Right To Die Legislation
#> 589 Rights For Terminally Ill Legislation
#> 590 Aid For Roads And Highways
#> 591 If Roe Overturned, Abortion Immediately Illegal
#> 592 Renewable Portfolio Standard
#> 593 Simplify And Codify The Rules Pertaining To What May Be Introduced In Evidence In Any Civil Or Criminal Trial In A Court Of Law.
#> 594 Seasonal Agricultural Labor Standards
#> 595 Regulation Of Salvi Divinorum
#> 596 College Tuition Saving Plans
#> 597 School Choice
#> 598 Dependent Coverage Expansion Insurance For Young Adults
#> 599 Regulates Offer And Sale Of Securities
#> 600 Regulates Offer And Sale Of Securities
#> 601 Regulates Offer And Sale Of Securities
#> 602 Maintaining Segregated Educational Systems For Out Of State Study
#> 603 Access To Sex Offender Registries
#> 604 Prohibits Abortion On Sex-Discrimination
#> 605 Protections Against Compelling Reporters To Disclose Sources In Court
#> 606 Larger Penalties For Shoplifting
#> 607 Regulates Passage Of Assets If Multiple People Die Within Short Period
#> 608 Regulates Passage Of Assets If Multiple People Die Within Short Period
#> 609 Slaughter House Inspection
#> 610 Statewide Smoking Ban
#> 611 Sexual Orientation Discrimination Executive Order
#> 612 Soil Conservation Districts- Enabling Legislation
#> 613 Sexual Orientation Discrimination Law
#> 614 Keeps Criminals From Profiting From Publicity Of Crimes
#> 615 Prohibition Of Convicts Profiting From Telling Their Story; Establishes Trust So Such Profits Can Go To Victims
#> 616 Superintendent Of Public Instruction
#> 617 Statewide Transfer Agreement (Higher Ed)
#> 618 Stalking Definition And Penalty
#> 619 Does The State Have Anti-Stalking Legislation
#> 620 Post-2005 Expansion Of Stand Your Ground Laws
#> 621 State Police Or Highway Patrol
#> 622 Statutory Rape Age Law
#> 623 Protects Children Born Through Assisted Conception
#> 624 Defines Rights Of Convicted People
#> 625 Regulates Power Of Attorney
#> 626 Regulated Duration Of Ownership Of Property
#> 627 Governs The Use Of Statutory Trusts As A Mode Of Business Organization.
#> 628 Helps Simplify Wills
#> 629 State Planning Board
#> 630 Banning Alcohol Sales On Sundays
#> 631 Encourages Research On Ru486
#> 632 Eliminates Duplicative And Inconsistent Tax And Regulatory Requirements Among The States
#> 633 Laws Establishing State Exchanges For Used Needles
#> 634 Tax Commission
#> 635 Teacher Certification- Elementary
#> 636 Teacher Certification- Secondary
#> 637 First Piece Of Legislation Regulating Telegraphs
#> 638 Tax And Expenditure Limits (Spending Limits)
#> 639 Legislative Term Limits
#> 640 Laws Against Money Laundering Or Funding Terrorist Organizations
#> 641 Modernizes Trust And Estate Law
#> 642 Increase In Sentencing After More Than Two Felonies
#> 643 Time Limits On Welfare Benefits
#> 644 Provides Non-Probate Transfer Of Specifically Registered Investment Securities From Owner To Named Beneficiaries At Owner'S Death.
#> 645 Codify The Common Law With Proper Clarification Of Rights And Remedies In Relation To A Trade Secret
#> 646 Overcomes Procedural Obstacles That Prevent A Pollution Victim In One State Or Province From Seeking Enforceable Remedies In The State Or Province Where The Pollution Originated.
#> 647 Allows A Minor To Receive Gifts, Such As Money, Patents, Royalties, Real Estate And Fine Art, Without The Aid Of A Guardian Or Trustee.
#> 648 Strategic Planning For Transportation
#> 649 Targeted Regulation Of Abortion Providers (Trap) Laws
#> 650 Requires Hospital Like Facilities Or Other Physical Plant Requirements At Abortion Clinics
#> 651 Requires Additional Licensure For Abortion Providers
#> 652 Provides A Comprehensive Model For Codifying The Law On Trusts.
#> 653 Non Judicial Method For Modifying Irrevocable Trust
#> 654 Codifies Trust Laws
#> 655 State Passes Truth-In-Sentencing Law Before 1997
#> 656 States Allowing For Less Central Control Over Tuition Setting
#> 657 State Establishment Of Postsecondary Student Record Data System
#> 658 Provides Definitions And General Provisions Which, In The Absence Of Conflicting Provisions,
#> 659 Provides States With A Legal Framework For Any Transaction, Regardless Of Form, That Creates A Lease.
#> 660 Attempts To Standardize Negotiable Instruments In States
#> 661 Attempts To Standardize Negotiable Instruments In States
#> 662 Amendments Provide That Article 4A Does Apply To A Remittance Transfer That Is Not An Electronic Funds Transfer Under The Federal Electronic Funds Transfer Act
#> 663 Includes Electronic Transfers In Regulation Of Fund Transfers
#> 664 Regulates Payment System
#> 665 Repeal Legislation Of Ucc Article 6 (Bulk Sales Law)
#> 666 Revise Ucc Article 6 (Bulk Sales Law)
#> 667 Regulates Payment System
#> 668 Regulates Storage And Shipment Of Tangible Goods
#> 669 Governs Transfer Of Investment Securities
#> 670 Revises Commercial Codes, Specifically Transfers Of Securities
#> 671 Regulating Secure Transactions In Personal Property
#> 672 Provides The Rules Governing Any Transaction (Other Than A Finance Lease) That Couples A Debt With A Creditor
#> 673 Provides A Statutory Framework That Governs Secured Transactions--Transactions Which Involve The Granting Of Credit Secured By Personal Property.
#> 674 Requirements Surrounding Ultrasounds And Abortion
#> 675 Regulates Abandonment Of Property
#> 676 Regulates Abandonment Of Property
#> 677 Conditional Residency For Undocumented Immigrants
#> 678 Provides System For Transferring Intangible Personal Property In Safety Deposit Accounts
#> 679 Governs All Unincorporated Nonprofit Associations That Are Formed Or Operate In A State
#> 680 Governs All Unincorporated Nonprofit Associations That Are Formed Or Operate In A State
#> 681 Limits On Union Campaigning
#> 682 Universal Healthcare Bill
#> 683 Universal Pre-K Education
#> 684 Permit The Use Of Unsworn Declarations Made Under Penalty Of Perjury In State Courts
#> 685 Permit, In State Court Proceedings, Unsworn Declarations Under Penalty Of Perjury To Be Executed By Witnesses Physically Located Outside The United States In Lieu Of Affidavits, Verifications, Or Other Sworn Court Filings.
#> 686 Urban Renewal- Enabling Legislation
#> 687 Utility Regulation Commission
#> 688 Protect The Purchaser Of Real Estate Where There Is A Binding Contract Of Sale
#> 689 Regulates Guardianship Of Incompetent Veterans, And Orphans Of Deceased Veterans
#> 690 Requires Testing To Ascertain Viability Before Abortions
#> 691 Victims' Rights Constitutional Amendment
#> 692 State System For Notifying Victims Of Crime
#> 693 Requiring Victim Notification Of Developments In Case
#> 694 Additional Protection Of Victims
#> 695 Regulating Satisfaction Of Losses Suffered From Victims Of Crime
#> 696 Strengthens Creditor Protections
#> 697 State Voucher Funding For Higher Ed
#> 698 Does The State Require Parental Notification Or Consent Prior To A Minor Obtaining An Abortion? (1=Notification; 2=Consent)
#> 699 Is There A Felony Charge For Animal Cruelty?
#> 700 Has The State Expanded Access To Emergency Contraception?
#> 701 Does The State Permit The Ten Commandments To Be Displayed On Public Property?
#> 702 Does The State Mandate Ten Commandments Be Posted In Public Institutions/Schools?
#> 703 Is A Moment Of Silence Mandatory For Schools?
#> 704 Is A Moment Of Silence Permitted For Schools?
#> 705 Does The State Approve For A Local Tax Credit For Residential Solar Installations?
#> 706 Does The State Have A Tax Credit For Residential Solar Installations?
#> 707 Does The State Have An Endangered Species Act?
#> 708 Does The State Ban Discrimination In Public Accommodations On The Basis Of Gender Id?
#> 709 Does The State Ban Employment Discrimination On The Basis Of Sexual Orientation?
#> 710 Does The State Ban Discrimination In Public Accommodations On The Basis Of Sexual Orientation?
#> 711 Does The State Require Background Checks For Buying Handguns From Dealers?
#> 712 Does The State Require Background Checks For Buying Rifles From Dealers?
#> 713 Does The State Have Registration Requirements For Rifles?
#> 714 Does The State Have A Waiting Period For All Gun Purchases?
#> 715 Does The State Ban Racial Discrimination In Public Accommodations?
#> 716 Require Waiting Period For Abortions
#> 717 Creation Of Welfare Agency
#> 718 Provides A Means Through Which States Can Participate In A Reciprocal Program To Enforce Wildlife Citations
#> 719 International Convention Calling For All Countries And States To Adopt A Uniform Formality For Executing Wills.
#> 720 Prevents Tampering With Or Intimidating Witness Testimony
#> 721 Ban Abortions After 20 Weeks
#> 722 Banning Possession Of A Wmd Or Hoax Wmd
#> 723 Workmen'S' Compensation
#> 724 Smoking Ban In All Indoor Workplaces
#> 725 Written Request Requirement For Sex Offender Registry
#> 726 Zero Tolerance For Minors Driving With Any Alcohol In System
#> 727 Law That Establishes Legal Bac Limit Of .02 For Underage Drivers
#> 728 Law That Establishes Legal Bac For Underage Drivers Lower Than Adult Drivers
#> majortopic
#> 1 Law and Crime
#> 2 Law and Crime
#> 3 Law and Crime
#> 4 Civil Rights
#> 5 Civil Rights
#> 6 Civil Rights
#> 7 Civil Rights
#> 8 Civil Rights
#> 9 Civil Rights
#> 10 Civil Rights
#> 11 Labor
#> 12 Social Welfare
#> 13 Social Welfare
#> 14 Domestic Commerce
#> 15 Health
#> 16 Law and Crime
#> 17 Law and Crime
#> 18 Law and Crime
#> 19 Health
#> 20 Social Welfare
#> 21 Social Welfare
#> 22 Law and Crime
#> 23 Education
#> 24 Social Welfare
#> 25 Environment
#> 26 Health
#> 27 Law and Crime
#> 28 Health
#> 29 Transportation
#> 30 Law and Crime
#> 31 Health
#> 32 Health
#> 33 Health
#> 34 Law and Crime
#> 35 Law and Crime
#> 36 Civil Rights
#> 37 Civil Rights
#> 38 Law and Crime
#> 39 Law and Crime
#> 40 Civil Rights
#> 41 Law and Crime
#> 42 Law and Crime
#> 43 Law and Crime
#> 44 Civil Rights
#> 45 Civil Rights
#> 46 Law and Crime
#> 47 Government Operations
#> 48 Law and Crime
#> 49 Law and Crime
#> 50 Labor
#> 51 Domestic Commerce
#> 52 Education
#> 53 Domestic Commerce
#> 54 Education
#> 55 Education
#> 56 Law and Crime
#> 57 Law and Crime
#> 58 Government Operations
#> 59 Health
#> 60 Transportation
#> 61 Transportation
#> 62 Health
#> 63 Health
#> 64 Health
#> 65 Labor
#> 66 Transportation
#> 67 Energy
#> 68 Social Welfare
#> 69 Health
#> 70 Health
#> 71 Law and Crime
#> 72 Environment
#> 73 Health
#> 74 Health
#> 75 Civil Rights
#> 76 Law and Crime
#> 77 Macroeconomics
#> 78 Housing
#> 79 Transportation
#> 80 Domestic Commerce
#> 81 Government Operations
#> 82 Education
#> 83 Domestic Commerce
#> 84 Law and Crime
#> 85 Education
#> 86 Transportation
#> 87 Law and Crime
#> 88 Law and Crime
#> 89 Education
#> 90 Law and Crime
#> 91 Law and Crime
#> 92 Law and Crime
#> 93 Law and Crime
#> 94 Law and Crime
#> 95 Labor
#> 96 Transportation
#> 97 Labor
#> 98 Health
#> 99 Housing
#> 100 Domestic Commerce
#> 101 Law and Crime
#> 102 Law and Crime
#> 103 Civil Rights
#> 104 Housing
#> 105 Health
#> 106 Law and Crime
#> 107 Law and Crime
#> 108 Education
#> 109 Social Welfare
#> 110 Domestic Commerce
#> 111 Housing
#> 112 Housing
#> 113 Housing
#> 114 Housing
#> 115 Macroeconomics
#> 116 Education
#> 117 Government Operations
#> 118 Law and Crime
#> 119 Health
#> 120 Law and Crime
#> 121 Transportation
#> 122 Law and Crime
#> 123 Education
#> 124 Technology
#> 125 Law and Crime
#> 126 Law and Crime
#> 127 Transportation
#> 128 Law and Crime
#> 129 Housing
#> 130 Law and Crime
#> 131 Public Lands
#> 132 Energy
#> 133 Civil Rights
#> 134 Domestic Commerce
#> 135 Domestic Commerce
#> 136 Domestic Commerce
#> 137 Health
#> 138 Civil Rights
#> 139 Law and Crime
#> 140 Macroeconomics
#> 141 Energy
#> 142 Government Operations
#> 143 Law and Crime
#> 144 Law and Crime
#> 145 Law and Crime
#> 146 Domestic Commerce
#> 147 Law and Crime
#> 148 Law and Crime
#> 149 Law and Crime
#> 150 Law and Crime
#> 151 Law and Crime
#> 152 Public Lands
#> 153 Education
#> 154 Law and Crime
#> 155 Domestic Commerce
#> 156 Domestic Commerce
#> 157 Domestic Commerce
#> 158 Law and Crime
#> 159 Labor
#> 160 Law and Crime
#> 161 Health
#> 162 Education
#> 163 Education
#> 164 Education
#> 165 Education
#> 166 Education
#> 167 Education
#> 168 Education
#> 169 Education
#> 170 Education
#> 171 Education
#> 172 Government Operations
#> 173 Government Operations
#> 174 Macroeconomics
#> 175 Macroeconomics
#> 176 Law and Crime
#> 177 Law and Crime
#> 178 Law and Crime
#> 179 Macroeconomics
#> 180 Law and Crime
#> 181 Law and Crime
#> 182 Housing
#> 183 Transportation
#> 184 Law and Crime
#> 185 Transportation
#> 186 Law and Crime
#> 187 Health
#> 188 Health
#> 189 Health
#> 190 Civil Rights
#> 191 Education
#> 192 Transportation
#> 193 Transportation
#> 194 Health
#> 195 Health
#> 196 Transportation
#> 197 Civil Rights
#> 198 Macroeconomics
#> 199 Macroeconomics
#> 200 Education
#> 201 Education
#> 202 Education
#> 203 Education
#> 204 Education
#> 205 Government Operations
#> 206 Energy
#> 207 Law and Crime
#> 208 Law and Crime
#> 209 Law and Crime
#> 210 Civil Rights
#> 211 Domestic Commerce
#> 212 Health
#> 213 Domestic Commerce
#> 214 Housing
#> 215 Education
#> 216 Law and Crime
#> 217 Labor
#> 218 Civil Rights
#> 219 Housing
#> 220 Domestic Commerce
#> 221 Environment
#> 222 Environment
#> 223 Environment
#> 224 Environment
#> 225 Environment
#> 226 Environment
#> 227 Energy
#> 228 Environment
#> 229 Environment
#> 230 Civil Rights
#> 231 Civil Rights
#> 232 Law and Crime
#> 233 Macroeconomics
#> 234 Environment
#> 235 Domestic Commerce
#> 236 Agriculture
#> 237 Law and Crime
#> 238 Government Operations
#> 239 Labor
#> 240 Foreign Trade
#> 241 Government Operations
#> 242 Social Welfare
#> 243 Government Operations
#> 244 Macroeconomics
#> 245 Health
#> 246 Civil Rights
#> 247 Civil Rights
#> 248 Civil Rights
#> 249 Housing
#> 250 Domestic Commerce
#> 251 Domestic Commerce
#> 252 Macroeconomics
#> 253 Agriculture
#> 254 Civil Rights
#> 255 Civil Rights
#> 256 Foreign Trade
#> 257 International Affairs
#> 258 International Affairs
#> 259 Environment
#> 260 Domestic Commerce
#> 261 Transportation
#> 262 Civil Rights
#> 263 Civil Rights
#> 264 Civil Rights
#> 265 Law and Crime
#> 266 Law and Crime
#> 267 Civil Rights
#> 268 Domestic Commerce
#> 269 Domestic Commerce
#> 270 Civil Rights
#> 271 Transportation
#> 272 Civil Rights
#> 273 Civil Rights
#> 274 Civil Rights
#> 275 Civil Rights
#> 276 Civil Rights
#> 277 Civil Rights
#> 278 Civil Rights
#> 279 Transportation
#> 280 Civil Rights
#> 281 Civil Rights
#> 282 Civil Rights
#> 283 Civil Rights
#> 284 Law and Crime
#> 285 Civil Rights
#> 286 Civil Rights
#> 287 Civil Rights
#> 288 Law and Crime
#> 289 Education
#> 290 Law and Crime
#> 291 Law and Crime
#> 292 Law and Crime
#> 293 Law and Crime
#> 294 Law and Crime
#> 295 Law and Crime
#> 296 Law and Crime
#> 297 Law and Crime
#> 298 Law and Crime
#> 299 Law and Crime
#> 300 Law and Crime
#> 301 Law and Crime
#> 302 Health
#> 303 Health
#> 304 Health
#> 305 Civil Rights
#> 306 Transportation
#> 307 Transportation
#> 308 Transportation
#> 309 Health
#> 310 Health
#> 311 Health
#> 312 Health
#> 313 Health
#> 314 Health
#> 315 Law and Crime
#> 316 Education
#> 317 Law and Crime
#> 318 Civil Rights
#> 319 Transportation
#> 320 Domestic Commerce
#> 321 Civil Rights
#> 322 Law and Crime
#> 323 Health
#> 324 Civil Rights
#> 325 Immigration
#> 326 Macroeconomics
#> 327 Public Lands
#> 328 Government Operations
#> 329 Health
#> 330 Health
#> 331 Health
#> 332 Health
#> 333 Civil Rights
#> 334 Government Operations
#> 335 Civil Rights
#> 336 Law and Crime
#> 337 Law and Crime
#> 338 Law and Crime
#> 339 Civil Rights
#> 340 Civil Rights
#> 341 Education
#> 342 Education
#> 343 Domestic Commerce
#> 344 Civil Rights
#> 345 Labor
#> 346 Law and Crime
#> 347 Law and Crime
#> 348 Law and Crime
#> 349 Law and Crime
#> 350 Defense
#> 351 Law and Crime
#> 352 Agriculture
#> 353 Education
#> 354 Housing
#> 355 Domestic Commerce
#> 356 Civil Rights
#> 357 Law and Crime
#> 358 Energy
#> 359 Law and Crime
#> 360 Law and Crime
#> 361 Domestic Commerce
#> 362 Law and Crime
#> 363 Law and Crime
#> 364 Law and Crime
#> 365 Law and Crime
#> 366 Public Lands
#> 367 Transportation
#> 368 Domestic Commerce
#> 369 Domestic Commerce
#> 370 Education
#> 371 Health
#> 372 Public Lands
#> 373 Domestic Commerce
#> 374 Transportation
#> 375 Law and Crime
#> 376 Education
#> 377 Law and Crime
#> 378 Law and Crime
#> 379 Domestic Commerce
#> 380 Law and Crime
#> 381 Civil Rights
#> 382 Labor
#> 383 Labor
#> 384 Labor
#> 385 Labor
#> 386 Labor
#> 387 Labor
#> 388 Labor
#> 389 Labor
#> 390 Civil Rights
#> 391 Civil Rights
#> 392 Labor
#> 393 Labor
#> 394 Labor
#> 395 Domestic Commerce
#> 396 Law and Crime
#> 397 Government Operations
#> 398 Government Operations
#> 399 Transportation
#> 400 Education
#> 401 Civil Rights
#> 402 Civil Rights
#> 403 Labor
#> 404 Domestic Commerce
#> 405 Domestic Commerce
#> 406 Domestic Commerce
#> 407 Domestic Commerce
#> 408 Domestic Commerce
#> 409 Domestic Commerce
#> 410 Domestic Commerce
#> 411 Civil Rights
#> 412 Law and Crime
#> 413 Domestic Commerce
#> 414 Government Operations
#> 415 Health
#> 416 Law and Crime
#> 417 Law and Crime
#> 418 Law and Crime
#> 419 Law and Crime
#> 420 Law and Crime
#> 421 Law and Crime
#> 422 Social Welfare
#> 423 Civil Rights
#> 424 Health
#> 425 Law and Crime
#> 426 Law and Crime
#> 427 Education
#> 428 Education
#> 429 Education
#> 430 Health
#> 431 Labor
#> 432 Civil Rights
#> 433 Law and Crime
#> 434 Education
#> 435 Labor
#> 436 Government Operations
#> 437 Health
#> 438 Health
#> 439 Law and Crime
#> 440 Housing
#> 441 Government Operations
#> 442 Law and Crime
#> 443 Social Welfare
#> 444 Social Welfare
#> 445 Civil Rights
#> 446 Law and Crime
#> 447 Health
#> 448 Domestic Commerce
#> 449 Transportation
#> 450 Government Operations
#> 451 Transportation
#> 452 Macroeconomics
#> 453 Education
#> 454 Law and Crime
#> 455 Defense
#> 456 Law and Crime
#> 457 Government Operations
#> 458 Public Lands
#> 459 Civil Rights
#> 460 Law and Crime
#> 461 Energy
#> 462 Energy
#> 463 Health
#> 464 Law and Crime
#> 465 Law and Crime
#> 466 Government Operations
#> 467 Law and Crime
#> 468 Education
#> 469 Health
#> 470 Health
#> 471 Health
#> 472 Social Welfare
#> 473 Transportation
#> 474 Law and Crime
#> 475 Health
#> 476 Law and Crime
#> 477 Civil Rights
#> 478 Civil Rights
#> 479 Law and Crime
#> 480 Law and Crime
#> 481 Public Lands
#> 482 Civil Rights
#> 483 Law and Crime
#> 484 Law and Crime
#> 485 Domestic Commerce
#> 486 Domestic Commerce
#> 487 Education
#> 488 Health
#> 489 Education
#> 490 Law and Crime
#> 491 Energy
#> 492 Energy
#> 493 Macroeconomics
#> 494 Health
#> 495 Health
#> 496 Civil Rights
#> 497 Housing
#> 498 Housing
#> 499 Law and Crime
#> 500 Law and Crime
#> 501 Civil Rights
#> 502 Law and Crime
#> 503 Law and Crime
#> 504 Civil Rights
#> 505 Law and Crime
#> 506 Law and Crime
#> 507 Law and Crime
#> 508 Education
#> 509 Education
#> 510 Health
#> 511 Law and Crime
#> 512 Transportation
#> 513 Transportation
#> 514 Transportation
#> 515 Law and Crime
#> 516 Law and Crime
#> 517 Law and Crime
#> 518 Law and Crime
#> 519 Transportation
#> 520 Law and Crime
#> 521 Domestic Commerce
#> 522 Domestic Commerce
#> 523 Macroeconomics
#> 524 Domestic Commerce
#> 525 Government Operations
#> 526 Law and Crime
#> 527 Environment
#> 528 Civil Rights
#> 529 Civil Rights
#> 530 Civil Rights
#> 531 Civil Rights
#> 532 Housing
#> 533 Macroeconomics
#> 534 Civil Rights
#> 535 Housing
#> 536 Civil Rights
#> 537 Civil Rights
#> 538 Civil Rights
#> 539 Civil Rights
#> 540 Civil Rights
#> 541 Civil Rights
#> 542 Law and Crime
#> 543 Housing
#> 544 Government Operations
#> 545 Domestic Commerce
#> 546 Labor
#> 547 Law and Crime
#> 548 Government Operations
#> 549 Law and Crime
#> 550 Law and Crime
#> 551 Civil Rights
#> 552 Government Operations
#> 553 Law and Crime
#> 554 Transportation
#> 555 Housing
#> 556 Law and Crime
#> 557 Health
#> 558 Law and Crime
#> 559 Health
#> 560 Civil Rights
#> 561 Government Operations
#> 562 Housing
#> 563 Transportation
#> 564 Transportation
#> 565 Transportation
#> 566 Law and Crime
#> 567 Health
#> 568 Housing
#> 569 Civil Rights
#> 570 Civil Rights
#> 571 Energy
#> 572 Transportation
#> 573 Macroeconomics
#> 574 Energy
#> 575 Civil Rights
#> 576 Civil Rights
#> 577 Housing
#> 578 Domestic Commerce
#> 579 Health
#> 580 Energy
#> 581 Law and Crime
#> 582 Labor
#> 583 Government Operations
#> 584 Macroeconomics
#> 585 Civil Rights
#> 586 Law and Crime
#> 587 Labor
#> 588 Civil Rights
#> 589 Civil Rights
#> 590 Transportation
#> 591 Civil Rights
#> 592 Energy
#> 593 Law and Crime
#> 594 Labor
#> 595 Health
#> 596 Education
#> 597 Education
#> 598 Health
#> 599 Domestic Commerce
#> 600 Domestic Commerce
#> 601 Domestic Commerce
#> 602 Education
#> 603 Law and Crime
#> 604 Civil Rights
#> 605 Law and Crime
#> 606 Law and Crime
#> 607 Domestic Commerce
#> 608 Domestic Commerce
#> 609 Agriculture
#> 610 Health
#> 611 Civil Rights
#> 612 Environment
#> 613 Civil Rights
#> 614 Law and Crime
#> 615 Law and Crime
#> 616 Education
#> 617 Education
#> 618 Law and Crime
#> 619 Law and Crime
#> 620 Law and Crime
#> 621 Transportation
#> 622 Law and Crime
#> 623 Law and Crime
#> 624 Law and Crime
#> 625 Law and Crime
#> 626 Law and Crime
#> 627 Domestic Commerce
#> 628 Law and Crime
#> 629 Government Operations
#> 630 Domestic Commerce
#> 631 Health
#> 632 Macroeconomics
#> 633 Health
#> 634 Macroeconomics
#> 635 Education
#> 636 Education
#> 637 Technology
#> 638 Macroeconomics
#> 639 Government Operations
#> 640 Law and Crime
#> 641 Domestic Commerce
#> 642 Law and Crime
#> 643 Social Welfare
#> 644 Domestic Commerce
#> 645 Domestic Commerce
#> 646 Environment
#> 647 Law and Crime
#> 648 Transportation
#> 649 Civil Rights
#> 650 Civil Rights
#> 651 Civil Rights
#> 652 Law and Crime
#> 653 Domestic Commerce
#> 654 Law and Crime
#> 655 Law and Crime
#> 656 Education
#> 657 Education
#> 658 Domestic Commerce
#> 659 Domestic Commerce
#> 660 Domestic Commerce
#> 661 Domestic Commerce
#> 662 Domestic Commerce
#> 663 Domestic Commerce
#> 664 Domestic Commerce
#> 665 Domestic Commerce
#> 666 Domestic Commerce
#> 667 Domestic Commerce
#> 668 Domestic Commerce
#> 669 Domestic Commerce
#> 670 Domestic Commerce
#> 671 Domestic Commerce
#> 672 Domestic Commerce
#> 673 Domestic Commerce
#> 674 Civil Rights
#> 675 Domestic Commerce
#> 676 Domestic Commerce
#> 677 Immigration
#> 678 Civil Rights
#> 679 Domestic Commerce
#> 680 Domestic Commerce
#> 681 Government Operations
#> 682 Health
#> 683 Education
#> 684 Law and Crime
#> 685 Law and Crime
#> 686 Housing
#> 687 Energy
#> 688 Domestic Commerce
#> 689 Law and Crime
#> 690 Civil Rights
#> 691 Law and Crime
#> 692 Law and Crime
#> 693 Law and Crime
#> 694 Law and Crime
#> 695 Law and Crime
#> 696 Domestic Commerce
#> 697 Education
#> 698 Civil Rights
#> 699 Law and Crime
#> 700 Health
#> 701 Civil Rights
#> 702 Civil Rights
#> 703 Civil Rights
#> 704 Civil Rights
#> 705 Energy
#> 706 Energy
#> 707 Environment
#> 708 Civil Rights
#> 709 Civil Rights
#> 710 Civil Rights
#> 711 Law and Crime
#> 712 Law and Crime
#> 713 Law and Crime
#> 714 Law and Crime
#> 715 Civil Rights
#> 716 Law and Crime
#> 717 Social Welfare
#> 718 Environment
#> 719 Law and Crime
#> 720 Law and Crime
#> 721 Civil Rights
#> 722 Defense
#> 723 Labor
#> 724 Health
#> 725 Law and Crime
#> 726 Transportation
#> 727 Transportation
#> 728 Transportation
The column policy gives the policy identifier that connects to the policies data. source is the original data source for this policy, first_year the first year any state adopted this policy, last_year the last adoption event in the data. adopt_count is the number of states that adopted the policy, description gives more information and majortopic is a topic coding into the policy agenda project topic categories.
Number of policies:
nrow(policies_metadata)
#> [1] 728
Number of adoption events:
nrow(policies)
#> [1] 17835
Some example policies:
unique(policies$policy)[100:104]
#> [1] "civil defense and disaster compact"
#> [2] "civinjaut"
#> [3] "class actions"
#> [4] "clinic_access"
#> [5] "cogrowman"
#> civil defense and disaster compact
#> civinjaut
#> class actions
#> clinic_access
#> cogrowman
Not all the policy abbreviations are understandable. So let’s check the metadata for more information:
library(dplyr)
filter(policies_metadata, policy %in% unique(policy)[100:104]) %>%
select(-source)
Most functionality of the NetworkInference package is based on the cascades data format. So before starting with the analysis we have to transform our data to such an object.
policy_cascades <- as_cascade_long(policies, cascade_node_name = 'statenam',
event_time = 'adopt_year',
cascade_id = 'policy')
In this case we used the function as_cascade_long. If your data is in wide format you can convert it using the function as_cascade_wide.
The cascade class contains the same data as the policies data.frame, just in a different format.
print(class(policy_cascades))
#> [1] "cascade" "list"
length(policy_cascades)
#> [1] 3
print(names(policy_cascades))
#> [1] "cascade_nodes" "cascade_times" "node_names"
The cascade object contains the casacde information in three elements: * cascade_nodes: A list of vectors that contain the node names (states) in order of adoption. * cascade_times: A list of vectors that contain the adoption times for each state in cascade_nodes. * node_names: A list of all nodes in the system.
Let’s select a subset of two cascades so we can take a closer look at the cascade object. There are a few convenience functions to manipulate the cascades (but you can also manipulate the data before converting it to the cascade format).
selected_policies <- subset_cascade(cascade = policy_cascades,
selection = c('clinic_access', 'cogrowman'))
print(selected_policies)
#> $cascade_nodes
#> $cascade_nodes$clinic_access
#> [1] "Oregon" "Wisconsin" "Kansas" "Maryland"
#> [5] "California" "Nevada" "Colorado" "Connecticut"
#> [9] "Massachusetts" "Minnesota" "North Carolina" "Washington"
#> [13] "Maine" "Michigan" "New York" "Montana"
#>
#> $cascade_nodes$cogrowman
#> [1] "Hawaii" "Vermont" "Oregon" "Florida"
#> [5] "New Jersey" "Rhode Island" "Washington" "Maryland"
#> [9] "Arizona" "Tennessee"
#>
#>
#> $cascade_times
#> $cascade_times$clinic_access
#> [1] 1973 1985 1988 1989 1990 1991 1993 1993 1993 1993 1993 1993 1995 1995
#> [15] 1999 2005
#>
#> $cascade_times$cogrowman
#> [1] 1961 1970 1973 1985 1986 1988 1990 1992 1998 1998
#>
#>
#> $node_names
#> [1] "Alaska" "Delaware" "Hawaii" "Iowa"
#> [5] "Maine" "Michigan" "Minnesota" "New Mexico"
#> [9] "New York" "North Dakota" "Oregon" "Rhode Island"
#> [13] "Vermont" "West Virginia" "Wisconsin" "Alabama"
#> [17] "Indiana" "Kentucky" "Louisiana" "Massachusetts"
#> [21] "Missouri" "North Carolina" "Pennsylvania" "South Carolina"
#> [25] "Tennessee" "Wyoming" "Arizona" "Arkansas"
#> [29] "Connecticut" "Georgia" "Idaho" "Kansas"
#> [33] "Maryland" "Nebraska" "Ohio" "South Dakota"
#> [37] "Texas" "Utah" "Virginia" "California"
#> [41] "Colorado" "Florida" "Mississippi" "Washington"
#> [45] "Oklahoma" "Illinois" "Montana" "New Jersey"
#> [49] "Nevada" "New Hampshire"
#>
#> attr(,"class")
#> [1] "cascade" "list"
time_constrained <- subset_cascade_time(cascade = selected_policies,
start_time = 1990, end_time = 2000)
print(time_constrained[1:2])
#> $cascade_times
#> $cascade_times$clinic_access
#> [1] 1990 1991 1993 1993 1993 1993 1993 1993 1995 1995 1999
#>
#> $cascade_times$cogrowman
#> [1] 1990 1992 1998 1998
#>
#>
#> $cascade_nodes
#> $cascade_nodes$clinic_access
#> [1] "California" "Nevada" "Colorado" "Connecticut"
#> [5] "Massachusetts" "Minnesota" "North Carolina" "Washington"
#> [9] "Maine" "Michigan" "New York"
#>
#> $cascade_nodes$cogrowman
#> [1] "Washington" "Maryland" "Arizona" "Tennessee"
less_nodes <- drop_nodes(cascades = time_constrained,
nodes = c('Maryland', 'Washington'))
print(less_nodes[1:2])
#> $cascade_nodes
#> $cascade_nodes$clinic_access
#> [1] "California" "Nevada" "Colorado" "Connecticut"
#> [5] "Massachusetts" "Minnesota" "North Carolina" "Maine"
#> [9] "Michigan" "New York"
#>
#> $cascade_nodes$cogrowman
#> [1] "Arizona" "Tennessee"
#>
#>
#> $cascade_times
#> $cascade_times$clinic_access
#> [1] 1990 1991 1993 1993 1993 1993 1993 1995 1995 1999
#>
#> $cascade_times$cogrowman
#> [1] 1998 1998
It’s always good practice to visually inspect the data before working with it. The NetworkInference package provides functionality to visualize the cascade data.
The function summary.cascades() provides quick summary statistics on the cascade data:
summary(policy_cascades)
#> # cascades: 728
#> # nodes: 50
#> # nodes in cascades: 50
#> # possible edges: 2450
#>
#> Summary statistics for cascade length and number of ties:
#> length ties
#> Min. 1.00000 0.00000
#> 1st Qu. 11.00000 4.00000
#> Median 23.00000 11.00000
#> Mean 24.49863 14.53571
#> 3rd Qu. 40.00000 23.00000
#> Max. 50.00000 48.00000
The first four lines provide the number of cascades, the number of nodes in the system, the number of nodes involved in cascades (there might be states that we don’t have diffusion data on, but we still want them represented in the dataset) and the possible number of edges in a potential diffusion network (a diffusion edge between nodes u and v only makes sense if there is at least one cascade in which u experiences an event before v). In this example there are 187 policies and 50 states. Each state is involved in at least one policy cascade and a fully connected diffusion network would have 2450 edges.
It also provides summary statistics on the distribution of the cascade lengths (number of nodes involved in each cascade) and the number of ties in the cascades (two nodes experiencing the same event at the same time). For our example, we can see that the ‘smallest’ policy was adopted by 10 states and the ‘largest’ by all 50 states. From the tie summaries we see that there is at least one policy that was adopted by 45 states in the same year.
The plot() method allows to plot cascades with varying degrees of detail. The argument label_nodes (TRUE/FALSE) provides node labels which require more space but provide more detail. The argument selection allows to pick a subset of cascades to visualize in case there are too many to plot. If label_nodes is set to FALSE each event is depicted by a dot, which allows to visualize more cascades simultaneously.
Let’s first look at the visualization with labels. Here we plot two cascades, selected by their name: #```{r, fig.align=‘center’, fig.width=5, fig.height=3}
selection <- c('guncontrol_assaultweapon_ba', 'guncontrol_licenses_dealer')
plot(policy_cascades, label_nodes = TRUE, selection = selection)
We can also plot more cascades with less detail:
selection <- c('waiting', 'threestrikes', 'unionlimits', 'smokeban',
'paperterror', 'miglab', 'methpre', 'lott', 'lemon', 'idtheft',
'harass', 'hatecrime', 'equalpay')
plot(policy_cascades, label_nodes = FALSE, selection = selection)
This produces a ‘violin plot’ for each cascade with the single diffusion events overplotted as dots. As we already saw in the previous visualization, the policy data has a lot of ties (i.e. many states adopted a policy in the same year) which is indicated by the areas of higher density in the violin plot.
The netinf algorithm is implemented in the netinf() function. The netinf inferrs edges based on a diffusion model. That is we assume a parametric model for the diffusion times between edges. Currently three different diffusion models are implemented: The exponential distribution, the rayleigh distribution and the log-normal distribution. The model can be chosen with the trans_mod argument (default is the exponential distribution).
In the original implementation the number of edges to infer had to be fixed and chosen by the researcher. If you want to run netinf in this classic way you can do so by specifiying all parameters and the number of edges:
results <- netinf(policy_cascades, trans_mod = "exponential", n_edges = 100,
params = 0.5, quiet = TRUE)
print(tbl_df(results))
#> # A tibble: 100 x 4
#> origin_node destination_node improvement p_value
#> <chr> <chr> <dbl> <dbl>
#> 1 California Oregon 3835. 0
#> 2 California Colorado 3442. 0
#> 3 California Maryland 3441. 0
#> 4 California Washington 3382. 0
#> 5 California New Mexico 3376. 0
#> 6 California Illinois 3373. 0
#> 7 California North Carolina 3356. 0
#> 8 California Maine 3342. 0
#> 9 California Nevada 3308. 0
#> 10 California Florida 3287. 0
#> # ... with 90 more rows
The exponential model has only one parameter (lambda or the rate). If there are more parameters the details section in the documentation of the netinf function (?netinf) has more detail on how to specify parameters and on the specific parametrization used by the implementation.
n_edges specifies how many edges should be inferred. See @gomez2010inferring and @desmarais2015persistent for guidance on choosing this parameter if running netinf in classic mode. If the number of edges is specified manually, it has to be lower than the maximum number of possible edges. An edge u->v is only possible if in at least one cascade u experiences an event before v. This means, that the maximum number of edges depends on the data. The function count_possible_edges() allows us to compute the maximum number of edges in advance:
npe <- count_possible_edges(policy_cascades)
npe
#> [1] 2450
With version 1.2.0 netinf can be run without manually specifying the number of edges or the parameters of the diffusion model.
After each iteration of the netinf algorithm, we check if the edge added significant improvement to the network. This is done via a vuong style test. Given the likelihood score for each cascade conditional on the network inferred so far, we penalize the network with one addional edge and test if the increase in likelihood accross all cascades is significant. The user still has to specify a p-value cut-off. If the p-value of an edge is larger than the specified cut-off the algorithm stops inferring more edges. The cut-off is set via the p_value_cutoff argument.
results <- netinf(policy_cascades, trans_mod = "exponential",
p_value_cutoff = 0.1, params = 0.5, quiet = TRUE)
print(results)
#> origin_node destination_node improvement p_value
#> 1 California Oregon 3834.87534 0.000000e+00
#> 2 California Colorado 3442.38856 0.000000e+00
#> 3 California Maryland 3441.05397 0.000000e+00
#> 4 California Washington 3382.39045 0.000000e+00
#> 5 California New Mexico 3376.38290 0.000000e+00
#> 6 California Illinois 3372.55586 0.000000e+00
#> 7 California North Carolina 3356.38856 0.000000e+00
#> 8 California Maine 3342.22316 0.000000e+00
#> 9 California Nevada 3307.55586 0.000000e+00
#> 10 California Florida 3286.88667 0.000000e+00
#> 11 California Montana 3260.55775 0.000000e+00
#> 12 California Ohio 3252.72882 0.000000e+00
#> 13 California Texas 3242.05397 0.000000e+00
#> 14 Oregon Kentucky 3230.72882 0.000000e+00
#> 15 California Indiana 3217.55964 0.000000e+00
#> 16 California Arizona 3207.05397 0.000000e+00
#> 17 California New Jersey 3206.22882 0.000000e+00
#> 18 California Delaware 3128.22882 0.000000e+00
#> 19 California Kansas 3115.89612 0.000000e+00
#> 20 California Nebraska 3066.89612 0.000000e+00
#> 21 California Missouri 3021.89801 0.000000e+00
#> 22 California Vermont 3013.56719 0.000000e+00
#> 23 Minnesota Virginia 3010.57097 0.000000e+00
#> 24 Minnesota Iowa 3000.24015 0.000000e+00
#> 25 California Georgia 2999.56341 0.000000e+00
#> 26 California Minnesota 2991.06908 0.000000e+00
#> 27 California Rhode Island 2978.90178 0.000000e+00
#> 28 Illinois Pennsylvania 2958.23827 0.000000e+00
#> 29 Connecticut Michigan 2957.90367 0.000000e+00
#> 30 California Tennessee 2943.56719 0.000000e+00
#> 31 California North Dakota 2937.06908 0.000000e+00
#> 32 California South Carolina 2936.23260 0.000000e+00
#> 33 Florida Mississippi 2925.57475 0.000000e+00
#> 34 California Arkansas 2920.39990 0.000000e+00
#> 35 California Utah 2907.40178 0.000000e+00
#> 36 California New Hampshire 2898.90556 0.000000e+00
#> 37 California South Dakota 2826.74015 0.000000e+00
#> 38 California Oklahoma 2788.56719 0.000000e+00
#> 39 California Louisiana 2779.73638 0.000000e+00
#> 40 California Connecticut 2750.07664 0.000000e+00
#> 41 Virginia Alabama 2700.08041 0.000000e+00
#> 42 Washington Wyoming 2686.41123 0.000000e+00
#> 43 California Wisconsin 2668.74582 0.000000e+00
#> 44 California New York 2635.08041 0.000000e+00
#> 45 California Idaho 2603.24393 0.000000e+00
#> 46 California Massachusetts 2409.25526 0.000000e+00
#> 47 Connecticut California 2284.76093 0.000000e+00
#> 48 California West Virginia 2271.25526 0.000000e+00
#> 49 California Hawaii 2200.26282 0.000000e+00
#> 50 California Alaska 2164.26282 0.000000e+00
#> 51 Massachusetts Connecticut 1482.78926 0.000000e+00
#> 52 Connecticut Ohio 1435.29304 0.000000e+00
#> 53 New York Pennsylvania 1427.79115 0.000000e+00
#> 54 New York New Jersey 1416.29115 0.000000e+00
#> 55 Montana Arizona 1415.96411 0.000000e+00
#> 56 Florida South Carolina 1320.13330 0.000000e+00
#> 57 Illinois California 1308.79493 0.000000e+00
#> 58 Massachusetts Rhode Island 1305.79493 0.000000e+00
#> 59 Connecticut Minnesota 1304.96222 0.000000e+00
#> 60 Florida Georgia 1298.13330 0.000000e+00
#> 61 Florida Louisiana 1292.46600 0.000000e+00
#> 62 Minnesota Nebraska 1292.29871 0.000000e+00
#> 63 Connecticut Vermont 1281.46600 0.000000e+00
#> 64 Oregon New Mexico 1280.96600 0.000000e+00
#> 65 Minnesota Washington 1276.79682 0.000000e+00
#> 66 Florida Texas 1275.96600 0.000000e+00
#> 67 Rhode Island Maine 1275.29682 0.000000e+00
#> 68 Tennessee Arkansas 1270.63330 0.000000e+00
#> 69 Louisiana Indiana 1262.63141 0.000000e+00
#> 70 New York Oregon 1252.63330 0.000000e+00
#> 71 Minnesota Oklahoma 1239.80059 0.000000e+00
#> 72 Idaho Utah 1228.96411 0.000000e+00
#> 73 Connecticut Colorado 1225.79871 0.000000e+00
#> 74 California Iowa 1222.96222 1.110223e-16
#> 75 California Michigan 1220.46222 0.000000e+00
#> 76 Colorado Virginia 1219.13141 4.440892e-16
#> 77 Louisiana Kansas 1205.80059 0.000000e+00
#> 78 New York Illinois 1189.13141 0.000000e+00
#> 79 New York Maryland 1186.13141 0.000000e+00
#> 80 Idaho Alabama 1144.96600 8.881784e-16
#> 81 Illinois Massachusetts 1132.96789 2.442491e-15
#> 82 Illinois Florida 1132.46978 0.000000e+00
#> 83 Massachusetts New York 1125.96789 3.441691e-15
#> 84 Minnesota Delaware 1112.63708 1.110223e-15
#> 85 Florida North Carolina 1109.63708 5.551115e-16
#> 86 Minnesota North Dakota 1103.80437 2.220446e-15
#> 87 Colorado Idaho 1103.30437 7.771561e-16
#> 88 Florida Missouri 1087.80437 1.332268e-15
#> 89 Rhode Island Wisconsin 1081.13519 7.549517e-15
#> 90 Washington South Dakota 1080.47167 2.331468e-15
#> 91 Minnesota Mississippi 1075.96789 9.992007e-15
#> 92 Florida Tennessee 1069.13708 1.110223e-15
#> 93 Rhode Island Kentucky 1064.96789 1.998401e-15
#> 94 Oregon Montana 1064.63708 1.554312e-15
#> 95 Kansas Wyoming 1022.63708 1.487699e-14
#> 96 Connecticut New Hampshire 1005.97356 1.354472e-14
#> 97 Florida Nevada 974.80815 2.109424e-14
#> 98 Michigan West Virginia 934.97545 7.482903e-14
#> 99 Washington Alaska 921.47545 6.379341e-13
#> 100 Connecticut Washington 881.14274 1.124767e-12
#> 101 Oregon Minnesota 840.64463 4.548917e-12
#> 102 New Jersey California 834.30815 1.578826e-11
#> 103 Connecticut New Jersey 833.14652 3.822498e-12
#> 104 Connecticut Massachusetts 830.47733 7.424839e-12
#> 105 Colorado Maryland 827.81193 5.357048e-12
#> 106 Nevada Hawaii 822.14274 1.798695e-11
#> 107 New Mexico Connecticut 813.81004 3.807399e-12
#> 108 Texas New Mexico 776.14652 1.244405e-11
#> 109 Oregon Maine 769.64463 3.393885e-11
#> 110 Minnesota Arkansas 768.64652 2.981804e-11
#> 111 Florida Oklahoma 764.31570 1.025091e-11
#> 112 Florida Utah 761.31193 1.515787e-11
#> 113 Rhode Island Indiana 760.47922 1.367817e-11
#> 114 Illinois Michigan 746.98111 1.180789e-11
#> 115 Iowa Wisconsin 735.81382 1.040095e-10
#> 116 Florida Arizona 731.14652 1.157036e-10
#> 117 Colorado Louisiana 727.48111 8.701806e-11
#> 118 Utah North Dakota 726.31382 1.888302e-10
#> 119 Oregon Vermont 722.48111 7.465262e-11
#> 120 Minnesota Colorado 721.31382 9.378831e-11
#> 121 Washington Illinois 717.64841 3.629363e-11
#> 122 Oregon Florida 713.48111 2.768452e-11
#> 123 Washington Pennsylvania 712.31382 1.031131e-10
#> 124 North Dakota South Carolina 711.31382 4.367817e-11
#> 125 Idaho Texas 709.31570 1.206351e-10
#> 126 Washington Kansas 698.31570 3.940610e-10
#> 127 Texas Kentucky 691.15030 1.082440e-10
#> 128 California Virginia 690.81382 5.535825e-10
#> 129 North Dakota Idaho 690.31382 1.491216e-10
#> 130 Minnesota Nevada 685.81570 4.772814e-10
#> 131 Massachusetts North Carolina 683.48111 2.507177e-10
#> 132 Minnesota Oregon 677.15030 1.389417e-10
#> 133 Connecticut Delaware 672.98300 4.542100e-10
#> 134 Louisiana Rhode Island 665.81570 4.326159e-10
#> 135 Michigan Montana 658.81759 4.324594e-10
#> 136 Florida Ohio 653.48300 4.634915e-10
#> 137 Maryland New Hampshire 644.98300 1.017502e-09
#> 138 Illinois Minnesota 632.48300 3.793825e-09
#> 139 Connecticut New York 618.81759 1.435751e-09
#> 140 Illinois Iowa 608.65219 1.263996e-09
#> 141 New York Connecticut 602.15219 5.178859e-09
#> 142 Minnesota New Jersey 598.31759 3.094353e-09
#> 143 Colorado Missouri 597.65219 2.668460e-09
#> 144 Louisiana Georgia 591.48300 9.216969e-10
#> 145 Florida Alabama 584.65219 8.780842e-09
#> 146 Utah Michigan 584.31759 8.495718e-09
#> 147 Massachusetts Hawaii 574.15030 2.821461e-08
#> 148 Nebraska Mississippi 573.48489 8.297101e-09
#> 149 Illinois Nebraska 567.31948 2.538099e-09
#> 150 Utah Tennessee 558.81948 5.944176e-09
#> 151 Rhode Island Wyoming 558.48489 1.422736e-08
#> 152 Florida South Dakota 555.65219 1.603857e-08
#> 153 Colorado West Virginia 544.48678 3.467350e-09
#> 154 Texas Arkansas 541.65596 8.128134e-09
#> 155 Rhode Island New Mexico 535.65407 1.040621e-08
#> 156 Texas Virginia 526.48678 1.434067e-08
#> 157 Indiana Illinois 525.15219 5.466899e-08
#> 158 New York Massachusetts 525.15219 7.802398e-08
#> 159 Illinois Washington 524.48678 4.027784e-08
#> 160 Connecticut Iowa 521.81948 8.937818e-08
#> 161 Utah North Carolina 520.98678 3.141445e-08
#> 162 Utah Oklahoma 514.98678 2.463683e-08
#> 163 Minnesota California 513.48678 4.255276e-08
#> 164 Illinois Indiana 506.65407 2.648639e-08
#> 165 Connecticut Maine 506.32137 3.898382e-08
#> 166 Rhode Island Idaho 498.48678 1.009301e-07
#> 167 Illinois Delaware 491.32137 6.916649e-08
#> 168 Colorado Wisconsin 490.82137 7.717503e-08
#> 169 Oregon Arizona 488.48867 5.103834e-08
#> 170 Alabama Pennsylvania 485.81948 1.545059e-07
#> 171 Colorado Montana 474.48867 1.001093e-07
#> 172 Minnesota Rhode Island 460.82137 3.916095e-07
#> 173 California Kentucky 459.32137 5.063637e-07
#> 174 New York Ohio 454.81948 2.765171e-07
#> 175 Iowa Texas 447.82137 2.244520e-07
#> 176 Indiana Alabama 447.82137 3.988596e-07
#> 177 Utah Minnesota 443.65407 7.111405e-07
#> 178 Connecticut Tennessee 436.98867 3.815955e-07
#> 179 Connecticut South Carolina 436.98867 4.305369e-07
#> 180 Utah Kansas 433.82137 4.466035e-07
#> 181 Illinois Colorado 431.15596 5.760892e-07
#> 182 Illinois Vermont 427.48867 1.475166e-06
#> 183 Florida Washington 426.32326 4.499598e-07
#> 184 Rhode Island Maryland 425.32326 1.723495e-07
#> 185 Minnesota New Hampshire 421.98867 7.064350e-07
#> 186 Virginia Florida 420.99056 1.680199e-07
#> 187 Massachusetts Wisconsin 420.48867 1.477079e-06
#> 188 North Dakota Ohio 414.98867 6.740286e-07
#> 189 Rhode Island Louisiana 414.32326 7.182975e-07
#> 190 Maryland Utah 413.65785 2.818971e-07
#> 191 Louisiana Virginia 411.98867 1.127000e-06
#> 192 Nevada Alaska 411.32137 7.391741e-07
#> 193 Florida Kentucky 408.65596 2.724184e-06
#> 194 North Dakota South Dakota 407.99056 5.781968e-07
#> 195 Louisiana Montana 405.82326 1.006798e-06
#> 196 Delaware North Dakota 395.65785 1.109300e-06
#> 197 Utah New Mexico 394.32515 6.732735e-07
#> 198 Georgia Mississippi 391.99056 1.361583e-06
#> 199 Indiana Georgia 391.99056 6.579023e-07
#> 200 Colorado Oregon 389.99056 2.097814e-06
#> 201 Wisconsin Massachusetts 388.15596 4.042672e-06
#> 202 Ohio Missouri 386.15596 4.065382e-07
#> 203 Florida Connecticut 376.82515 1.997851e-06
#> 204 North Dakota Nebraska 376.82326 2.723986e-06
#> 205 Kentucky North Carolina 374.82326 2.706899e-06
#> 206 Illinois Oklahoma 374.32326 1.142498e-06
#> 207 Michigan New York 373.49056 1.615304e-06
#> 208 Nevada Florida 361.32515 2.770673e-06
#> 209 Wisconsin Vermont 358.82326 4.475811e-06
#> 210 Florida Colorado 354.82515 3.415013e-06
#> 211 Michigan Nevada 354.15785 2.633415e-06
#> 212 Oklahoma Arkansas 353.15785 4.575063e-06
#> 213 Utah California 348.15596 1.150976e-05
#> 214 North Dakota Iowa 343.99056 1.348448e-05
#> 215 Minnesota West Virginia 340.65785 5.016225e-06
#> 216 Iowa Kansas 339.82515 6.380648e-06
#> 217 Illinois New Jersey 339.49244 6.444994e-06
#> 218 Louisiana Tennessee 337.49244 2.219941e-06
#> 219 Illinois Hawaii 336.82515 6.108995e-06
#> 220 Florida Nebraska 330.82515 1.510759e-05
#> 221 Alabama North Dakota 330.65785 1.055372e-05
#> 222 New York Rhode Island 328.99244 6.292538e-06
#> 223 Oregon Wyoming 327.15974 4.757299e-06
#> 224 Utah Washington 323.82515 1.605365e-05
#> 225 Kentucky Michigan 322.82515 9.211021e-06
#> 226 Colorado Pennsylvania 321.82515 9.602499e-06
#> 227 Oregon Connecticut 320.82515 1.683053e-05
#> 228 Connecticut North Carolina 317.15974 1.226925e-05
#> 229 Minnesota Arizona 317.15974 6.596917e-06
#> 230 Louisiana Illinois 316.32704 3.606901e-06
#> 231 Tennessee South Carolina 316.32704 3.961451e-06
#> 232 New York Florida 315.32515 2.012403e-05
#> 233 New York Michigan 310.99244 1.151089e-05
#> 234 Florida Iowa 309.32515 3.475675e-05
#> 235 Delaware Alabama 304.82515 4.117695e-05
#> 236 Wisconsin California 302.49244 3.811773e-05
#> 237 Arkansas Ohio 302.49244 3.816257e-05
#> 238 Kentucky Texas 302.32704 7.211256e-06
#> 239 Florida Virginia 301.49244 3.560297e-05
#> 240 Kansas Oklahoma 297.15974 2.024436e-05
#> 241 Minnesota Indiana 296.15974 2.573520e-05
#> 242 Maryland Maine 295.99433 9.168909e-06
#> 243 North Dakota Louisiana 295.99244 1.525652e-05
#> 244 Florida Idaho 291.49433 1.860053e-05
#> 245 West Virginia Georgia 289.99433 9.826920e-06
#> 246 Iowa South Dakota 289.99244 3.530804e-05
#> 247 Kentucky Colorado 287.32704 1.543568e-05
#> 248 Kentucky New York 284.49244 3.624989e-05
#> 249 Florida Massachusetts 282.15974 3.770924e-05
#> 250 Colorado Utah 280.82704 3.205482e-05
#> 251 Connecticut Oregon 279.65974 2.539599e-05
#> 252 Rhode Island New Hampshire 278.82704 4.989758e-05
#> 253 Arkansas Maryland 278.65974 5.059814e-05
#> 254 Tennessee Missouri 275.99433 2.029910e-05
#> 255 Colorado Minnesota 270.49433 3.378369e-05
#> 256 Massachusetts Kansas 269.99244 6.144425e-05
#> 257 New Mexico Mississippi 266.65974 6.515902e-05
#> 258 North Dakota New Mexico 264.32704 5.364509e-05
#> 259 Indiana Delaware 264.32704 5.494843e-05
#> 260 Ohio Kentucky 260.65974 6.965499e-05
#> 261 Arizona Oregon 260.65974 1.527167e-04
#> 262 Iowa Nebraska 259.99433 1.906148e-05
#> 263 Arizona Pennsylvania 258.82704 1.407908e-04
#> 264 Massachusetts Montana 258.65974 6.783142e-05
#> 265 Kentucky West Virginia 257.99433 3.107663e-05
#> 266 Kentucky Tennessee 257.49433 1.839768e-05
#> 267 Tennessee Arizona 252.32893 9.354747e-06
#> 268 Michigan Wisconsin 249.99433 6.253877e-05
#> 269 Georgia Indiana 248.66163 5.542721e-05
#> 270 Hawaii Virginia 246.82704 1.827511e-04
#> 271 Michigan Illinois 243.66163 7.949111e-05
#> 272 New Mexico Rhode Island 242.32893 5.824794e-05
#> 273 New Jersey Washington 241.32704 1.490548e-04
#> 274 Idaho Colorado 240.82704 1.587876e-04
#> 275 Hawaii Oregon 237.32704 2.818467e-04
#> 276 Utah Texas 236.82893 4.277317e-05
#> 277 New York North Carolina 233.49433 1.781260e-04
#> 278 Colorado Nevada 232.66163 1.070249e-04
#> 279 Arizona Missouri 232.32893 6.128953e-05
#> 280 New Jersey Illinois 231.99433 1.107169e-04
#> 281 Hawaii Alaska 231.82704 2.266984e-04
#> 282 New Jersey New Mexico 230.99433 2.886704e-04
#> 283 Kentucky Pennsylvania 228.16163 1.797235e-04
#> 284 Arkansas Idaho 227.49433 2.275408e-04
#> 285 South Carolina Arkansas 227.49433 1.332655e-04
#> 286 Washington North Dakota 224.99433 2.154382e-04
#> 287 New York Alabama 224.82704 2.903123e-04
#> 288 New Mexico Hawaii 224.16163 2.038683e-04
#> 289 Pennsylvania Ohio 223.82893 9.143629e-05
#> 290 Maryland Massachusetts 223.66163 1.607397e-04
#> 291 Kansas Iowa 223.49433 3.445359e-04
#> 292 North Dakota Wyoming 222.66163 1.371261e-04
#> 293 Maryland Connecticut 221.66163 1.630285e-04
#> 294 Texas Minnesota 219.16163 3.019280e-04
#> 295 New Mexico Maine 216.32893 1.438392e-04
#> 296 New York Texas 215.49433 2.744651e-04
#> 297 Massachusetts Georgia 214.99433 2.950072e-04
#> 298 Missouri South Carolina 213.32893 8.194415e-05
#> 299 Oklahoma Kansas 213.16163 3.374491e-04
#> 300 Florida New Jersey 212.82893 1.741473e-04
#> 301 Texas California 212.49433 5.471361e-04
#> 302 Wisconsin Maryland 212.32893 1.673234e-04
#> 303 Kansas North Carolina 210.49433 4.324882e-04
#> 304 Nevada Utah 208.49622 1.560758e-04
#> 305 Ohio Arizona 207.16163 3.224626e-04
#> 306 Louisiana Nevada 205.32893 2.788587e-04
#> 307 Kentucky Arkansas 205.16163 3.132480e-04
#> 308 Michigan Rhode Island 205.16163 3.862259e-04
#> 309 Illinois Tennessee 203.16163 2.410756e-04
#> 310 Florida Michigan 202.82893 3.263628e-04
#> 311 Kentucky Louisiana 200.82893 2.122485e-04
#> 312 Oregon Delaware 200.66163 4.105812e-04
#> 313 Indiana Florida 200.32893 3.023329e-04
#> 314 Illinois New York 198.66163 6.244784e-04
#> 315 Colorado Vermont 197.32893 4.290971e-04
#> 316 Alabama Montana 196.16163 3.836839e-04
#> 317 Kentucky South Carolina 194.32893 2.843021e-04
#> 318 Florida New York 193.66163 9.513262e-04
#> 319 Kentucky Missouri 192.82893 2.249297e-04
#> 320 Utah Mississippi 191.66163 6.533793e-04
#> 321 Louisiana South Dakota 190.32893 4.087315e-04
#> 322 Kentucky Idaho 190.16163 9.137344e-04
#> 323 Texas Utah 189.82893 5.559977e-04
#> 324 Minnesota Kansas 189.32893 5.392920e-04
#> 325 New York Nebraska 187.32893 7.734890e-04
#> 326 Utah New Jersey 185.66163 1.512764e-03
#> 327 Maryland Indiana 185.49622 4.533925e-04
#> 328 Maryland Kentucky 183.82893 3.259938e-04
#> 329 Virginia California 181.32893 1.083280e-03
#> 330 New York Hawaii 181.32893 1.150572e-03
#> 331 New York West Virginia 180.82893 1.198749e-03
#> 332 Kansas Alabama 179.82893 6.505317e-04
#> 333 Oregon North Dakota 177.32893 7.103424e-04
#> 334 Minnesota Maine 176.82893 1.022763e-03
#> 335 Iowa Colorado 176.49622 6.513277e-04
#> 336 Indiana West Virginia 176.32893 1.132810e-03
#> 337 Florida Rhode Island 176.32893 1.353779e-03
#> 338 Michigan Louisiana 175.66352 6.285066e-04
#> 339 New York Minnesota 175.66352 9.268599e-04
#> 340 Washington Texas 174.49622 5.931495e-04
#> 341 Illinois Wisconsin 174.49622 7.546154e-04
#> 342 Texas Oklahoma 173.99811 2.056052e-04
#> 343 Idaho Alaska 173.82893 9.911425e-04
#> 344 Utah Virginia 172.99622 8.989558e-04
#> 345 Idaho New Mexico 172.49622 5.475292e-04
#> 346 Utah Indiana 172.32893 1.238583e-03
#> 347 New York Utah 171.82893 1.112249e-03
#> 348 Kentucky Georgia 171.66352 2.600006e-04
#> 349 Kansas Arizona 168.32893 1.090035e-03
#> 350 Arkansas Connecticut 166.82893 1.566711e-03
#> 351 New Mexico New Hampshire 165.99622 7.296074e-04
#> 352 New Jersey Iowa 165.49622 1.400606e-03
#> 353 Louisiana Mississippi 164.49622 8.255741e-04
#> 354 South Carolina Alabama 161.49622 4.316036e-04
#> 355 Texas Massachusetts 160.99622 1.826787e-03
#> 356 Georgia Arkansas 159.99622 1.325994e-03
#> 357 Arizona Utah 159.66352 8.627921e-04
#> 358 Wisconsin Michigan 158.49622 1.377523e-03
#> 359 Connecticut Missouri 157.99622 1.834238e-03
#> 360 Illinois Oregon 157.49622 1.195972e-03
#> 361 California Wyoming 157.32893 2.627488e-03
#> 362 New Mexico Oklahoma 157.16352 9.563455e-04
#> 363 Massachusetts Pennsylvania 155.49622 9.195675e-04
#> 364 Utah Missouri 155.32893 1.369495e-03
#> 365 Wisconsin Ohio 155.16352 8.928078e-04
#> 366 Wisconsin Indiana 154.66352 1.271169e-03
#> 367 Louisiana Maine 152.99622 1.624785e-03
#> 368 Tennessee Florida 150.49622 1.507349e-03
#> 369 Montana Washington 149.99622 2.292091e-03
#> 370 Arizona Wisconsin 149.99622 2.137147e-03
#> 371 Washington Colorado 149.66352 1.077578e-03
#> 372 Nevada Montana 147.49622 2.884948e-03
#> 373 Utah Idaho 145.83081 5.822951e-04
#> 374 Louisiana North Dakota 145.66352 2.158564e-03
#> 375 New York New Hampshire 145.49622 3.405796e-03
#> 376 Utah South Dakota 145.49622 1.741760e-03
#> 377 Virginia Delaware 145.49622 1.784156e-03
#> 378 Iowa Pennsylvania 144.66352 2.272771e-03
#> 379 South Dakota Nebraska 143.99622 1.447009e-03
#> 380 Arkansas California 142.33081 1.496353e-03
#> 381 North Carolina Louisiana 142.33081 3.337466e-04
#> 382 Connecticut Rhode Island 142.16352 1.721366e-03
#> 383 Tennessee Kentucky 141.66352 7.828312e-04
#> 384 Connecticut Hawaii 141.33081 1.857077e-03
#> 385 New Jersey Massachusetts 140.66352 2.996713e-03
#> 386 South Dakota Nevada 140.16352 1.497392e-03
#> 387 Michigan Florida 139.66352 3.113356e-03
#> 388 Colorado South Carolina 139.66352 2.647986e-03
#> 389 New Jersey Tennessee 137.99622 3.664521e-03
#> 390 Oregon New York 137.66352 3.237382e-03
#> 391 Maryland Virginia 137.16352 1.913926e-03
#> 392 Nevada Iowa 136.49622 4.489818e-03
#> 393 West Virginia Vermont 135.83081 1.393394e-03
#> 394 Maine Arkansas 135.49622 3.757784e-03
#> 395 Kentucky Maryland 135.33081 5.426451e-04
#> 396 Wisconsin Illinois 135.16352 2.777509e-03
#> 397 Michigan Kansas 133.83081 2.584922e-03
#> 398 South Carolina Idaho 133.16352 2.372867e-03
#> 399 California Mississippi 132.49622 6.827959e-03
#> 400 Oregon Wisconsin 131.16352 4.162059e-03
#> 401 Missouri Maryland 130.33081 2.368151e-03
#> 402 New York California 130.16352 4.263541e-03
#> 403 Ohio Nevada 129.66352 2.912166e-03
#> 404 Arizona North Carolina 129.33081 1.121179e-03
#> 405 Colorado Alaska 129.33081 1.103181e-03
#> 406 North Dakota Michigan 128.66352 3.615664e-03
#> 407 Rhode Island Connecticut 128.16352 1.274899e-03
#> 408 Iowa Tennessee 128.16352 3.434547e-03
#> 409 Montana New Jersey 127.66352 3.413889e-03
#> 410 New York Delaware 127.33081 3.793273e-03
#> 411 Georgia Louisiana 125.83081 2.648658e-03
#> 412 Vermont Connecticut 125.66352 4.453996e-03
#> 413 Wisconsin New York 125.66352 6.250625e-03
#> 414 Nevada New Mexico 125.66352 2.942987e-03
#> 415 Maryland Illinois 125.33081 1.780148e-03
#> 416 Wisconsin Colorado 124.83081 3.263283e-03
#> 417 Vermont Michigan 124.83081 2.893480e-03
#> 418 Oregon Idaho 123.33081 3.415613e-03
#> 419 Kansas Hawaii 123.16352 7.011327e-03
#> 420 Washington Montana 122.66352 7.178571e-03
#> 421 Arkansas Nebraska 122.49811 2.813628e-03
#> 422 Tennessee Georgia 122.49811 8.250948e-04
#> 423 North Carolina Arizona 122.33081 3.538555e-03
#> 424 Iowa South Carolina 121.66352 7.527153e-03
#> 425 Kentucky Oklahoma 121.16352 4.236933e-03
#> 426 Connecticut Texas 120.49811 2.005436e-03
#> 427 Illinois Rhode Island 119.83081 4.199028e-03
#> 428 North Dakota Washington 119.16352 4.195736e-03
#> 429 Kentucky Rhode Island 119.16352 7.950870e-03
#> 430 Arizona North Dakota 118.83081 4.047195e-03
#> 431 Maine Wisconsin 118.33081 5.178301e-03
#> 432 Montana Minnesota 118.33081 4.055485e-03
#> 433 Kentucky Ohio 117.49811 2.249509e-03
#> 434 Rhode Island New Jersey 117.33081 1.716740e-03
#> 435 Massachusetts California 117.33081 5.588769e-03
#> 436 South Dakota Massachusetts 117.16352 7.302203e-03
#> 437 Indiana Maine 116.49811 3.385394e-03
#> 438 Kentucky Vermont 115.99811 2.767930e-03
#> 439 Hawaii Arkansas 115.99622 9.594286e-03
#> 440 Nevada Rhode Island 115.83081 4.847741e-03
#> 441 Connecticut Florida 115.49811 2.419990e-03
#> 442 Pennsylvania Indiana 114.33081 4.287953e-03
#> 443 Missouri Minnesota 114.16352 8.050229e-03
#> 444 Kansas Louisiana 113.83081 4.708817e-03
#> 445 Utah Colorado 113.66352 8.922635e-03
#> 446 Hawaii Iowa 113.66352 9.512078e-03
#> 447 Maine Maryland 113.33081 4.080342e-03
#> 448 Idaho Delaware 113.33081 5.798098e-03
#> 449 Nevada Kentucky 111.49811 1.859699e-03
#> 450 Illinois Ohio 111.33081 7.698899e-03
#> 451 Massachusetts Missouri 111.16352 9.828866e-03
#> 452 Nevada Alabama 110.33081 5.655055e-03
#> 453 Maryland Washington 109.49811 4.910128e-03
#> 454 Louisiana New Mexico 108.49811 3.544567e-03
#> 455 Utah Maryland 108.33081 8.019065e-03
#> 456 Connecticut Illinois 107.83081 5.615799e-03
#> 457 Mississippi Alabama 107.49811 5.553205e-03
#> 458 Illinois South Dakota 107.33081 5.816780e-03
#> 459 Utah Alaska 107.33081 6.307646e-03
#> 460 North Dakota California 107.16352 8.256623e-03
#> 461 Washington Oregon 106.49811 2.871090e-03
#> 462 Alaska Nevada 106.33081 7.898097e-03
#> 463 Ohio Virginia 106.33081 5.077717e-03
#> 464 South Carolina Illinois 105.33081 9.753258e-03
#> 465 Texas Connecticut 105.33081 8.515842e-03
#> 466 South Dakota Wyoming 104.99811 2.538435e-03
#> 467 Florida Maryland 104.83081 1.010277e-02
#> 468 Vermont Washington 103.33081 8.747267e-03
#> 469 Illinois Alabama 103.33081 1.182582e-02
#> 470 Minnesota Texas 102.99811 5.588386e-03
#> 471 Illinois West Virginia 102.83081 7.517827e-03
#> 472 Indiana Wisconsin 102.33081 8.776539e-03
#> 473 Utah South Carolina 101.99811 5.899374e-03
#> 474 Maryland North Carolina 101.49811 7.001687e-03
#> 475 Utah Georgia 100.99811 7.033437e-03
#> 476 Virginia Colorado 100.83081 1.092495e-02
#> 477 Texas Ohio 100.33081 1.275321e-02
#> 478 Maryland New Mexico 99.49811 6.491978e-03
#> 479 Massachusetts Virginia 99.33081 1.295535e-02
#> 480 Iowa Montana 97.99811 7.251040e-03
#> 481 Texas Florida 97.99811 7.216086e-03
#> 482 Virginia Wyoming 97.99811 6.449359e-03
#> 483 Alabama Virginia 97.83081 6.196909e-03
#> 484 Arizona Oklahoma 97.49811 5.166374e-03
#> 485 New York Missouri 96.33081 1.452853e-02
#> 486 New Mexico Delaware 96.16541 6.550775e-03
#> 487 Maine North Carolina 95.33081 1.553734e-02
#> 488 Hawaii West Virginia 95.33081 8.319478e-03
#> 489 Rhode Island Alabama 94.83081 1.496583e-02
#> 490 Montana Alaska 94.49811 8.047411e-03
#> 491 Pennsylvania South Carolina 94.33081 1.788849e-02
#> 492 Connecticut Louisiana 94.33081 1.717386e-02
#> 493 Maryland Nevada 93.99811 8.606192e-03
#> 494 Maryland New Jersey 93.49811 9.252645e-03
#> 495 Kentucky Massachusetts 93.49811 8.041312e-03
#> 496 Ohio Utah 92.99811 9.943716e-03
#> 497 Alaska New York 92.99811 1.077787e-02
#> 498 Oklahoma Arizona 92.49811 8.368470e-03
#> 499 Wisconsin Oregon 92.49811 1.002063e-02
#> 500 Virginia Tennessee 91.99811 7.614390e-03
#> 501 Massachusetts Vermont 91.49811 9.927465e-03
#> 502 Georgia Florida 90.99811 8.423972e-03
#> 503 Idaho Kansas 90.83081 1.249404e-02
#> 504 Hawaii Rhode Island 89.99811 1.327541e-02
#> 505 Minnesota Hawaii 89.33081 1.510841e-02
#> 506 Illinois New Hampshire 88.99811 1.106631e-02
#> 507 Hawaii Arizona 88.83081 1.448900e-02
#> 508 South Carolina North Carolina 88.49811 6.336099e-03
#> 509 Utah Illinois 86.49811 1.337303e-02
#> 510 Oklahoma Florida 86.49811 1.375939e-02
#> 511 New Jersey Texas 86.49811 1.592345e-02
#> 512 Pennsylvania New Mexico 85.99811 1.482546e-02
#> 513 South Dakota Utah 85.49811 1.511413e-02
#> 514 Vermont New York 85.49811 1.504376e-02
#> 515 Wisconsin New Jersey 84.99811 1.345698e-02
#> 516 Washington California 84.99811 1.506150e-02
#> 517 Rhode Island Michigan 84.99811 1.196022e-02
#> 518 Missouri Iowa 84.66541 5.551911e-03
#> 519 Colorado New Mexico 84.49811 1.696001e-02
#> 520 North Dakota Kentucky 83.99811 1.357486e-02
#> 521 North Carolina Minnesota 83.99811 1.608849e-02
#> 522 Rhode Island Mississippi 83.83081 1.040639e-02
#> 523 Rhode Island California 83.66541 9.418539e-03
#> 524 Oregon Ohio 83.66541 1.063027e-02
#> 525 South Carolina Texas 82.99811 6.973586e-03
#> 526 New York Maine 82.49811 1.837609e-02
#> 527 Mississippi Wyoming 82.16541 7.314681e-03
#> 528 Texas Idaho 81.99811 1.897426e-02
#> 529 Kansas Wisconsin 81.99811 1.718626e-02
#> 530 Hawaii Minnesota 81.83081 1.554039e-02
#> 531 Oregon South Dakota 81.49811 1.164712e-02
#> 532 Wyoming Vermont 81.49811 1.796941e-02
#> 533 Connecticut Kansas 80.99811 1.847772e-02
#> 534 Alaska North Dakota 80.99811 1.888902e-02
#> 535 Virginia Maryland 80.49811 2.036340e-02
#> 536 Florida Indiana 80.49811 1.996131e-02
#> 537 Minnesota Missouri 80.16541 9.679702e-03
#> 538 Kansas New Mexico 79.99811 1.878587e-02
#> 539 Illinois Connecticut 79.49811 1.791495e-02
#> 540 South Dakota Florida 79.49811 2.096233e-02
#> 541 Delaware New York 79.49811 2.063143e-02
#> 542 Illinois Georgia 79.16541 8.660174e-03
#> 543 New Jersey Pennsylvania 78.99811 1.647568e-02
#> 544 Louisiana Wisconsin 78.49811 2.205466e-02
#> 545 New Jersey Idaho 77.99811 2.312820e-02
#> 546 Vermont Iowa 77.49811 1.828712e-02
#> 547 Indiana South Dakota 76.66541 1.435986e-02
#> 548 North Dakota Indiana 76.49811 1.966206e-02
#> 549 Maine Nebraska 76.16541 1.145961e-02
#> 550 Colorado Massachusetts 75.83081 1.746489e-02
#> 551 Florida New Hampshire 75.66541 9.482874e-03
#> 552 Louisiana Pennsylvania 75.16541 8.855853e-03
#> 553 California Alabama 74.99811 2.708064e-02
#> 554 Wisconsin Maine 74.49811 2.218422e-02
#> 555 Georgia Oklahoma 73.99811 2.739799e-02
#> 556 Virginia Hawaii 73.99811 2.829544e-02
#> 557 Illinois Maryland 73.66541 2.105098e-02
#> 558 Virginia Kansas 73.49811 2.980736e-02
#> 559 Nevada Tennessee 73.16541 1.470530e-02
#> 560 Hawaii North Dakota 72.99811 3.126230e-02
#> 561 Illinois Arizona 72.66541 1.431747e-02
#> 562 Idaho Wyoming 72.66541 1.581705e-02
#> 563 Mississippi California 72.49811 3.171178e-02
#> 564 South Dakota Wisconsin 72.49811 3.139749e-02
#> 565 Georgia Nevada 72.16541 1.716414e-02
#> 566 Oklahoma Utah 72.16541 4.575940e-03
#> 567 Kansas Nebraska 71.66541 2.085696e-02
#> 568 Hawaii Delaware 71.49811 3.306820e-02
#> 569 New Hampshire Illinois 71.16541 1.636022e-02
#> 570 Oregon Texas 71.16541 1.799549e-02
#> 571 Florida Pennsylvania 71.16541 2.037439e-02
#> 572 Oregon Alaska 71.16541 2.003520e-02
#> 573 Colorado New Jersey 70.66541 1.608104e-02
#> 574 Oregon Georgia 70.66541 1.127992e-02
#> 575 Kansas Vermont 70.66541 1.503894e-02
#> 576 New Hampshire New York 70.66541 1.741603e-02
#> 577 Hawaii Washington 69.99811 3.034334e-02
#> 578 New York New Mexico 69.99811 3.020143e-02
#> 579 Vermont New Hampshire 69.66541 1.534243e-02
#> 580 Arizona Arkansas 69.66541 1.582099e-02
#> 581 Mississippi Missouri 69.49811 2.900551e-02
#> 582 North Carolina Colorado 69.49811 3.678938e-02
#> 583 Massachusetts South Carolina 69.49811 2.867976e-02
#> 584 Arkansas Delaware 69.49811 3.586476e-02
#> 585 Pennsylvania California 68.66541 2.312886e-02
#> 586 Ohio Tennessee 68.66541 1.644065e-02
#> 587 California Pennsylvania 68.66541 2.276739e-02
#> 588 Wyoming Illinois 67.49811 3.609203e-02
#> 589 Tennessee Mississippi 67.33270 4.742131e-03
#> 590 Minnesota Tennessee 67.16541 1.968869e-02
#> 591 South Dakota Oregon 66.66541 2.116998e-02
#> 592 Ohio Nebraska 66.16541 1.941824e-02
#> 593 New Mexico Idaho 65.16541 2.274086e-02
#> 594 North Dakota Minnesota 65.16541 2.543392e-02
#> 595 Tennessee Montana 64.66541 2.293169e-02
#> 596 Mississippi New Mexico 64.66541 2.336003e-02
#> 597 Hawaii Louisiana 64.49811 3.850515e-02
#> 598 Tennessee Indiana 64.49811 3.413257e-02
#> 599 Kansas North Dakota 64.16541 1.666380e-02
#> 600 Iowa Oklahoma 63.66541 2.150237e-02
#> 601 New Jersey Alaska 63.16541 2.809358e-02
#> 602 Rhode Island Washington 62.83270 8.502994e-03
#> 603 Oregon Utah 62.66541 2.355429e-02
#> 604 Georgia Texas 62.16541 2.758871e-02
#> 605 New Mexico Iowa 62.16541 2.777182e-02
#> 606 New Jersey Georgia 61.66541 3.043853e-02
#> 607 New Jersey Delaware 61.66541 2.538696e-02
#> 608 Washington North Carolina 61.66541 2.413981e-02
#> 609 Kentucky Oregon 61.16541 2.560809e-02
#> 610 Maine Missouri 61.16541 3.426431e-02
#> 611 Florida Maine 61.16541 2.798497e-02
#> 612 Nevada Arkansas 60.99811 3.137967e-02
#> 613 Arkansas Montana 60.66541 2.942083e-02
#> 614 Illinois North Carolina 60.66541 2.837796e-02
#> 615 Wisconsin Rhode Island 60.66541 3.082866e-02
#> 616 Illinois Idaho 60.16541 3.770609e-02
#> 617 Kentucky Illinois 60.16541 2.236338e-02
#> 618 Delaware South Dakota 60.16541 3.387283e-02
#> 619 Missouri Kansas 59.83270 1.468315e-02
#> 620 New Mexico Nevada 59.66541 2.915842e-02
#> 621 South Carolina Tennessee 59.33270 1.506856e-02
#> 622 Maine New Hampshire 59.16541 3.373751e-02
#> 623 New Jersey Connecticut 59.16541 3.258855e-02
#> 624 Idaho Ohio 59.16541 3.810024e-02
#> 625 Florida West Virginia 58.83270 1.095435e-02
#> 626 Nebraska Illinois 58.66541 3.598905e-02
#> 627 Michigan Wyoming 58.66541 3.591424e-02
#> 628 New Mexico Alabama 58.66541 3.222445e-02
#> 629 Washington Arkansas 58.33270 1.143030e-02
#> 630 Kentucky Utah 58.16541 2.691691e-02
#> 631 Connecticut Wisconsin 58.16541 3.214052e-02
#> 632 Mississippi Arizona 57.83270 1.333383e-02
#> 633 Missouri Ohio 57.66541 3.560806e-02
#> 634 Delaware Massachusetts 57.66541 3.429438e-02
#> 635 New York Arizona 57.66541 3.836643e-02
#> 636 Connecticut Maryland 57.33270 1.061131e-02
#> 637 New Mexico Illinois 57.16541 3.710655e-02
#> 638 Pennsylvania Texas 57.16541 3.908133e-02
#> 639 Missouri Idaho 57.16541 3.992648e-02
#> 640 Idaho Georgia 57.16541 3.971871e-02
#> 641 Minnesota New York 57.16541 3.981507e-02
#> 642 Maryland Montana 56.83270 1.445857e-02
#> 643 Hawaii Montana 56.66541 4.092546e-02
#> 644 North Dakota Texas 56.66541 4.014802e-02
#> 645 Nevada Nebraska 56.66541 3.951712e-02
#> 646 Arkansas Mississippi 56.33270 8.896799e-03
#> 647 Texas Colorado 56.16541 3.537999e-02
#> 648 New Hampshire Oregon 56.16541 4.073253e-02
#> 649 Michigan Indiana 55.83270 2.210355e-02
#> 650 Texas North Dakota 55.66541 3.931739e-02
#> 651 New Hampshire Hawaii 55.66541 4.267531e-02
#> 652 Montana Florida 55.66541 4.214732e-02
#> 653 North Dakota Virginia 55.16541 3.990863e-02
#> 654 Wisconsin Connecticut 55.16541 4.289522e-02
#> 655 Washington Louisiana 55.16541 4.052102e-02
#> 656 Wisconsin North Dakota 54.66541 3.892896e-02
#> 657 New Jersey Florida 54.66541 4.293409e-02
#> 658 Delaware Arkansas 54.66541 4.638100e-02
#> 659 Nebraska Kentucky 54.66541 2.386410e-02
#> 660 Colorado Michigan 54.33270 1.972053e-02
#> 661 Wisconsin Nevada 54.16541 4.529726e-02
#> 662 Georgia Colorado 53.66541 4.600825e-02
#> 663 New Jersey Virginia 53.66541 4.704705e-02
#> 664 Kansas Virginia 53.66541 4.211033e-02
#> 665 Georgia West Virginia 53.66541 4.724509e-02
#> 666 Texas Nebraska 53.66541 4.694289e-02
#> 667 Oklahoma Colorado 53.16541 4.966131e-02
#> 668 Kansas Arkansas 53.16541 4.878448e-02
#> 669 Arizona Tennessee 53.16541 4.886635e-02
#> 670 Maryland Alabama 53.16541 4.600438e-02
#> 671 Georgia Montana 52.83270 1.688873e-02
#> 672 Ohio California 52.66541 5.086407e-02
#> 673 Delaware Wyoming 52.66541 4.912229e-02
#> 674 Michigan Tennessee 52.66541 5.093948e-02
#> 675 Pennsylvania New York 52.33270 2.525795e-02
#> 676 Kansas Connecticut 52.16541 5.301143e-02
#> 677 Hawaii Pennsylvania 52.16541 5.054827e-02
#> 678 Maine Rhode Island 52.16541 3.798274e-02
#> 679 Oklahoma North Dakota 52.16541 4.900880e-02
#> 680 New York Iowa 52.16541 5.471737e-02
#> 681 Virginia South Dakota 51.66541 5.093796e-02
#> 682 Massachusetts Oregon 51.66541 5.325081e-02
#> 683 New Jersey Arizona 51.16541 5.044724e-02
#> 684 Michigan Kentucky 50.83270 2.298970e-02
#> 685 Hawaii New Jersey 50.66541 5.593444e-02
#> 686 Missouri Illinois 50.66541 5.803511e-02
#> 687 Connecticut Oklahoma 50.66541 5.728001e-02
#> 688 Ohio South Carolina 50.66541 5.603447e-02
#> 689 South Carolina Missouri 50.66541 5.747051e-02
#> 690 Oregon Alabama 50.66541 5.207204e-02
#> 691 Ohio Delaware 50.66541 5.472089e-02
#> 692 Pennsylvania Michigan 50.33270 1.419861e-02
#> 693 Kansas New York 50.16541 5.892169e-02
#> 694 Wisconsin Kansas 49.83270 2.195410e-02
#> 695 Kentucky Wisconsin 49.66541 5.510044e-02
#> 696 South Carolina New York 49.66541 6.091745e-02
#> 697 Pennsylvania Illinois 49.16541 5.165647e-02
#> 698 New York Wyoming 49.16541 6.075827e-02
#> 699 Tennessee Massachusetts 49.16541 6.348954e-02
#> 700 Kentucky Minnesota 48.33270 2.183828e-02
#> 701 Louisiana Alaska 48.33270 3.820708e-02
#> 702 Kansas Maine 48.16541 5.841513e-02
#> 703 Delaware Montana 48.16541 5.957452e-02
#> 704 Washington Missouri 48.16541 6.717138e-02
#> 705 Pennsylvania Nevada 47.83270 3.073326e-02
#> 706 New Mexico California 47.66541 6.735105e-02
#> 707 Hawaii Vermont 47.66541 6.929960e-02
#> 708 Tennessee New York 47.66541 6.903189e-02
#> 709 Pennsylvania Washington 47.33270 2.303685e-02
#> 710 Wisconsin Pennsylvania 47.33270 2.351409e-02
#> 711 Illinois Utah 47.16541 7.147507e-02
#> 712 Louisiana Florida 46.83270 2.844952e-02
#> 713 Missouri Colorado 46.66541 7.375452e-02
#> 714 Nebraska New York 46.66541 7.409542e-02
#> 715 Oklahoma South Dakota 46.33270 5.371214e-02
#> 716 Wisconsin Louisiana 46.33270 2.929743e-02
#> 717 Kansas Indiana 45.83270 3.264544e-02
#> 718 Hawaii Oklahoma 45.66541 7.861831e-02
#> 719 Nevada Georgia 45.66541 7.059075e-02
#> 720 New Hampshire Massachusetts 45.66541 7.828417e-02
#> 721 North Dakota Alaska 45.66541 7.854264e-02
#> 722 Virginia Indiana 45.33270 3.053454e-02
#> 723 Wisconsin Hawaii 45.33270 3.965525e-02
#> 724 Washington Wisconsin 45.16541 8.059398e-02
#> 725 Virginia West Virginia 44.83270 3.080320e-02
#> 726 Louisiana Delaware 44.83270 3.220549e-02
#> 727 Vermont Nebraska 44.33270 4.386652e-02
#> 728 South Carolina South Dakota 44.16541 7.144375e-02
#> 729 Wisconsin Minnesota 44.16541 3.317062e-02
#> 730 North Carolina South Carolina 43.83270 3.080313e-02
#> 731 Iowa Kentucky 43.83270 3.393638e-02
#> 732 Nevada Connecticut 43.16541 6.853975e-02
#> 733 Mississippi Massachusetts 43.16541 5.358660e-02
#> 734 Massachusetts Ohio 42.83270 3.517249e-02
#> 735 Alaska Connecticut 42.83270 3.794549e-02
#> 736 Utah Arkansas 42.83270 3.598414e-02
#> 737 Illinois Missouri 42.33270 3.113278e-02
#> 738 Oklahoma New Mexico 42.33270 3.726932e-02
#> 739 Oklahoma Michigan 42.33270 3.420290e-02
#> 740 Maine Hawaii 42.33270 3.427093e-02
#> 741 South Dakota West Virginia 42.16541 7.189781e-02
#> 742 Indiana New Jersey 41.33270 4.673928e-02
#> 743 Virginia Utah 41.33270 3.871837e-02
#> 744 New Mexico Washington 41.33270 3.339610e-02
#> 745 Montana Nevada 40.83270 3.873878e-02
#> 746 New York Idaho 40.66541 7.045685e-02
#> 747 South Carolina Connecticut 40.33270 5.296438e-02
#> 748 Delaware New Mexico 40.33270 5.416416e-02
#> 749 New York Vermont 40.16541 7.796357e-02
#> 750 Arkansas New Hampshire 39.83270 4.833519e-02
#> 751 Maine Nevada 39.83270 4.837261e-02
#> 752 Tennessee North Carolina 39.83270 4.591305e-02
#> 753 Minnesota Massachusetts 39.83270 5.034555e-02
#> 754 Idaho Rhode Island 39.83270 5.162327e-02
#> 755 Louisiana Maryland 39.33270 4.360574e-02
#> 756 Connecticut Pennsylvania 39.33270 5.604197e-02
#> 757 Pennsylvania Massachusetts 39.33270 4.804870e-02
#> 758 New Jersey Maine 39.33270 3.532378e-02
#> 759 Kentucky Virginia 39.00000 3.801192e-03
#> 760 Pennsylvania Oklahoma 38.83270 5.038928e-02
#> 761 South Dakota Mississippi 38.83270 4.570869e-02
#> 762 Washington Ohio 38.83270 4.631238e-02
#> 763 New Jersey Louisiana 38.83270 5.165931e-02
#> 764 Ohio Washington 38.83270 4.516702e-02
#> 765 Montana South Dakota 38.66541 5.328503e-02
#> 766 Vermont Maine 38.50000 1.382962e-03
#> 767 Hawaii Florida 38.33270 6.410060e-02
#> 768 New Mexico Utah 38.33270 5.679300e-02
#> 769 Idaho Tennessee 38.33270 5.469611e-02
#> 770 Oregon Colorado 38.33270 4.436067e-02
#> 771 Oregon Rhode Island 38.33270 5.384162e-02
#> 772 Ohio Kansas 37.83270 4.970660e-02
#> 773 Connecticut Kentucky 37.83270 5.954111e-02
#> 774 New Jersey Oregon 37.83270 4.852744e-02
#> 775 Nevada Washington 37.33270 5.484191e-02
#> 776 Mississippi Idaho 37.33270 5.395018e-02
#> 777 Arkansas South Carolina 37.33270 5.572405e-02
#> 778 Michigan Pennsylvania 37.33270 5.642448e-02
#> 779 Pennsylvania Wisconsin 37.33270 5.674966e-02
#> 780 Colorado North Dakota 37.33270 5.132831e-02
#> 781 Rhode Island Nevada 36.83270 5.908228e-02
#> 782 Oregon Missouri 36.83270 5.886941e-02
#> 783 Hawaii California 36.33270 7.417148e-02
#> 784 Washington Connecticut 36.33270 5.964954e-02
#> 785 Alaska Arizona 36.33270 5.702467e-02
#> 786 Virginia Iowa 36.33270 5.908249e-02
#> 787 New Mexico Virginia 35.83270 6.041529e-02
#> 788 Georgia Utah 35.83270 2.650250e-02
#> 789 Montana Idaho 35.83270 7.257395e-02
#> 790 Montana Michigan 35.83270 6.201917e-02
#> 791 Mississippi Texas 35.33270 6.427619e-02
#> 792 Montana Georgia 35.33270 7.018908e-02
#> 793 Louisiana Alabama 35.33270 6.588971e-02
#> 794 Texas Vermont 35.33270 6.258526e-02
#> 795 Hawaii New Mexico 35.33270 6.484938e-02
#> 796 Virginia Montana 34.83270 7.156820e-02
#> 797 Hawaii Illinois 34.83270 7.394960e-02
#> 798 Wisconsin Tennessee 34.83270 7.593819e-02
#> 799 Michigan Alabama 34.83270 7.114596e-02
#> 800 Louisiana Minnesota 34.83270 6.336802e-02
#> 801 Kentucky Nebraska 34.50000 8.227930e-03
#> 802 New Mexico North Carolina 34.50000 5.550957e-03
#> 803 New Jersey Utah 34.33270 7.403066e-02
#> 804 Louisiana Idaho 34.33270 8.082622e-02
#> 805 Oklahoma Wyoming 34.33270 6.830979e-02
#> 806 Wisconsin Missouri 34.33270 7.111215e-02
#> 807 Virginia Kentucky 34.33270 7.220457e-02
#> 808 Kansas Oregon 34.33270 7.779565e-02
#> 809 Wisconsin Alaska 34.33270 6.282352e-02
#> 810 Kentucky New Hampshire 34.33270 6.730139e-02
#> 811 New Mexico Kansas 33.83270 7.756629e-02
#> 812 South Dakota Vermont 33.83270 7.333284e-02
#> 813 Washington Hawaii 33.83270 6.747065e-02
#> 814 Texas Washington 33.83270 7.281024e-02
#> 815 Wisconsin Arkansas 33.83270 7.085450e-02
#> 816 Massachusetts New Jersey 33.33270 7.072670e-02
#> 817 New York Washington 33.33270 7.869689e-02
#> 818 Louisiana Texas 33.33270 7.512070e-02
#> 819 Rhode Island Georgia 33.33270 7.203217e-02
#> 820 New Jersey Wisconsin 33.33270 8.006418e-02
#> 821 Oklahoma Oregon 33.33270 7.825385e-02
#> 822 Oregon Iowa 33.33270 7.688990e-02
#> 823 Tennessee Oklahoma 33.33270 7.541817e-02
#> 824 New York Nevada 32.83270 8.685675e-02
#> 825 Utah Florida 32.83270 7.954245e-02
#> 826 Washington Tennessee 32.83270 7.851196e-02
#> 827 Kansas Kentucky 32.83270 8.150306e-02
#> 828 Washington New Mexico 32.83270 8.115235e-02
#> 829 Delaware Illinois 32.33270 7.868434e-02
#> 830 Connecticut Utah 32.33270 7.855719e-02
#> 831 Mississippi Ohio 32.33270 8.737434e-02
#> 832 Alabama Maryland 32.33270 6.547169e-02
#> 833 Washington Indiana 32.33270 8.046781e-02
#> 834 Michigan New Mexico 32.33270 7.409669e-02
#> 835 Ohio Michigan 32.33270 7.688628e-02
#> 836 Maine Arizona 32.33270 7.778550e-02
#> 837 Ohio Iowa 32.33270 7.925073e-02
#> 838 Massachusetts Oklahoma 31.83270 8.782372e-02
#> 839 Louisiana Missouri 31.83270 5.812194e-02
#> 840 Missouri New Jersey 31.83270 8.690634e-02
#> 841 Alabama Kansas 31.83270 7.234288e-02
#> 842 Delaware Idaho 31.83270 8.536457e-02
#> 843 South Dakota Missouri 31.83270 8.924339e-02
#> 844 Ohio Rhode Island 31.83270 8.955782e-02
#> 845 Nevada Maine 31.83270 8.506666e-02
#> 846 Washington Delaware 31.83270 8.129009e-02
#> 847 Louisiana Oklahoma 31.33270 8.794409e-02
#> 848 Delaware New Hampshire 31.33270 8.759539e-02
#> 849 South Carolina Nevada 31.33270 8.244965e-02
#> 850 Wisconsin Virginia 31.33270 9.398913e-02
#> 851 Michigan North Carolina 31.33270 8.767819e-02
#> 852 Arizona Indiana 31.33270 8.656421e-02
#> 853 Nebraska Michigan 30.83270 8.850056e-02
#> 854 Arizona Montana 30.83270 8.887094e-02
#> 855 Kansas Illinois 30.83270 9.528844e-02
#> 856 Missouri California 30.83270 9.154109e-02
#> 857 Wisconsin Texas 30.83270 8.864058e-02
#> 858 Kentucky South Dakota 30.83270 8.477734e-02
#> 859 Colorado Wyoming 30.83270 9.148611e-02
#> 860 Connecticut West Virginia 30.83270 9.125639e-02
#> 861 Maine North Dakota 30.83270 9.107165e-02
#> 862 South Dakota Hawaii 30.83270 9.092526e-02
#> 863 Kansas Alaska 30.83270 9.050831e-02
#> 864 New Jersey Colorado 30.83270 8.868463e-02
#> 865 Alabama Georgia 30.33270 9.479827e-02
#> 866 Tennessee Connecticut 30.33270 9.406568e-02
#> 867 Georgia Tennessee 30.33270 8.649997e-02
#> 868 Massachusetts Louisiana 30.33270 9.400755e-02
#> 869 Ohio Maine 30.33270 8.497380e-02
#> 870 Arizona Hawaii 30.33270 9.860851e-02
#> 871 Virginia Louisiana 30.00000 9.856719e-03
#> 872 New York Colorado 29.83270 1.065495e-01
We see that with a fixed lambda of 0.5 and a p-value cut-off of 0.1 the algorithm inferred 872 edges.
The diffusion model parameters can be selected automatically. Setting the params argument to NULL (default value) makes the netinf function initialize the parameters automatically. The parameters are initialized at the midpoint between the MLE of the minimum diffusion times and the MLE of the maximum diffusion times, across all cascades. Edges are then inferred until either the p-value cut-off or a manually specified number of edges (n_edges) is reached.
results <- netinf(policy_cascades, trans_mod = "exponential",
p_value_cutoff = 0.1, quiet = TRUE)
attr(results, 'diffusion_model_parameters')
#> [1] 0.577955
Let’s take a look at the output of the algorithm. The output is a dataframe containing the inferred latent network in the form of an edgelist:
print(results)
#> origin_node destination_node improvement p_value
#> 1 California Oregon 3744.71958 0.000000e+00
#> 2 California Colorado 3362.79647 0.000000e+00
#> 3 California Maryland 3355.65347 0.000000e+00
#> 4 California Washington 3307.19459 0.000000e+00
#> 5 California Illinois 3285.97313 0.000000e+00
#> 6 California North Carolina 3264.38125 0.000000e+00
#> 7 California New Mexico 3259.62359 0.000000e+00
#> 8 California Maine 3254.76355 0.000000e+00
#> 9 California Nevada 3214.30670 0.000000e+00
#> 10 California Ohio 3181.86770 0.000000e+00
#> 11 California Florida 3178.42882 0.000000e+00
#> 12 California Montana 3167.90743 0.000000e+00
#> 13 Oregon Kentucky 3156.43767 0.000000e+00
#> 14 California New Jersey 3128.90337 0.000000e+00
#> 15 California Indiana 3128.65116 0.000000e+00
#> 16 California Texas 3124.47146 0.000000e+00
#> 17 California Arizona 3085.37806 0.000000e+00
#> 18 California Delaware 3040.89134 0.000000e+00
#> 19 California Kansas 3027.18329 0.000000e+00
#> 20 California Nebraska 2971.32919 0.000000e+00
#> 21 Minnesota Iowa 2952.68758 0.000000e+00
#> 22 Minnesota Virginia 2950.70150 0.000000e+00
#> 23 Connecticut Vermont 2938.97953 0.000000e+00
#> 24 California Missouri 2928.97561 0.000000e+00
#> 25 California Minnesota 2917.71339 0.000000e+00
#> 26 California Rhode Island 2900.16720 0.000000e+00
#> 27 California Georgia 2897.55849 0.000000e+00
#> 28 Illinois Pennsylvania 2893.69150 0.000000e+00
#> 29 Connecticut Michigan 2886.34095 0.000000e+00
#> 30 Florida Mississippi 2873.34487 0.000000e+00
#> 31 California North Dakota 2856.07975 0.000000e+00
#> 32 California Tennessee 2854.50875 0.000000e+00
#> 33 California South Carolina 2838.28134 0.000000e+00
#> 34 California New Hampshire 2831.68744 0.000000e+00
#> 35 California Arkansas 2825.61100 0.000000e+00
#> 36 California Utah 2819.66858 0.000000e+00
#> 37 Colorado South Dakota 2752.64162 0.000000e+00
#> 38 California Connecticut 2680.93052 0.000000e+00
#> 39 California Louisiana 2677.69918 0.000000e+00
#> 40 California Oklahoma 2673.40128 0.000000e+00
#> 41 Virginia Alabama 2645.97215 0.000000e+00
#> 42 Washington Wyoming 2614.30282 0.000000e+00
#> 43 California Wisconsin 2603.94430 0.000000e+00
#> 44 California New York 2572.20145 0.000000e+00
#> 45 California Idaho 2514.68701 0.000000e+00
#> 46 California Massachusetts 2353.33518 0.000000e+00
#> 47 Connecticut California 2240.56043 0.000000e+00
#> 48 California West Virginia 2194.97550 0.000000e+00
#> 49 California Hawaii 2153.33389 0.000000e+00
#> 50 California Alaska 2111.72113 0.000000e+00
#> 51 Massachusetts Connecticut 1470.23850 0.000000e+00
#> 52 Montana Arizona 1436.68826 0.000000e+00
#> 53 Connecticut Ohio 1436.22850 0.000000e+00
#> 54 New York Pennsylvania 1417.11131 0.000000e+00
#> 55 Connecticut New Jersey 1407.37542 0.000000e+00
#> 56 Oregon Vermont 1356.47071 0.000000e+00
#> 57 Florida South Carolina 1341.41502 0.000000e+00
#> 58 Florida Georgia 1314.62155 0.000000e+00
#> 59 Florida Louisiana 1305.16673 0.000000e+00
#> 60 Oregon Minnesota 1301.86187 0.000000e+00
#> 61 Minnesota Nebraska 1301.49145 0.000000e+00
#> 62 Illinois California 1300.45374 0.000000e+00
#> 63 Massachusetts Rhode Island 1296.98601 0.000000e+00
#> 64 Florida Texas 1289.60661 0.000000e+00
#> 65 Oregon New Mexico 1289.56194 0.000000e+00
#> 66 Tennessee Arkansas 1284.56789 0.000000e+00
#> 67 Minnesota Washington 1272.54903 0.000000e+00
#> 68 Rhode Island Maine 1271.39312 0.000000e+00
#> 69 Louisiana Indiana 1263.13888 0.000000e+00
#> 70 New York Oregon 1262.02764 0.000000e+00
#> 71 Minnesota Oklahoma 1251.83199 0.000000e+00
#> 72 Connecticut Colorado 1225.40893 0.000000e+00
#> 73 Idaho Utah 1221.31857 0.000000e+00
#> 74 Louisiana Kansas 1215.25796 0.000000e+00
#> 75 Colorado Virginia 1214.22024 4.440892e-16
#> 76 Connecticut Iowa 1207.07724 1.110223e-16
#> 77 California Michigan 1201.83097 0.000000e+00
#> 78 New York Illinois 1179.12786 0.000000e+00
#> 79 New York Maryland 1174.71176 0.000000e+00
#> 80 Illinois Florida 1136.07812 0.000000e+00
#> 81 Idaho Alabama 1133.51408 8.881784e-16
#> 82 Illinois Massachusetts 1131.82489 1.998401e-15
#> 83 Massachusetts New York 1123.15556 2.664535e-15
#> 84 Minnesota Delaware 1121.46637 5.551115e-16
#> 85 Florida North Carolina 1117.99864 2.220446e-16
#> 86 Colorado Idaho 1115.15354 4.440892e-16
#> 87 Minnesota North Dakota 1114.94600 1.110223e-15
#> 88 Florida Missouri 1097.23693 6.661338e-16
#> 89 Rhode Island Wisconsin 1075.60038 6.883383e-15
#> 90 Florida Tennessee 1070.02837 6.661338e-16
#> 91 Oregon Montana 1068.91714 8.881784e-16
#> 92 Minnesota Mississippi 1066.14556 8.548717e-15
#> 93 Rhode Island Kentucky 1054.21604 1.776357e-15
#> 94 California South Dakota 1050.54077 2.287059e-14
#> 95 Kansas Wyoming 1018.42750 1.088019e-14
#> 96 Connecticut New Hampshire 1013.47812 6.661338e-15
#> 97 Florida Nevada 984.41750 9.103829e-15
#> 98 Michigan West Virginia 943.59024 3.841372e-14
#> 99 Washington Alaska 929.34890 3.856915e-13
#> 100 Connecticut Washington 886.20982 7.240875e-13
#> 101 New York Minnesota 881.91192 3.685940e-13
#> 102 New York New Jersey 847.27929 1.149281e-11
#> 103 Colorado Maryland 838.49177 2.727929e-12
#> 104 Connecticut Massachusetts 834.60895 4.705125e-12
#> 105 Minnesota California 831.14122 6.399103e-12
#> 106 Nevada Hawaii 818.01113 1.820455e-11
#> 107 New Mexico Connecticut 811.86116 3.117728e-12
#> 108 Florida Oklahoma 785.98720 4.602096e-12
#> 109 Texas New Mexico 784.37154 6.948220e-12
#> 110 Texas Arkansas 778.84420 1.017686e-11
#> 111 Oregon Maine 767.77371 2.283129e-11
#> 112 Rhode Island Indiana 764.14311 8.246515e-12
#> 113 Florida Utah 761.62375 8.845591e-12
#> 114 Illinois Michigan 758.98619 5.210166e-12
#> 115 Iowa Wisconsin 742.59590 5.913492e-11
#> 116 Colorado Louisiana 736.44594 4.589928e-11
#> 117 Florida Arizona 733.71904 7.468337e-11
#> 118 Washington Illinois 731.65943 1.476574e-11
#> 119 Utah North Dakota 731.61476 1.200506e-10
#> 120 Minnesota Colorado 725.83521 5.509782e-11
#> 121 Oregon Florida 720.26320 1.523714e-11
#> 122 Idaho Texas 719.47770 9.043188e-11
#> 123 Washington Pennsylvania 715.43202 6.396461e-11
#> 124 North Dakota South Carolina 712.91265 2.872147e-11
#> 125 Washington Kansas 709.69714 2.170508e-10
#> 126 Texas Kentucky 708.37836 4.109513e-11
#> 127 Illinois Iowa 706.39228 7.375256e-11
#> 128 Minnesota Nevada 694.46277 2.970145e-10
#> 129 Minnesota Oregon 692.19562 5.509582e-11
#> 130 Rhode Island Idaho 690.99504 3.731282e-10
#> 131 California Virginia 690.57995 4.010767e-10
#> 132 New Mexico North Carolina 685.83811 1.608071e-10
#> 133 Connecticut Delaware 683.89671 2.311731e-10
#> 134 Louisiana Rhode Island 672.13006 3.150897e-10
#> 135 Michigan Montana 671.18170 2.158094e-10
#> 136 California Vermont 661.72687 1.595895e-09
#> 137 Florida Ohio 661.35646 2.590772e-10
#> 138 Maryland New Hampshire 651.53122 6.020077e-10
#> 139 North Dakota South Dakota 629.40606 3.946468e-10
#> 140 Connecticut New York 628.25015 7.362747e-10
#> 141 New York Connecticut 615.95023 2.951436e-09
#> 142 Colorado Missouri 610.74863 1.267548e-09
#> 143 Illinois Minnesota 609.96313 4.543268e-09
#> 144 Minnesota New Jersey 604.55400 1.943449e-09
#> 145 Florida Alabama 595.72180 5.207818e-09
#> 146 Oregon Georgia 593.40998 1.002142e-09
#> 147 Utah Michigan 588.37126 5.948980e-09
#> 148 Nebraska Mississippi 579.33152 5.293422e-09
#> 149 Illinois Nebraska 579.16865 1.157472e-09
#> 150 Massachusetts Hawaii 573.13688 2.439586e-08
#> 151 Utah Tennessee 569.34341 2.939847e-09
#> 152 Rhode Island Wyoming 561.99287 8.781385e-09
#> 153 Minnesota Arkansas 561.25204 1.248582e-08
#> 154 Colorado West Virginia 556.25799 1.467587e-09
#> 155 Rhode Island New Mexico 549.53007 4.772567e-09
#> 156 Texas Virginia 535.45161 7.938815e-09
#> 157 Massachusetts North Carolina 532.14675 1.732845e-08
#> 158 Illinois Washington 531.19838 2.557936e-08
#> 159 Indiana Illinois 526.94515 4.554316e-08
#> 160 New York Massachusetts 526.94515 6.384444e-08
#> 161 Utah Oklahoma 522.15864 1.788898e-08
#> 162 Connecticut Maine 519.10600 2.238010e-08
#> 163 Illinois Indiana 516.00868 1.314698e-08
#> 164 New Jersey California 514.39301 1.518404e-07
#> 165 North Dakota Idaho 504.61245 2.470426e-08
#> 166 Oregon Arizona 501.97489 2.637645e-08
#> 167 Illinois Delaware 499.82594 3.962780e-08
#> 168 Colorado Wisconsin 498.09207 4.744922e-08
#> 169 Colorado Montana 485.79215 5.434679e-08
#> 170 Alabama Pennsylvania 484.96198 1.235576e-07
#> 171 Minnesota Rhode Island 466.51209 2.826367e-07
#> 172 California Kentucky 463.99273 4.100594e-07
#> 173 Idaho Iowa 460.89541 5.115374e-07
#> 174 North Dakota Ohio 458.99867 1.735472e-07
#> 175 Iowa Texas 451.48526 1.505678e-07
#> 176 Indiana Alabama 451.48526 3.036600e-07
#> 177 Tennessee South Carolina 442.49019 8.418094e-08
#> 178 Connecticut Tennessee 442.44552 2.444800e-07
#> 179 Illinois Colorado 439.18533 3.589461e-07
#> 180 Georgia Kansas 437.82188 3.496049e-07
#> 181 Tennessee Georgia 437.24392 3.422229e-07
#> 182 Florida Washington 437.08105 2.811326e-07
#> 183 Rhode Island Maryland 435.92514 1.079931e-07
#> 184 Virginia Florida 434.39882 7.721652e-08
#> 185 Illinois Vermont 431.46437 1.102210e-06
#> 186 Maryland Utah 428.04132 1.316131e-07
#> 187 Minnesota New Hampshire 425.10687 4.826615e-07
#> 188 Colorado Minnesota 423.41768 4.692990e-07
#> 189 Massachusetts Wisconsin 423.37300 1.173132e-06
#> 190 Rhode Island Louisiana 423.21013 4.954936e-07
#> 191 Louisiana Virginia 413.54777 9.310222e-07
#> 192 Louisiana Montana 413.38490 6.436986e-07
#> 193 Florida Kentucky 413.17736 2.119160e-06
#> 194 Virginia Alaska 411.23595 7.637939e-07
#> 195 Utah New Mexico 410.53980 3.806639e-07
#> 196 Delaware North Dakota 408.59839 6.101305e-07
#> 197 New York Ohio 407.14559 8.824648e-07
#> 198 Georgia Mississippi 400.87743 8.042124e-07
#> 199 Colorado Oregon 398.56561 1.350198e-06
#> 200 Kentucky Nebraska 391.67482 3.804920e-07
#> 201 Florida Connecticut 390.31137 1.225795e-06
#> 202 Louisiana South Dakota 389.89628 1.042385e-06
#> 203 Wisconsin Massachusetts 389.48120 3.632371e-06
#> 204 Kentucky Missouri 388.74037 1.166393e-07
#> 205 New York Iowa 388.32529 5.007530e-06
#> 206 Illinois Oklahoma 376.97373 8.469303e-07
#> 207 Michigan New York 376.97373 1.117231e-06
#> 208 Nevada Florida 372.39476 1.980451e-06
#> 209 Florida Colorado 364.88135 2.197087e-06
#> 210 Michigan Nevada 360.62812 1.656715e-06
#> 211 Oklahoma Arkansas 359.47221 3.040616e-06
#> 212 Wisconsin Vermont 359.05713 3.411720e-06
#> 213 Illinois New Jersey 350.64002 3.851029e-06
#> 214 Louisiana Tennessee 348.32819 1.242413e-06
#> 215 Minnesota West Virginia 345.02333 3.491749e-06
#> 216 Utah California 344.60825 1.175304e-05
#> 217 Illinois Hawaii 344.07497 3.983653e-06
#> 218 Utah North Carolina 343.86742 6.309883e-06
#> 219 Kentucky Minnesota 343.49701 5.480378e-06
#> 220 Oregon Wyoming 339.86641 2.695404e-06
#> 221 New York Rhode Island 338.50296 4.593131e-06
#> 222 Alabama North Dakota 333.46423 7.690605e-06
#> 223 Louisiana Illinois 330.82667 1.956941e-06
#> 224 Connecticut South Carolina 330.78200 7.770360e-06
#> 225 Kentucky Michigan 330.41159 6.135825e-06
#> 226 Utah Washington 329.04814 1.172837e-05
#> 227 Minnesota Arizona 328.30731 3.741355e-06
#> 228 Colorado Pennsylvania 326.73632 6.906536e-06
#> 229 Oregon Connecticut 325.58041 1.206466e-05
#> 230 Wisconsin Missouri 321.16431 8.960716e-06
#> 231 New York Florida 319.22290 1.517303e-05
#> 232 Wisconsin Kansas 318.06699 1.123347e-05
#> 233 Utah Texas 317.16330 1.390564e-06
#> 234 New York Michigan 315.17722 8.037637e-06
#> 235 Maryland Maine 310.80579 4.638999e-06
#> 236 Arkansas Ohio 307.87134 2.915138e-05
#> 237 Wisconsin California 307.87134 2.899350e-05
#> 238 Delaware Alabama 307.08584 3.690867e-05
#> 239 Florida Virginia 306.71543 2.685237e-05
#> 240 Kansas Oklahoma 305.18911 1.286990e-05
#> 241 Minnesota Indiana 304.03320 1.687863e-05
#> 242 Florida Idaho 303.08483 1.161391e-05
#> 243 North Dakota Louisiana 300.35793 1.064788e-05
#> 244 Michigan North Carolina 298.83160 4.102790e-05
#> 245 Florida Nebraska 297.67569 3.533336e-05
#> 246 Kentucky Colorado 297.30528 8.482140e-06
#> 247 West Virginia Georgia 293.46714 8.514521e-06
#> 248 Colorado Utah 289.79187 2.081360e-05
#> 249 Florida Massachusetts 287.85046 2.686269e-05
#> 250 Rhode Island New Hampshire 287.48005 3.424974e-05
#> 251 Kentucky New York 287.06496 3.013999e-05
#> 252 Connecticut Oregon 284.96068 1.782639e-05
#> 253 Arkansas Maryland 283.80477 3.670838e-05
#> 254 Utah South Dakota 276.29136 1.342540e-05
#> 255 New Mexico Delaware 271.71239 2.422454e-05
#> 256 North Dakota New Mexico 270.71935 3.880224e-05
#> 257 New Mexico Mississippi 269.93385 4.919398e-05
#> 258 Tennessee Arizona 267.29629 4.366312e-06
#> 259 Kentucky West Virginia 266.88121 1.793403e-05
#> 260 Kentucky Tennessee 266.30325 1.111975e-05
#> 261 Arizona Pennsylvania 264.36184 1.130134e-04
#> 262 Arizona Oregon 262.99839 1.312136e-04
#> 263 Ohio Kentucky 262.99839 5.330856e-05
#> 264 Massachusetts Montana 260.68657 5.206313e-05
#> 265 Georgia Indiana 259.57533 3.415601e-05
#> 266 Michigan Wisconsin 257.63393 4.319534e-05
#> 267 New Mexico Rhode Island 255.73719 3.612442e-05
#> 268 Michigan Illinois 250.69847 5.271771e-05
#> 269 Hawaii Virginia 250.49092 1.478922e-04
#> 270 Pennsylvania Texas 250.12051 4.213937e-05
#> 271 Nevada Nebraska 244.75605 9.871204e-05
#> 272 New Jersey Washington 244.13342 1.228063e-04
#> 273 Idaho Colorado 243.55546 1.339586e-04
#> 274 Colorado Nevada 241.08077 6.697164e-05
#> 275 North Dakota Iowa 239.71732 9.236861e-05
#> 276 Hawaii Oregon 239.50978 2.507055e-04
#> 277 New Jersey Illinois 236.82755 7.645393e-05
#> 278 Kentucky Pennsylvania 235.87918 1.273963e-04
#> 279 New Jersey New Mexico 235.67164 2.391938e-04
#> 280 Ohio Nebraska 235.09368 2.248784e-04
#> 281 Pennsylvania Ohio 234.35286 5.766168e-05
#> 282 Illinois Missouri 233.93777 1.044354e-04
#> 283 South Carolina Arkansas 231.62595 9.789116e-05
#> 284 Arkansas Idaho 231.62595 1.716830e-04
#> 285 New Mexico Hawaii 231.25554 1.514708e-04
#> 286 Hawaii Alaska 230.84045 3.139924e-04
#> 287 Maryland Massachusetts 230.67758 1.103674e-04
#> 288 North Dakota Wyoming 229.52167 9.202781e-05
#> 289 Washington North Dakota 228.73618 1.646398e-04
#> 290 Maryland Connecticut 228.36576 1.085072e-04
#> 291 Iowa Kansas 225.68353 8.937893e-05
#> 292 New Mexico Maine 225.68353 8.838043e-05
#> 293 Kansas Alabama 225.26845 1.516252e-04
#> 294 Missouri South Carolina 222.21580 4.422730e-05
#> 295 Florida New Jersey 221.63785 1.105646e-04
#> 296 New York Texas 221.22276 1.565339e-04
#> 297 Wisconsin Maryland 221.05989 1.013122e-04
#> 298 Massachusetts Georgia 220.64480 3.379435e-04
#> 299 Nevada Utah 220.11152 9.584758e-05
#> 300 Alabama South Dakota 218.12544 2.375044e-04
#> 301 Arkansas California 217.38462 2.421874e-04
#> 302 Louisiana Nevada 212.96852 1.980624e-04
#> 303 Ohio Arizona 211.60507 2.363207e-04
#> 304 Florida Iowa 211.02711 4.477449e-04
#> 305 Missouri Minnesota 210.81957 5.470488e-04
#> 306 Florida Michigan 210.07874 2.277701e-04
#> 307 Kentucky North Carolina 209.66366 2.531413e-04
#> 308 Kentucky Arkansas 209.29325 2.266304e-04
#> 309 Michigan Rhode Island 209.29325 3.015674e-04
#> 310 Kentucky Louisiana 207.76692 1.469232e-04
#> 311 Indiana Florida 207.18897 2.217184e-04
#> 312 Illinois Tennessee 206.98143 1.731038e-04
#> 313 Oklahoma Kansas 205.45510 3.066849e-04
#> 314 Oregon Delaware 205.24756 4.075430e-04
#> 315 Colorado Vermont 203.72124 3.023721e-04
#> 316 Illinois New York 201.77983 5.235861e-04
#> 317 Arizona Missouri 201.61696 2.291441e-04
#> 318 Kentucky South Carolina 200.25351 1.870543e-04
#> 319 Alabama Montana 198.89006 2.914379e-04
#> 320 Florida New York 196.00028 8.672792e-04
#> 321 Texas Utah 195.05191 4.258433e-04
#> 322 Utah Mississippi 193.68846 5.364600e-04
#> 323 Maryland Indiana 193.52559 3.052135e-04
#> 324 Kentucky Idaho 191.95460 7.899810e-04
#> 325 Texas Oklahoma 190.68049 1.377458e-04
#> 326 Maryland Kentucky 188.11645 2.242433e-04
#> 327 Utah New Jersey 186.75300 1.419082e-03
#> 328 Michigan Louisiana 185.64176 4.479706e-04
#> 329 Idaho Georgia 185.43422 4.576866e-04
#> 330 New York Hawaii 185.22668 9.508064e-04
#> 331 Minnesota Kansas 184.64872 6.306680e-04
#> 332 Connecticut Missouri 184.64872 8.833619e-04
#> 333 New York West Virginia 184.64872 1.004039e-03
#> 334 Kansas Iowa 184.64872 9.315491e-04
#> 335 Virginia California 184.07077 9.480122e-04
#> 336 New York Alabama 183.28527 6.868722e-04
#> 337 Iowa Colorado 183.12240 4.653506e-04
#> 338 Illinois Wisconsin 180.81058 5.472579e-04
#> 339 Oregon North Dakota 180.60304 5.434036e-04
#> 340 Oregon Texas 180.44017 4.384920e-04
#> 341 Virginia Delaware 180.02508 6.643169e-04
#> 342 Minnesota Maine 180.02508 8.204691e-04
#> 343 Connecticut North Carolina 179.65467 7.195734e-04
#> 344 Indiana West Virginia 179.44713 9.753253e-04
#> 345 Florida Rhode Island 179.44713 1.145505e-03
#> 346 Utah Virginia 179.07672 6.659027e-04
#> 347 Idaho New Mexico 178.49876 3.693087e-04
#> 348 Utah Indiana 174.82349 1.050265e-03
#> 349 New York Utah 174.24553 9.267532e-04
#> 350 New Mexico New Hampshire 170.98534 5.000282e-04
#> 351 Kansas Arizona 170.19985 9.241241e-04
#> 352 Louisiana Mississippi 169.25148 6.106540e-04
#> 353 Arkansas Connecticut 168.46598 1.343969e-03
#> 354 Arizona Utah 167.14720 5.657459e-04
#> 355 Montana Alaska 165.99129 6.685510e-04
#> 356 South Carolina Alabama 165.78375 2.973459e-04
#> 357 Texas Massachusetts 165.20579 1.500234e-03
#> 358 New Mexico Oklahoma 164.25743 7.201470e-04
#> 359 Georgia Arkansas 164.04988 1.023945e-03
#> 360 Wisconsin Michigan 162.31602 1.060441e-03
#> 361 Massachusetts California 162.31602 1.045310e-03
#> 362 Wisconsin Ohio 161.94561 6.162703e-04
#> 363 Wisconsin Indiana 161.36765 9.102145e-04
#> 364 Illinois Oregon 161.16011 9.176315e-04
#> 365 Massachusetts Pennsylvania 158.84829 7.983083e-04
#> 366 Nevada Minnesota 158.84829 8.114144e-04
#> 367 New Jersey Nebraska 158.06279 2.533376e-03
#> 368 California Wyoming 157.48484 2.464808e-03
#> 369 Louisiana Maine 155.95851 1.322343e-03
#> 370 Washington Colorado 155.58810 7.386398e-04
#> 371 Utah Idaho 154.63973 3.452809e-04
#> 372 Tennessee Florida 153.06874 1.192745e-03
#> 373 Montana Washington 152.49078 1.939049e-03
#> 374 Arizona Wisconsin 152.49078 1.807847e-03
#> 375 Arizona North Carolina 151.54242 2.858131e-04
#> 376 Louisiana North Dakota 150.96446 1.742869e-03
#> 377 North Carolina Louisiana 150.59405 1.754427e-04
#> 378 Iowa Pennsylvania 149.80855 1.834351e-03
#> 379 Nevada Montana 149.60101 2.547350e-03
#> 380 Connecticut Hawaii 149.43814 1.420841e-03
#> 381 Nevada Kentucky 147.70427 5.687313e-04
#> 382 New York New Hampshire 147.28919 3.037346e-03
#> 383 Connecticut Rhode Island 146.91878 1.240263e-03
#> 384 New Jersey Massachusetts 145.18491 2.383839e-03
#> 385 South Dakota Nevada 144.60696 1.073709e-03
#> 386 Kentucky Maryland 144.44409 3.426480e-04
#> 387 Michigan Florida 144.02900 2.535740e-03
#> 388 Colorado South Carolina 144.02900 2.094190e-03
#> 389 Massachusetts Kansas 143.24350 2.495060e-03
#> 390 West Virginia Vermont 143.08063 9.162130e-04
#> 391 Maryland Delaware 142.71022 6.449657e-04
#> 392 South Carolina Texas 141.71718 6.032472e-04
#> 393 Oregon New York 141.71718 2.787653e-03
#> 394 Illinois Georgia 141.34677 1.282342e-03
#> 395 Maryland Virginia 141.13923 1.473539e-03
#> 396 Nevada Tennessee 140.56127 2.104413e-03
#> 397 Wisconsin Illinois 138.82741 2.198166e-03
#> 398 New York North Carolina 137.67150 3.384497e-03
#> 399 South Carolina Idaho 136.51559 1.887983e-03
#> 400 California Iowa 135.93763 1.477889e-03
#> 401 Maine Arkansas 135.73009 3.345737e-03
#> 402 Missouri Maryland 134.78172 2.002650e-03
#> 403 Utah Alaska 134.57418 2.696791e-03
#> 404 Oregon Wisconsin 134.20377 3.448561e-03
#> 405 Iowa Nebraska 133.62581 1.211949e-03
#> 406 Michigan Tennessee 133.04786 2.560440e-03
#> 407 Ohio Nevada 132.46990 2.425016e-03
#> 408 California Mississippi 132.26236 6.690999e-03
#> 409 Vermont Michigan 131.52153 1.984432e-03
#> 410 Georgia Louisiana 131.52153 1.839865e-03
#> 411 Rhode Island New Jersey 130.94358 6.145164e-04
#> 412 Maryland Illinois 130.94358 1.153979e-03
#> 413 New York California 130.73603 4.193551e-03
#> 414 Rhode Island Connecticut 130.73603 9.672367e-04
#> 415 Wisconsin Colorado 130.36562 2.440327e-03
#> 416 North Dakota Michigan 130.15808 3.182675e-03
#> 417 Tennessee Missouri 129.00217 3.985264e-03
#> 418 Oregon Idaho 128.63176 2.646370e-03
#> 419 Nevada New Mexico 127.84626 2.393214e-03
#> 420 Vermont Connecticut 127.84626 3.883026e-03
#> 421 Wisconsin New York 127.84626 5.607680e-03
#> 422 North Carolina Arizona 127.47585 2.661539e-03
#> 423 Kentucky Ohio 125.37157 1.488467e-03
#> 424 Kansas Hawaii 124.95648 6.493295e-03
#> 425 Indiana South Dakota 124.58607 3.901952e-03
#> 426 Illinois Rhode Island 124.58607 3.206254e-03
#> 427 Washington Montana 124.37853 6.542865e-03
#> 428 Indiana Maine 124.21566 2.585784e-03
#> 429 Kentucky Vermont 123.63770 2.040280e-03
#> 430 Arizona North Dakota 123.43016 3.130850e-03
#> 431 Iowa South Carolina 123.22262 6.880376e-03
#> 432 Connecticut Florida 123.05975 1.614250e-03
#> 433 Maine Wisconsin 122.85221 4.214776e-03
#> 434 Kentucky Oklahoma 122.64466 3.622980e-03
#> 435 Maryland Washington 122.48179 2.623386e-03
#> 436 Nevada Rhode Island 121.11834 3.539960e-03
#> 437 Kentucky Georgia 121.11834 2.202450e-03
#> 438 Montana New Jersey 120.91080 4.875389e-03
#> 439 Illinois North Carolina 120.91080 4.184237e-03
#> 440 Kentucky Rhode Island 119.17693 7.760628e-03
#> 441 Pennsylvania Indiana 118.22857 3.208481e-03
#> 442 South Dakota Massachusetts 118.02102 6.749795e-03
#> 443 Kansas Louisiana 117.65061 3.858097e-03
#> 444 Connecticut Alaska 117.65061 5.501455e-03
#> 445 Maine Maryland 117.07266 3.092723e-03
#> 446 Tennessee Kentucky 117.07266 1.134171e-03
#> 447 Connecticut Minnesota 116.12429 1.846117e-03
#> 448 Washington California 115.33879 5.281224e-03
#> 449 Mississippi Alabama 114.96838 4.095180e-03
#> 450 Louisiana New Mexico 114.96838 2.700978e-03
#> 451 New Jersey Texas 114.76084 5.922073e-03
#> 452 Illinois Ohio 114.76084 6.759365e-03
#> 453 North Dakota Washington 113.97534 5.343911e-03
#> 454 Massachusetts Missouri 113.97534 9.795469e-03
#> 455 Utah Colorado 113.97534 8.414143e-03
#> 456 Hawaii Arkansas 113.18984 1.059896e-02
#> 457 Washington Oregon 112.65656 1.871252e-03
#> 458 South Carolina Wyoming 112.49369 4.328525e-05
#> 459 Nevada Alabama 112.44902 4.871329e-03
#> 460 Oregon South Dakota 111.87106 6.767105e-03
#> 461 Utah Maryland 111.29311 6.808966e-03
#> 462 Connecticut Illinois 110.71515 4.572377e-03
#> 463 Minnesota Missouri 109.76678 4.080069e-03
#> 464 Alaska Nevada 108.98129 6.608532e-03
#> 465 Ohio Virginia 108.98129 4.360375e-03
#> 466 Maine Minnesota 108.40333 6.963528e-03
#> 467 Texas Connecticut 107.82538 7.216918e-03
#> 468 South Carolina Illinois 107.82538 8.609850e-03
#> 469 Utah South Carolina 107.45496 4.466276e-03
#> 470 Florida Maryland 107.24742 8.930286e-03
#> 471 Idaho Kansas 107.03988 8.581206e-03
#> 472 Colorado Nebraska 105.51356 9.006652e-03
#> 473 Vermont Washington 105.51356 7.509848e-03
#> 474 Illinois Alabama 105.51356 1.087877e-02
#> 475 Massachusetts Texas 105.14314 5.321135e-03
#> 476 South Carolina North Carolina 105.14314 1.986719e-03
#> 477 Illinois West Virginia 104.93560 6.385436e-03
#> 478 Maryland New Mexico 104.56519 4.973292e-03
#> 479 Indiana Wisconsin 104.35765 7.598905e-03
#> 480 Arizona Tennessee 103.77969 1.049254e-02
#> 481 Texas Florida 102.83132 5.524981e-03
#> 482 Iowa Montana 102.83132 5.591543e-03
#> 483 Virginia Colorado 102.62378 9.811959e-03
#> 484 Arizona Oklahoma 102.25337 3.778369e-03
#> 485 Texas Ohio 102.04583 1.158547e-02
#> 486 Idaho Delaware 102.04583 1.044892e-02
#> 487 North Dakota California 101.83828 1.017547e-02
#> 488 Massachusetts Virginia 100.88992 1.190928e-02
#> 489 Alabama Virginia 99.15605 5.405799e-03
#> 490 Utah Georgia 98.20768 7.127011e-03
#> 491 Maryland Nevada 98.20768 6.859289e-03
#> 492 Mississippi Arizona 97.83727 3.944569e-03
#> 493 Maryland New Jersey 97.62973 7.396155e-03
#> 494 Kentucky Massachusetts 97.62973 6.379950e-03
#> 495 Ohio Utah 97.05177 7.967799e-03
#> 496 Idaho Wyoming 97.05177 7.900740e-03
#> 497 Alaska New York 97.05177 9.058677e-03
#> 498 Wisconsin Oregon 96.47382 8.134520e-03
#> 499 Hawaii West Virginia 96.26628 7.086047e-03
#> 500 Minnesota Tennessee 95.89586 6.089047e-03
#> 501 Rhode Island Alabama 95.68832 1.398781e-02
#> 502 Massachusetts Vermont 95.31791 7.972220e-03
#> 503 Pennsylvania South Carolina 95.11037 1.711507e-02
#> 504 Connecticut Louisiana 95.11037 1.627277e-02
#> 505 Georgia Florida 94.73995 6.471448e-03
#> 506 Illinois South Dakota 94.73995 1.160546e-02
#> 507 Hawaii Rhode Island 93.58404 1.146824e-02
#> 508 Michigan Kansas 93.00609 1.176285e-02
#> 509 Illinois New Hampshire 92.42813 8.866999e-03
#> 510 Ohio Tennessee 90.69427 1.042987e-02
#> 511 New Jersey Iowa 90.69427 1.119697e-02
#> 512 Rhode Island California 90.32386 7.356357e-03
#> 513 Oregon Ohio 89.74590 8.985257e-03
#> 514 Utah Illinois 89.53836 1.127131e-02
#> 515 Oklahoma Florida 89.53836 1.161619e-02
#> 516 Rhode Island Arizona 89.53836 7.324222e-03
#> 517 Minnesota Hawaii 89.33081 1.417172e-02
#> 518 Pennsylvania New Mexico 88.96040 1.272832e-02
#> 519 Virginia Wyoming 88.96040 1.093823e-02
#> 520 South Dakota Utah 88.38245 1.258983e-02
#> 521 Vermont New York 88.38245 1.286948e-02
#> 522 Missouri Iowa 88.01204 4.719315e-03
#> 523 Rhode Island Michigan 87.80449 9.839269e-03
#> 524 Wisconsin New Jersey 87.80449 1.158877e-02
#> 525 Colorado New Mexico 87.22654 1.518479e-02
#> 526 Hawaii Arizona 87.01899 1.548154e-02
#> 527 Idaho Alaska 87.01899 1.899184e-02
#> 528 North Dakota Kentucky 86.64858 1.125234e-02
#> 529 Texas California 85.49267 1.581585e-02
#> 530 Michigan Indiana 85.12226 1.049818e-02
#> 531 New York Maine 84.91472 1.622826e-02
#> 532 South Carolina Tennessee 84.54430 9.240073e-03
#> 533 Kansas Wisconsin 84.33676 1.526751e-02
#> 534 Texas Idaho 84.33676 1.639647e-02
#> 535 Wyoming Vermont 83.75881 1.594679e-02
#> 536 Alaska North Dakota 83.18085 1.640746e-02
#> 537 Rhode Island Mississippi 82.97331 9.887816e-03
#> 538 Virginia Maryland 82.60290 1.809431e-02
#> 539 Kansas New Mexico 82.02494 1.659966e-02
#> 540 Maine Nebraska 82.02494 1.814918e-02
#> 541 South Dakota Florida 81.44699 1.850974e-02
#> 542 Delaware New York 81.44699 1.839935e-02
#> 543 Illinois Connecticut 81.44699 1.533611e-02
#> 544 Louisiana Pennsylvania 81.07657 6.206749e-03
#> 545 Florida New Hampshire 80.49862 7.087555e-03
#> 546 Oregon Iowa 80.29108 1.554009e-02
#> 547 Louisiana Wisconsin 80.29108 2.024123e-02
#> 548 New Jersey Idaho 79.71312 2.128059e-02
#> 549 New Jersey Pennsylvania 79.71312 1.565401e-02
#> 550 Oregon Missouri 79.71312 1.434255e-02
#> 551 Nevada Iowa 78.55721 2.227202e-02
#> 552 North Dakota Indiana 78.55721 1.664702e-02
#> 553 Maryland South Dakota 78.18680 1.039338e-02
#> 554 Illinois Maryland 78.18680 1.887859e-02
#> 555 North Carolina Delaware 77.60884 1.258580e-02
#> 556 Arizona Texas 76.82335 1.870102e-02
#> 557 Georgia Nevada 76.45293 1.415986e-02
#> 558 Oklahoma Utah 76.45293 4.088944e-03
#> 559 California Alabama 76.24539 2.525752e-02
#> 560 Wisconsin Maine 75.66744 2.003034e-02
#> 561 Florida Pennsylvania 75.29702 1.745814e-02
#> 562 New Hampshire Illinois 75.29702 1.284292e-02
#> 563 Georgia Oklahoma 75.08948 2.525824e-02
#> 564 Virginia Hawaii 75.08948 2.656246e-02
#> 565 New Hampshire New York 74.71907 1.409586e-02
#> 566 Colorado New Jersey 74.71907 1.230978e-02
#> 567 Montana Wyoming 74.71907 1.212950e-02
#> 568 Kansas Vermont 74.71907 1.196951e-02
#> 569 Hawaii Minnesota 74.51153 2.025565e-02
#> 570 Tennessee Mississippi 74.34866 2.916105e-03
#> 571 Utah Kansas 73.93357 1.954306e-02
#> 572 Hawaii North Dakota 73.93357 2.971861e-02
#> 573 Colorado Massachusetts 73.72603 1.804979e-02
#> 574 Vermont New Hampshire 73.56316 1.197994e-02
#> 575 Arizona Arkansas 73.56316 1.211659e-02
#> 576 South Dakota Wisconsin 73.35562 3.033257e-02
#> 577 Mississippi California 73.35562 3.057161e-02
#> 578 Delaware Wyoming 72.77766 2.275243e-02
#> 579 New York Missouri 72.77766 3.164135e-02
#> 580 Pennsylvania California 72.40725 2.004526e-02
#> 581 California Pennsylvania 72.40725 1.988886e-02
#> 582 Hawaii Delaware 72.19971 3.163106e-02
#> 583 Connecticut Kansas 72.19971 3.089462e-02
#> 584 Colorado Alaska 72.03684 9.952006e-03
#> 585 Virginia Kansas 71.62175 3.348800e-02
#> 586 Georgia Montana 70.88093 3.768807e-03
#> 587 Delaware Minnesota 70.67338 1.904563e-02
#> 588 Hawaii Washington 70.46584 2.870495e-02
#> 589 New York New Mexico 70.46584 2.853455e-02
#> 590 Virginia Texas 70.30297 5.087661e-03
#> 591 Virginia North Carolina 70.09543 1.685574e-02
#> 592 South Dakota Oregon 70.09543 1.774325e-02
#> 593 North Carolina Colorado 69.88789 3.577731e-02
#> 594 Massachusetts South Carolina 69.88789 2.694808e-02
#> 595 Georgia Missouri 69.51747 1.124836e-02
#> 596 Rhode Island Washington 69.14706 6.334941e-03
#> 597 New Mexico Idaho 68.36156 1.841193e-02
#> 598 New Jersey Georgia 68.36156 2.072718e-02
#> 599 Kansas Nebraska 67.78361 2.099402e-02
#> 600 Mississippi New Mexico 67.78361 1.901150e-02
#> 601 Wyoming Illinois 67.57607 3.478747e-02
#> 602 Kansas North Dakota 67.20565 1.277797e-02
#> 603 Iowa Oklahoma 66.62770 1.720679e-02
#> 604 Tennessee Indiana 65.84220 2.984198e-02
#> 605 Oregon Utah 65.47179 1.953562e-02
#> 606 Washington Arkansas 65.10138 7.178111e-03
#> 607 Arizona Georgia 64.89383 1.260847e-02
#> 608 Florida West Virginia 64.52342 7.842684e-03
#> 609 Texas Minnesota 64.31588 2.561129e-02
#> 610 Hawaii Louisiana 64.10834 3.779571e-02
#> 611 Florida Maine 63.73792 2.310646e-02
#> 612 Maryland Tennessee 63.73792 2.556615e-02
#> 613 Kentucky Oregon 63.73792 2.209718e-02
#> 614 Idaho Arizona 63.73792 1.817914e-02
#> 615 Wisconsin Rhode Island 63.15997 2.635569e-02
#> 616 New Mexico Iowa 63.15997 2.562529e-02
#> 617 Connecticut Maryland 62.78956 7.012763e-03
#> 618 Kentucky Illinois 62.58201 1.763830e-02
#> 619 Delaware South Dakota 62.58201 2.711601e-02
#> 620 Illinois Idaho 62.58201 3.446723e-02
#> 621 Maryland Montana 62.21160 1.099538e-02
#> 622 Washington North Carolina 62.00406 2.370034e-02
#> 623 New Mexico Nevada 62.00406 2.487618e-02
#> 624 Arkansas Mississippi 61.63365 5.798285e-03
#> 625 Maine New Hampshire 61.42610 2.973647e-02
#> 626 New Jersey Delaware 61.42610 2.562616e-02
#> 627 New Jersey Connecticut 61.42610 2.958718e-02
#> 628 Oregon Alaska 61.42610 3.048564e-02
#> 629 Idaho Ohio 61.42610 3.451718e-02
#> 630 Missouri Kansas 61.05569 1.695211e-02
#> 631 Nebraska Illinois 60.84815 3.106084e-02
#> 632 Tennessee Montana 60.84815 2.943110e-02
#> 633 New Mexico Alabama 60.84815 2.786738e-02
#> 634 Montana Minnesota 60.27019 2.751062e-02
#> 635 Kentucky Utah 60.27019 2.263089e-02
#> 636 Connecticut Wisconsin 60.27019 2.785588e-02
#> 637 Missouri Ohio 59.69224 3.167481e-02
#> 638 Delaware Arkansas 59.69224 3.459981e-02
#> 639 Indiana Delaware 59.69224 3.243268e-02
#> 640 Delaware Massachusetts 59.69224 3.001380e-02
#> 641 Colorado Michigan 59.32183 1.579589e-02
#> 642 Arkansas Montana 59.11428 3.306999e-02
#> 643 Missouri Idaho 59.11428 3.580958e-02
#> 644 Minnesota New York 59.11428 3.590096e-02
#> 645 New Mexico Illinois 59.11428 3.309705e-02
#> 646 Michigan Kentucky 58.16592 1.400088e-02
#> 647 Texas Colorado 57.95837 3.192671e-02
#> 648 New Hampshire Oregon 57.95837 3.699066e-02
#> 649 Ohio North Carolina 57.95837 3.437380e-02
#> 650 Montana Florida 57.38042 3.842076e-02
#> 651 Texas North Dakota 57.38042 3.596063e-02
#> 652 New Hampshire Hawaii 57.38042 3.773550e-02
#> 653 Pennsylvania New York 57.01001 2.076597e-02
#> 654 Michigan Wyoming 56.80246 3.982405e-02
#> 655 North Dakota Virginia 56.80246 3.542574e-02
#> 656 Wisconsin Connecticut 56.80246 3.861106e-02
#> 657 Washington Louisiana 56.80246 3.673168e-02
#> 658 Hawaii Montana 56.22451 4.326260e-02
#> 659 Florida Indiana 56.22451 4.323924e-02
#> 660 Wisconsin North Dakota 56.22451 3.493243e-02
#> 661 New Jersey Florida 56.22451 3.956452e-02
#> 662 Georgia Arizona 55.85410 1.231718e-02
#> 663 Virginia South Dakota 55.64655 4.057143e-02
#> 664 Wisconsin Iowa 55.64655 4.238189e-02
#> 665 Illinois Alaska 55.64655 4.222557e-02
#> 666 Wisconsin Nevada 55.64655 4.171919e-02
#> 667 Texas Nebraska 55.64655 4.345465e-02
#> 668 Nevada Arkansas 55.43901 4.421492e-02
#> 669 Georgia Colorado 55.06860 4.158605e-02
#> 670 New Jersey Virginia 55.06860 4.370115e-02
#> 671 Georgia West Virginia 55.06860 4.339702e-02
#> 672 Kansas Virginia 55.06860 3.884092e-02
#> 673 Pennsylvania Michigan 54.69819 1.068509e-02
#> 674 Virginia Kentucky 54.49064 4.424356e-02
#> 675 Oklahoma Colorado 54.49064 4.512645e-02
#> 676 Kansas Arkansas 54.49064 4.510702e-02
#> 677 Maryland Alabama 54.49064 4.218965e-02
#> 678 Mississippi Nebraska 54.12023 2.870584e-02
#> 679 Ohio California 53.91269 4.741430e-02
#> 680 South Carolina Missouri 53.91269 4.754008e-02
#> 681 Pennsylvania Rhode Island 53.54228 2.455309e-02
#> 682 Connecticut Texas 53.54228 1.836491e-02
#> 683 Hawaii Pennsylvania 53.33473 4.738011e-02
#> 684 Kansas Connecticut 53.33473 4.959555e-02
#> 685 Oklahoma North Dakota 53.33473 4.457752e-02
#> 686 Iowa South Dakota 52.75678 5.355338e-02
#> 687 Massachusetts Oregon 52.75678 5.044764e-02
#> 688 Oklahoma Kentucky 52.38637 1.669536e-02
#> 689 South Dakota Delaware 52.17882 5.274856e-02
#> 690 Pennsylvania Nevada 51.80841 2.644044e-02
#> 691 Missouri Illinois 51.60087 5.483355e-02
#> 692 Connecticut Oklahoma 51.60087 5.429156e-02
#> 693 Ohio South Carolina 51.60087 5.266955e-02
#> 694 Hawaii New Jersey 51.60087 5.295120e-02
#> 695 Oregon Alabama 51.60087 4.839894e-02
#> 696 Pennsylvania Washington 51.23046 1.895353e-02
#> 697 Wisconsin Pennsylvania 51.23046 1.738332e-02
#> 698 Washington Missouri 51.02291 5.688340e-02
#> 699 Kansas New York 51.02291 5.668915e-02
#> 700 Louisiana Florida 50.65250 2.284893e-02
#> 701 Kentucky Wisconsin 50.44496 5.144748e-02
#> 702 South Carolina New York 50.44496 5.894885e-02
#> 703 Wisconsin Louisiana 50.07455 2.350230e-02
#> 704 Pennsylvania Illinois 49.86700 4.811973e-02
#> 705 Colorado Tennessee 49.86700 5.958448e-02
#> 706 Tennessee Massachusetts 49.86700 6.117307e-02
#> 707 Kansas Indiana 49.49659 3.114100e-02
#> 708 Colorado Arizona 48.91864 3.093403e-02
#> 709 Virginia Indiana 48.91864 2.428543e-02
#> 710 Maine Hawaii 48.91864 1.990578e-02
#> 711 Mississippi Montana 48.91864 2.592521e-02
#> 712 New York Wyoming 48.71109 6.220509e-02
#> 713 Kansas Maine 48.71109 5.456994e-02
#> 714 North Dakota Alaska 48.71109 6.521086e-02
#> 715 Virginia West Virginia 48.34068 2.452080e-02
#> 716 Hawaii Vermont 48.13314 6.752742e-02
#> 717 Ohio Delaware 48.13314 6.673585e-02
#> 718 New Mexico California 48.13314 6.554108e-02
#> 719 Tennessee New York 48.13314 6.747487e-02
#> 720 Oklahoma South Dakota 47.76273 5.535971e-02
#> 721 Illinois Utah 47.55518 6.917485e-02
#> 722 Maine North Carolina 47.55518 6.979803e-02
#> 723 North Carolina South Carolina 47.18477 2.445928e-02
#> 724 Missouri Colorado 46.97723 7.252166e-02
#> 725 Nebraska New York 46.97723 7.284721e-02
#> 726 Washington Texas 46.02886 2.507805e-02
#> 727 Utah Arkansas 46.02886 2.922974e-02
#> 728 Virginia Tennessee 46.02886 3.148209e-02
#> 729 Massachusetts Ohio 46.02886 2.796881e-02
#> 730 Alaska Connecticut 46.02886 3.200768e-02
#> 731 Hawaii Oklahoma 45.82132 7.766070e-02
#> 732 Nevada Georgia 45.82132 6.905771e-02
#> 733 New Hampshire Massachusetts 45.82132 7.765604e-02
#> 734 Oklahoma New Mexico 45.45091 3.021018e-02
#> 735 Oklahoma Michigan 45.45091 2.614755e-02
#> 736 Wisconsin Hawaii 45.45091 4.579027e-02
#> 737 Washington Wisconsin 45.24336 7.985960e-02
#> 738 Kentucky Virginia 45.08049 3.783772e-03
#> 739 Vermont Maine 44.50254 1.360126e-03
#> 740 Virginia Utah 44.29500 3.060244e-02
#> 741 Indiana New Jersey 44.29500 4.038410e-02
#> 742 New Mexico Washington 44.29500 2.706428e-02
#> 743 South Carolina Connecticut 44.29500 4.155146e-02
#> 744 Montana Nevada 43.71704 3.176750e-02
#> 745 Minnesota Massachusetts 43.13909 4.199993e-02
#> 746 Delaware New Mexico 43.13909 4.874734e-02
#> 747 Arkansas New Hampshire 42.56113 4.111597e-02
#> 748 Idaho Rhode Island 42.56113 4.416336e-02
#> 749 Maine Nevada 42.56113 3.979666e-02
#> 750 Mississippi Massachusetts 42.35359 5.200677e-02
#> 751 Georgia Texas 41.98317 3.655378e-02
#> 752 Louisiana Maryland 41.98317 3.491476e-02
#> 753 Connecticut Pennsylvania 41.98317 4.900739e-02
#> 754 New Jersey Maine 41.98317 2.702033e-02
#> 755 Maryland North Carolina 41.98317 4.198933e-02
#> 756 Pennsylvania Massachusetts 41.98317 3.974779e-02
#> 757 Nevada Connecticut 41.77563 6.914852e-02
#> 758 South Dakota West Virginia 41.77563 7.062517e-02
#> 759 Ohio Washington 41.40522 3.683605e-02
#> 760 Washington Ohio 41.40522 3.679614e-02
#> 761 New Jersey Louisiana 41.40522 4.218570e-02
#> 762 Michigan Minnesota 41.40522 1.597578e-02
#> 763 South Dakota Mississippi 41.40522 3.842395e-02
#> 764 Pennsylvania Oklahoma 41.40522 4.161978e-02
#> 765 Hawaii Florida 40.82726 5.792010e-02
#> 766 Oregon Colorado 40.82726 3.812943e-02
#> 767 New Mexico Utah 40.82726 4.903132e-02
#> 768 Florida South Dakota 40.82726 5.282585e-02
#> 769 New Jersey Oregon 40.24931 4.134414e-02
#> 770 Louisiana Nebraska 40.24931 4.607275e-02
#> 771 West Virginia Missouri 40.24931 4.622417e-02
#> 772 New York Idaho 40.04177 6.882194e-02
#> 773 Connecticut Kentucky 39.67135 5.256780e-02
#> 774 Oregon Rhode Island 39.67135 4.932079e-02
#> 775 Colorado North Dakota 39.67135 4.414103e-02
#> 776 Nevada Washington 39.67135 4.881874e-02
#> 777 Ohio Kansas 39.67135 4.394570e-02
#> 778 Mississippi Idaho 39.67135 4.487012e-02
#> 779 Arkansas South Carolina 39.67135 4.772913e-02
#> 780 Michigan Pennsylvania 39.67135 4.856438e-02
#> 781 Pennsylvania Wisconsin 39.67135 4.793116e-02
#> 782 New York Vermont 39.46381 7.754125e-02
#> 783 Rhode Island Nevada 39.09340 5.155318e-02
#> 784 Iowa Kentucky 39.09340 5.027930e-02
#> 785 Hawaii California 38.51544 6.764149e-02
#> 786 Washington Connecticut 38.51544 5.062487e-02
#> 787 Wisconsin Arizona 38.51544 5.459765e-02
#> 788 Louisiana Delaware 38.51544 5.067335e-02
#> 789 New Mexico Virginia 37.93749 5.150194e-02
#> 790 Georgia Utah 37.93749 1.861285e-02
#> 791 Montana Idaho 37.93749 6.590165e-02
#> 792 Iowa Georgia 37.93749 5.490989e-02
#> 793 Montana Michigan 37.93749 5.294714e-02
#> 794 Texas Vermont 37.35953 5.287051e-02
#> 795 Hawaii New Mexico 37.35953 5.599014e-02
#> 796 Wisconsin Tennessee 37.35953 7.499030e-02
#> 797 Louisiana Alabama 37.35953 5.696014e-02
#> 798 Michigan Alabama 36.78158 6.360279e-02
#> 799 Hawaii Illinois 36.78158 6.666248e-02
#> 800 North Dakota Texas 36.78158 5.873564e-02
#> 801 Louisiana Minnesota 36.78158 5.562865e-02
#> 802 Wisconsin Alaska 36.78158 5.657518e-02
#> 803 Kentucky New Hampshire 36.20362 5.765826e-02
#> 804 New Jersey Utah 36.20362 6.492351e-02
#> 805 Louisiana Idaho 36.20362 7.393885e-02
#> 806 Kansas Oregon 36.20362 6.997432e-02
#> 807 South Dakota Vermont 35.62567 6.490295e-02
#> 808 Washington Hawaii 35.62567 5.845560e-02
#> 809 Texas Washington 35.62567 6.383422e-02
#> 810 Wisconsin Arkansas 35.62567 6.162128e-02
#> 811 Virginia Iowa 35.62567 6.607196e-02
#> 812 New Mexico Kansas 35.62567 7.063472e-02
#> 813 Massachusetts New Jersey 35.04771 6.303546e-02
#> 814 New York Washington 35.04771 7.238896e-02
#> 815 New Jersey Wisconsin 35.04771 7.270471e-02
#> 816 Tennessee Oklahoma 35.04771 6.696274e-02
#> 817 Oklahoma Oregon 35.04771 7.346781e-02
#> 818 Arkansas Minnesota 35.04771 6.277080e-02
#> 819 Illinois Arizona 34.84017 6.293650e-02
#> 820 Virginia Louisiana 34.67730 1.005418e-02
#> 821 Ohio Rhode Island 34.46976 7.408432e-02
#> 822 New York Nevada 34.46976 8.074653e-02
#> 823 Utah Florida 34.46976 7.069884e-02
#> 824 Minnesota Texas 34.46976 6.885094e-02
#> 825 Washington New Mexico 34.46976 7.280523e-02
#> 826 Michigan Maryland 34.09935 1.180956e-02
#> 827 Louisiana Vermont 34.09935 3.035601e-03
#> 828 Delaware Illinois 33.89180 7.286811e-02
#> 829 Connecticut Utah 33.89180 7.041170e-02
#> 830 Mississippi Ohio 33.89180 8.040252e-02
#> 831 Ohio Michigan 33.89180 6.812301e-02
#> 832 Alabama Maryland 33.89180 5.724941e-02
#> 833 Washington Indiana 33.89180 7.137730e-02
#> 834 Michigan New Mexico 33.89180 6.681319e-02
#> 835 Massachusetts Oklahoma 33.31385 7.965358e-02
#> 836 Delaware Idaho 33.31385 7.652011e-02
#> 837 Missouri New Jersey 33.31385 7.831519e-02
#> 838 Maine Rhode Island 33.31385 8.029675e-02
#> 839 Nevada Maine 33.31385 7.603723e-02
#> 840 Delaware New Hampshire 32.73589 7.788666e-02
#> 841 South Carolina Nevada 32.73589 7.563727e-02
#> 842 Louisiana Oklahoma 32.73589 7.806487e-02
#> 843 Idaho Missouri 32.73589 8.118913e-02
#> 844 Arizona Indiana 32.73589 7.873518e-02
#> 845 Wisconsin Virginia 32.73589 8.720799e-02
#> 846 Kansas Illinois 32.15794 8.759898e-02
#> 847 New Jersey Colorado 32.15794 8.082467e-02
#> 848 Missouri California 32.15794 8.378484e-02
#> 849 Nebraska Michigan 32.15794 8.084906e-02
#> 850 Ohio Iowa 32.15794 7.512612e-02
#> 851 Oklahoma Wyoming 32.15794 8.232274e-02
#> 852 Connecticut West Virginia 32.15794 8.297259e-02
#> 853 Maine North Dakota 32.15794 8.291521e-02
#> 854 South Dakota Hawaii 32.15794 8.336006e-02
#> 855 Tennessee Kansas 31.78753 2.218041e-03
#> 856 Texas Georgia 31.78753 5.188017e-03
#> 857 Ohio Maine 31.57998 7.884023e-02
#> 858 Arizona Montana 31.57998 8.488054e-02
#> 859 Alabama Georgia 31.57998 8.532791e-02
#> 860 Kentucky South Dakota 31.57998 8.199082e-02
#> 861 Massachusetts Louisiana 31.57998 8.554954e-02
#> 862 Arizona Iowa 31.57998 8.990726e-02
#> 863 Arizona Hawaii 31.57998 9.165442e-02
#> 864 Tennessee Connecticut 31.57998 8.940527e-02
#> 865 North Carolina California 31.00203 9.386557e-02
#> 866 New York Colorado 31.00203 1.012622e-01
Each row corresponds to a directed edge. The first column indicates the origin node, the second the destination node. The third column displays the gain in model fit from each added edge. The last column displays the p-value from the Vuong test of each edge. There is a generic plot method to inspect the results. If more tweaking is required, the results are a dataframe so it should be easy for the more experienced users to make your own plot. With type = "improvement" the improvement from each edge can be plotted:
plot(results, type = "improvement")
We can also quickly check the p-value from the Vuong test associated with each edge addition:
plot(results, type = 'p-value')
In order to produce a quick visualization of the resulting diffusion network we can use the plot method again, this time with type = "network". Note that in order to use this functionality the igraph package has to be installed.
#install.packages('igraph')
# For this functionality the igraph package has to be installed
# This code is only executed if the package is found:
if(requireNamespace("igraph", quietly = TRUE)) {
plot(results, type = "network")
}
If additional tweaking of the plot is desired, the network can be visualized using igraph explicitly. We refer you you to the igraph documentation for details on how to customize the plot.
if(requireNamespace("igraph", quietly = TRUE)) {
library(igraph)
g <- graph_from_data_frame(d = results[, 1:2])
plot(g, edge.arrow.size=.3, vertex.color = "grey70")
}
We will release an R-package for policy diffusion analysis spid. Until then you can already use some of the functions either by downloading them directly from the github repository ()[https://github.com/desmarais-lab/spid] or by installing the (alpha version of) the package:
library(spid)
We want to evaluate each combination of three parameters on a grid:
n_edges = c(500, 700)
lambdas = c(0.5, 1)
time_windows = c(50, 100)
param_grid = expand.grid(n_edges, lambdas, time_windows)
colnames(param_grid) = c('n_edges', 'lambdas', 'time_windows')
print(param_grid)
#> n_edges lambdas time_windows
#> 1 500 0.5 50
#> 2 700 0.5 50
#> 3 500 1.0 50
#> 4 700 1.0 50
#> 5 500 0.5 100
#> 6 700 0.5 100
#> 7 500 1.0 100
#> 8 700 1.0 100
For each grid point, we need to infer a network for every year using the parameters of that grid point. For one year:
library(spid)
network = infer_network(time = 1960, time_window = time_windows[1],
cascades = policy_cascades, params = lambdas[1],
n_edges = n_edges[1])
print(network)
#> origin_node destination_node time
#> 1 Arkansas Mississippi 1960
#> 2 Oregon Kentucky 1960
#> 3 New York Connecticut 1960
#> 4 New Jersey Rhode Island 1960
#> 5 New Jersey Oregon 1960
#> 6 New York Pennsylvania 1960
#> 7 New Jersey Florida 1960
#> 8 New York Maine 1960
#> 9 Washington Wyoming 1960
#> 10 New Jersey Ohio 1960
#> 11 New York New Hampshire 1960
#> 12 New Jersey Tennessee 1960
#> 13 New Jersey North Carolina 1960
#> 14 New Jersey South Carolina 1960
#> 15 Oregon Georgia 1960
#> 16 Oregon Oklahoma 1960
#> 17 New Jersey Virginia 1960
#> 18 Ohio Texas 1960
#> 19 Colorado Louisiana 1960
#> 20 California Nevada 1960
#> 21 New Jersey Alabama 1960
#> 22 New Jersey New York 1960
#> 23 Washington Missouri 1960
#> 24 New Jersey Arkansas 1960
#> 25 North Dakota Idaho 1960
#> 26 North Dakota Arizona 1960
#> 27 Michigan Delaware 1960
#> 28 Ohio Maryland 1960
#> 29 New York Massachusetts 1960
#> 30 New Jersey Minnesota 1960
#> 31 New York New Mexico 1960
#> 32 Washington Colorado 1960
#> 33 Idaho Kansas 1960
#> 34 New Jersey Montana 1960
#> 35 North Dakota South Dakota 1960
#> 36 Michigan West Virginia 1960
#> 37 Oregon Vermont 1960
#> 38 Connecticut New Jersey 1960
#> 39 New Jersey Indiana 1960
#> 40 New Jersey Michigan 1960
#> 41 Pennsylvania California 1960
#> 42 Arizona Nebraska 1960
#> 43 Ohio Illinois 1960
#> 44 New Jersey Washington 1960
#> 45 Ohio North Dakota 1960
#> 46 New York Utah 1960
#> 47 New Jersey Iowa 1960
#> 48 Alabama New Mexico 1960
#> 49 Louisiana Florida 1960
#> 50 New York Wisconsin 1960
#> 51 North Dakota South Carolina 1960
#> 52 Kentucky Arkansas 1960
#> 53 North Dakota Montana 1960
#> 54 New Jersey Idaho 1960
#> 55 Tennessee Indiana 1960
#> 56 Oregon Louisiana 1960
#> 57 Vermont Maine 1960
#> 58 Florida Mississippi 1960
#> 59 Connecticut Vermont 1960
#> 60 Ohio West Virginia 1960
#> 61 Oregon Tennessee 1960
#> 62 California Ohio 1960
#> 63 Wisconsin Oregon 1960
#> 64 California Arizona 1960
#> 65 New Mexico North Carolina 1960
#> 66 Arkansas Alabama 1960
#> 67 Alabama Utah 1960
#> 68 North Carolina Virginia 1960
#> 69 Illinois Rhode Island 1960
#> 70 New Jersey Kentucky 1960
#> 71 Wisconsin Kansas 1960
#> 72 Arkansas Nebraska 1960
#> 73 Florida Nevada 1960
#> 74 Colorado Pennsylvania 1960
#> 75 New Jersey Illinois 1960
#> 76 Arkansas New Hampshire 1960
#> 77 Washington Massachusetts 1960
#> 78 Illinois Colorado 1960
#> 79 North Dakota Texas 1960
#> 80 California Washington 1960
#> 81 Vermont Wisconsin 1960
#> 82 Illinois Michigan 1960
#> 83 Louisiana Maryland 1960
#> 84 Rhode Island Connecticut 1960
#> 85 Colorado New Jersey 1960
#> 86 Arizona Georgia 1960
#> 87 North Dakota Iowa 1960
#> 88 Alabama Florida 1960
#> 89 Rhode Island Missouri 1960
#> 90 Kentucky South Dakota 1960
#> 91 Pennsylvania New York 1960
#> 92 Florida Wyoming 1960
#> 93 Illinois Minnesota 1960
#> 94 Kentucky Oklahoma 1960
#> 95 Illinois California 1960
#> 96 Pennsylvania Indiana 1960
#> 97 South Carolina Arkansas 1960
#> 98 Kentucky Montana 1960
#> 99 Illinois New Hampshire 1960
#> 100 Louisiana Washington 1960
#> 101 Virginia North Dakota 1960
#> 102 North Dakota Delaware 1960
#> 103 Oklahoma Kentucky 1960
#> 104 Iowa Louisiana 1960
#> 105 North Dakota Minnesota 1960
#> 106 Maryland New Mexico 1960
#> 107 Louisiana Illinois 1960
#> 108 Arizona Maine 1960
#> 109 Rhode Island Hawaii 1960
#> 110 Arkansas Arizona 1960
#> 111 Arizona Colorado 1960
#> 112 Arkansas North Carolina 1960
#> 113 Connecticut Alaska 1960
#> 114 Tennessee Rhode Island 1960
#> 115 Wisconsin New Jersey 1960
#> 116 California Michigan 1960
#> 117 Arizona Idaho 1960
#> 118 New Jersey Colorado 1960
#> 119 Kentucky Nebraska 1960
#> 120 Illinois South Dakota 1960
#> 121 Maryland Utah 1960
#> 122 Florida Virginia 1960
#> 123 Virginia Georgia 1960
#> 124 Michigan Alabama 1960
#> 125 North Dakota Oregon 1960
#> 126 New York Maryland 1960
#> 127 Wyoming Vermont 1960
#> 128 Minnesota California 1960
#> 129 Tennessee Kansas 1960
#> 130 Virginia Texas 1960
#> 131 Louisiana Ohio 1960
#> 132 Delaware North Carolina 1960
#> 133 Louisiana Oklahoma 1960
#> 134 Virginia Wyoming 1960
#> 135 California Tennessee 1960
#> 136 New Jersey Connecticut 1960
#> 137 North Dakota New York 1960
#> 138 Illinois Wisconsin 1960
#> 139 Louisiana North Dakota 1960
#> 140 New York Arizona 1960
#> 141 New York New Jersey 1960
#> 142 Colorado Nevada 1960
#> 143 Vermont Delaware 1960
#> 144 South Carolina Connecticut 1960
#> 145 Arkansas New Mexico 1960
#> 146 Alabama Pennsylvania 1960
#> 147 Washington Illinois 1960
#> 148 Illinois Florida 1960
#> 149 Tennessee South Carolina 1960
#> 150 Maryland Maine 1960
#> 151 Delaware Arkansas 1960
#> 152 Connecticut West Virginia 1960
#> 153 Mississippi Texas 1960
#> 154 New Jersey Vermont 1960
#> 155 Arkansas Iowa 1960
#> 156 West Virginia Tennessee 1960
#> 157 Illinois Massachusetts 1960
#> 158 Illinois Indiana 1960
#> 159 South Carolina Georgia 1960
#> 160 Minnesota Missouri 1960
#> 161 Louisiana Alabama 1960
#> 162 Illinois Iowa 1960
#> 163 Massachusetts Rhode Island 1960
#> 164 Tennessee Arizona 1960
#> 165 South Dakota Tennessee 1960
#> 166 Montana Washington 1960
#> 167 Pennsylvania Oregon 1960
#> 168 Illinois Nebraska 1960
#> 169 Utah North Dakota 1960
#> 170 New Mexico Arkansas 1960
#> 171 Oregon Connecticut 1960
#> 172 South Dakota Wisconsin 1960
#> 173 Michigan New York 1960
#> 174 Vermont Montana 1960
#> 175 Arkansas California 1960
#> 176 Illinois South Carolina 1960
#> 177 Iowa Kentucky 1960
#> 178 Illinois Oregon 1960
#> 179 Michigan Mississippi 1960
#> 180 Wisconsin Utah 1960
#> 181 Georgia Louisiana 1960
#> 182 West Virginia Nevada 1960
#> 183 Maryland New Hampshire 1960
#> 184 Nevada Alabama 1960
#> 185 California Rhode Island 1960
#> 186 Arizona South Dakota 1960
#> 187 New York North Carolina 1960
#> 188 North Dakota Florida 1960
#> 189 Colorado Minnesota 1960
#> 190 Illinois Pennsylvania 1960
#> 191 South Dakota Louisiana 1960
#> 192 Tennessee Maryland 1960
#> 193 Idaho Oklahoma 1960
#> 194 Maryland Washington 1960
#> 195 Oregon Alabama 1960
#> 196 Massachusetts New York 1960
#> 197 Illinois Ohio 1960
#> 198 Minnesota New Jersey 1960
#> 199 Arizona Wyoming 1960
#> 200 New York Virginia 1960
#> 201 Kentucky Nevada 1960
#> 202 Connecticut Massachusetts 1960
#> 203 Massachusetts Wisconsin 1960
#> 204 West Virginia North Carolina 1960
#> 205 Kentucky West Virginia 1960
#> 206 Alabama Arkansas 1960
#> 207 Arizona Pennsylvania 1960
#> 208 New York Michigan 1960
#> 209 Connecticut New York 1960
#> 210 Illinois Idaho 1960
#> 211 Florida Colorado 1960
#> 212 Alabama Virginia 1960
#> 213 Virginia Nebraska 1960
#> 214 Massachusetts Washington 1960
#> 215 New Mexico Rhode Island 1960
#> 216 Arkansas Kansas 1960
#> 217 Minnesota Alaska 1960
#> 218 Alabama South Dakota 1960
#> 219 Idaho Iowa 1960
#> 220 New Jersey California 1960
#> 221 Ohio New Hampshire 1960
#> 222 Colorado Wyoming 1960
#> 223 California Hawaii 1960
#> 224 Kentucky North Dakota 1960
#> 225 Florida Michigan 1960
#> 226 Colorado Rhode Island 1960
#> 227 California Oregon 1960
#> 228 Tennessee Idaho 1960
#> 229 Rhode Island Delaware 1960
#> 230 Oregon Montana 1960
#> 231 Michigan Minnesota 1960
#> 232 Oklahoma Mississippi 1960
#> 233 South Dakota Georgia 1960
#> 234 Oregon Wisconsin 1960
#> 235 Illinois New Jersey 1960
#> 236 Arizona West Virginia 1960
#> 237 Oregon New Mexico 1960
#> 238 Delaware Wyoming 1960
#> 239 Kentucky Idaho 1960
#> 240 Virginia Missouri 1960
#> 241 Tennessee Vermont 1960
#> 242 New Jersey Texas 1960
#> 243 Rhode Island Maryland 1960
#> 244 West Virginia Kentucky 1960
#> 245 New Jersey Massachusetts 1960
#> 246 Illinois Washington 1960
#> 247 Oregon Indiana 1960
#> 248 Indiana Louisiana 1960
#> 249 California New Jersey 1960
#> 250 Louisiana Texas 1960
#> 251 Colorado Massachusetts 1960
#> 252 Louisiana Wisconsin 1960
#> 253 Vermont New York 1960
#> 254 Louisiana South Carolina 1960
#> 255 Connecticut New Hampshire 1960
#> 256 Oregon Utah 1960
#> 257 Maryland New Jersey 1960
#> 258 California Illinois 1960
#> 259 Pennsylvania Arkansas 1960
#> 260 Florida New Mexico 1960
#> 261 Illinois Nevada 1960
#> 262 New York California 1960
#> 263 Illinois Utah 1960
#> 264 Illinois New York 1960
#> 265 Michigan Hawaii 1960
#> 266 Wisconsin California 1960
#> 267 Iowa Nebraska 1960
#> 268 Massachusetts Oregon 1960
#> 269 New Jersey Kansas 1960
#> 270 Arizona North Carolina 1960
#> 271 Connecticut Delaware 1960
#> 272 Illinois Oklahoma 1960
#> 273 New Mexico Delaware 1960
#> 274 Massachusetts Idaho 1960
#> 275 Wyoming North Dakota 1960
#> 276 Pennsylvania Virginia 1960
#> 277 Ohio South Carolina 1960
#> 278 Kentucky Tennessee 1960
#> 279 Colorado Arizona 1960
#> 280 Wisconsin North Carolina 1960
#> 281 Missouri Kansas 1960
#> 282 Michigan Ohio 1960
#> 283 South Carolina Illinois 1960
#> 284 Pennsylvania Connecticut 1960
#> 285 Florida West Virginia 1960
#> 286 New Jersey Maine 1960
#> 287 Arkansas Oregon 1960
#> 288 Minnesota Tennessee 1960
#> 289 Arkansas Colorado 1960
#> 290 Arizona Missouri 1960
#> 291 Iowa Georgia 1960
#> 292 Arizona Arkansas 1960
#> 293 Arkansas South Dakota 1960
#> 294 West Virginia Maryland 1960
#> 295 Tennessee Alabama 1960
#> 296 Mississippi Montana 1960
#> 297 Arizona Mississippi 1960
#> 298 Ohio Florida 1960
#> 299 Virginia Connecticut 1960
#> 300 West Virginia Missouri 1960
#> 301 Arkansas Minnesota 1960
#> 302 Virginia Colorado 1960
#> 303 Maryland Nevada 1960
#> 304 Louisiana Pennsylvania 1960
#> 305 Minnesota Washington 1960
#> 306 Rhode Island Mississippi 1960
#> 307 Kentucky Missouri 1960
#> 308 Illinois Alabama 1960
#> 309 Georgia New Mexico 1960
#> 310 Mississippi Arizona 1960
#> 311 Texas Massachusetts 1960
#> 312 Louisiana Kansas 1960
#> 313 Texas Illinois 1960
#> 314 New Mexico Washington 1960
#> 315 Minnesota Maine 1960
#> 316 New Hampshire Wyoming 1960
#> 317 Minnesota Iowa 1960
#> 318 Florida Delaware 1960
#> 319 Iowa Montana 1960
#> 320 Arizona Utah 1960
#> 321 Nebraska Ohio 1960
#> 322 Georgia Tennessee 1960
#> 323 Kansas Massachusetts 1960
#> 324 Massachusetts Illinois 1960
#> 325 Ohio Colorado 1960
#> 326 Florida Idaho 1960
#> 327 North Dakota Maryland 1960
#> 328 Idaho Arizona 1960
#> 329 Oregon Virginia 1960
#> 330 Arkansas Rhode Island 1960
#> 331 South Carolina Idaho 1960
#> 332 South Dakota Alabama 1960
#> 333 Virginia West Virginia 1960
#> 334 Mississippi Oklahoma 1960
#> 335 Michigan Illinois 1960
#> 336 South Dakota Virginia 1960
#> 337 New Jersey Georgia 1960
#> 338 Maryland Kentucky 1960
#> 339 Minnesota New Hampshire 1960
#> 340 Michigan Colorado 1960
#> 341 Pennsylvania Wisconsin 1960
#> 342 Georgia Arkansas 1960
#> 343 North Dakota Wyoming 1960
#> 344 New Mexico Pennsylvania 1960
#> 345 New York Kentucky 1960
#> 346 California Vermont 1960
#> 347 Ohio Oregon 1960
#> 348 Pennsylvania Maine 1960
#> 349 Alabama Kentucky 1960
#> 350 North Dakota Indiana 1960
#> 351 Kentucky Vermont 1960
#> 352 Delaware North Dakota 1960
#> 353 Pennsylvania Rhode Island 1960
#> 354 Virginia Utah 1960
#> 355 Kentucky Utah 1960
#> 356 Louisiana Nebraska 1960
#> 357 Virginia Pennsylvania 1960
#> 358 Minnesota New York 1960
#> 359 Arizona Minnesota 1960
#> 360 New York Washington 1960
#> 361 Alabama California 1960
#> 362 Virginia Tennessee 1960
#> 363 New Jersey Pennsylvania 1960
#> 364 North Dakota North Carolina 1960
#> 365 California Massachusetts 1960
#> 366 Delaware New Mexico 1960
#> 367 South Carolina Delaware 1960
#> 368 Ohio Connecticut 1960
#> 369 Delaware New Hampshire 1960
#> 370 Louisiana Utah 1960
#> 371 Alabama Kansas 1960
#> 372 North Dakota Arkansas 1960
#> 373 Arkansas Wyoming 1960
#> 374 Connecticut Pennsylvania 1960
#> 375 Illinois Missouri 1960
#> 376 Kentucky Massachusetts 1960
#> 377 South Dakota Michigan 1960
#> 378 Massachusetts Michigan 1960
#> 379 Massachusetts Delaware 1960
#> 380 South Carolina New Hampshire 1960
#> 381 Louisiana Nevada 1960
#> 382 Maryland Virginia 1960
#> 383 Louisiana South Dakota 1960
#> 384 New Jersey Maryland 1960
#> 385 Virginia Kansas 1960
#> 386 Wisconsin Arkansas 1960
#> 387 New York Rhode Island 1960
#> 388 Alabama North Dakota 1960
#> 389 Minnesota North Dakota 1960
#> 390 Florida Maine 1960
#> 391 New Mexico Oklahoma 1960
#> 392 Louisiana California 1960
#> 393 Minnesota Utah 1960
#> 394 North Dakota Nebraska 1960
#> 395 Louisiana Wyoming 1960
#> 396 Iowa South Carolina 1960
#> 397 Minnesota Massachusetts 1960
#> 398 Nebraska Louisiana 1960
#> 399 Nevada Wisconsin 1960
#> 400 Wyoming Oregon 1960
#> 401 Vermont Iowa 1960
#> 402 Idaho New Jersey 1960
#> 403 Delaware Illinois 1960
#> 404 Delaware California 1960
#> 405 Iowa Arkansas 1960
#> 406 Michigan Arizona 1960
#> 407 Pennsylvania Massachusetts 1960
#> 408 Louisiana Massachusetts 1960
#> 409 Florida Texas 1960
#> 410 Maine Michigan 1960
#> 411 Delaware Montana 1960
#> 412 Arkansas Washington 1960
#> 413 Iowa Utah 1960
#> 414 Iowa South Dakota 1960
#> 415 Delaware Idaho 1960
#> 416 Vermont Connecticut 1960
#> 417 Massachusetts Tennessee 1960
#> 418 Minnesota Indiana 1960
#> 419 North Dakota Alabama 1960
#> 420 New Mexico Alabama 1960
#> 421 California Wisconsin 1960
#> 422 Alaska Oregon 1960
#> 423 Washington North Dakota 1960
#> 424 Connecticut North Dakota 1960
#> 425 Kansas New York 1960
#> 426 North Dakota Michigan 1960
#> 427 Wisconsin Iowa 1960
#> 428 South Dakota Hawaii 1960
#> 429 North Dakota Hawaii 1960
#> 430 California Alaska 1960
#> 431 Utah Alaska 1960
#> 432 Nebraska Alaska 1960
#> 433 Kansas Alaska 1960
#> 434 Hawaii Delaware 1960
#> 435 Utah Georgia 1960
#> 436 Montana Maine 1960
#> 437 Kentucky Ohio 1960
#> 438 Georgia Connecticut 1960
#> 439 Utah West Virginia 1960
#> 440 Kentucky New Mexico 1960
#> 441 Kentucky North Carolina 1960
#> 442 Vermont Mississippi 1960
#> 443 Wyoming Arizona 1960
#> 444 West Virginia Indiana 1960
#> 445 South Carolina Nevada 1960
#> 446 Washington New York 1960
#> 447 Maine Florida 1960
#> 448 North Carolina South Carolina 1960
#> 449 Tennessee Arkansas 1960
#> 450 South Carolina Michigan 1960
#> 451 Missouri Nevada 1960
#> 452 South Carolina Tennessee 1960
#> 453 Utah New Mexico 1960
#> 454 South Carolina Utah 1960
#> 455 Pennsylvania Georgia 1960
#> 456 Connecticut North Carolina 1960
#> 457 Rhode Island Kentucky 1960
#> 458 Georgia South Carolina 1960
#> 459 Kansas Vermont 1960
#> 460 New York Oregon 1960
#> 461 Pennsylvania Minnesota 1960
#> 462 New York Montana 1960
#> 463 Nebraska Texas 1960
#> 464 Louisiana Arkansas 1960
#> 465 Mississippi Alabama 1960
#> 466 Montana Michigan 1960
#> 467 Michigan South Carolina 1960
#> 468 Michigan Iowa 1960
#> 469 Georgia Montana 1960
#> 470 Nevada Utah 1960
#> 471 South Carolina Texas 1960
#> 472 Texas Maryland 1960
#> 473 West Virginia Wyoming 1960
#> 474 Alabama North Carolina 1960
#> 475 Mississippi Indiana 1960
#> 476 Colorado Vermont 1960
#> 477 Minnesota Oregon 1960
#> 478 Tennessee Hawaii 1960
#> 479 Mississippi Nebraska 1960
#> 480 Vermont Kentucky 1960
#> 481 Montana Indiana 1960
#> 482 Maryland Illinois 1960
#> 483 Texas Mississippi 1960
#> 484 Oregon Colorado 1960
#> 485 Vermont South Carolina 1960
#> 486 North Carolina Minnesota 1960
#> 487 Missouri Florida 1960
#> 488 Kentucky Colorado 1960
#> 489 Wyoming New Mexico 1960
#> 490 South Carolina Maine 1960
#> 491 Maine South Dakota 1960
#> 492 South Carolina Kansas 1960
#> 493 New York Kansas 1960
#> 494 Hawaii Tennessee 1960
#> 495 New Mexico South Carolina 1960
#> 496 Massachusetts Pennsylvania 1960
#> 497 Hawaii Rhode Island 1960
#> 498 Florida Oklahoma 1960
#> 499 South Carolina Washington 1960
#> 500 Delaware Florida 1960
For all years:
years = 1960:2015
networks = lapply(years, infer_network, time_window = time_windows[1],
cascades = policy_cascades, params = lambdas[1],
n_edges = n_edges[1])
# Cast into single dataframe:
networks = do.call(rbind, networks)
print(networks)
#> origin_node destination_node time
#> 1 Arkansas Mississippi 1960
#> 2 Oregon Kentucky 1960
#> 3 New York Connecticut 1960
#> 4 New Jersey Rhode Island 1960
#> 5 New Jersey Oregon 1960
#> 6 New York Pennsylvania 1960
#> 7 New Jersey Florida 1960
#> 8 New York Maine 1960
#> 9 Washington Wyoming 1960
#> 10 New Jersey Ohio 1960
#> 11 New York New Hampshire 1960
#> 12 New Jersey Tennessee 1960
#> 13 New Jersey North Carolina 1960
#> 14 New Jersey South Carolina 1960
#> 15 Oregon Georgia 1960
#> 16 Oregon Oklahoma 1960
#> 17 New Jersey Virginia 1960
#> 18 Ohio Texas 1960
#> 19 Colorado Louisiana 1960
#> 20 California Nevada 1960
#> 21 New Jersey Alabama 1960
#> 22 New Jersey New York 1960
#> 23 Washington Missouri 1960
#> 24 New Jersey Arkansas 1960
#> 25 North Dakota Idaho 1960
#> 26 North Dakota Arizona 1960
#> 27 Michigan Delaware 1960
#> 28 Ohio Maryland 1960
#> 29 New York Massachusetts 1960
#> 30 New Jersey Minnesota 1960
#> 31 New York New Mexico 1960
#> 32 Washington Colorado 1960
#> 33 Idaho Kansas 1960
#> 34 New Jersey Montana 1960
#> 35 North Dakota South Dakota 1960
#> 36 Michigan West Virginia 1960
#> 37 Oregon Vermont 1960
#> 38 Connecticut New Jersey 1960
#> 39 New Jersey Indiana 1960
#> 40 New Jersey Michigan 1960
#> 41 Pennsylvania California 1960
#> 42 Arizona Nebraska 1960
#> 43 Ohio Illinois 1960
#> 44 New Jersey Washington 1960
#> 45 Ohio North Dakota 1960
#> 46 New York Utah 1960
#> 47 New Jersey Iowa 1960
#> 48 Alabama New Mexico 1960
#> 49 Louisiana Florida 1960
#> 50 New York Wisconsin 1960
#> 51 North Dakota South Carolina 1960
#> 52 Kentucky Arkansas 1960
#> 53 North Dakota Montana 1960
#> 54 New Jersey Idaho 1960
#> 55 Tennessee Indiana 1960
#> 56 Oregon Louisiana 1960
#> 57 Vermont Maine 1960
#> 58 Florida Mississippi 1960
#> 59 Connecticut Vermont 1960
#> 60 Ohio West Virginia 1960
#> 61 Oregon Tennessee 1960
#> 62 California Ohio 1960
#> 63 Wisconsin Oregon 1960
#> 64 California Arizona 1960
#> 65 New Mexico North Carolina 1960
#> 66 Arkansas Alabama 1960
#> 67 Alabama Utah 1960
#> 68 North Carolina Virginia 1960
#> 69 Illinois Rhode Island 1960
#> 70 New Jersey Kentucky 1960
#> 71 Wisconsin Kansas 1960
#> 72 Arkansas Nebraska 1960
#> 73 Florida Nevada 1960
#> 74 Colorado Pennsylvania 1960
#> 75 New Jersey Illinois 1960
#> 76 Arkansas New Hampshire 1960
#> 77 Washington Massachusetts 1960
#> 78 Illinois Colorado 1960
#> 79 North Dakota Texas 1960
#> 80 California Washington 1960
#> 81 Vermont Wisconsin 1960
#> 82 Illinois Michigan 1960
#> 83 Louisiana Maryland 1960
#> 84 Rhode Island Connecticut 1960
#> 85 Colorado New Jersey 1960
#> 86 Arizona Georgia 1960
#> 87 North Dakota Iowa 1960
#> 88 Alabama Florida 1960
#> 89 Rhode Island Missouri 1960
#> 90 Kentucky South Dakota 1960
#> 91 Pennsylvania New York 1960
#> 92 Florida Wyoming 1960
#> 93 Illinois Minnesota 1960
#> 94 Kentucky Oklahoma 1960
#> 95 Illinois California 1960
#> 96 Pennsylvania Indiana 1960
#> 97 South Carolina Arkansas 1960
#> 98 Kentucky Montana 1960
#> 99 Illinois New Hampshire 1960
#> 100 Louisiana Washington 1960
#> 101 Virginia North Dakota 1960
#> 102 North Dakota Delaware 1960
#> 103 Oklahoma Kentucky 1960
#> 104 Iowa Louisiana 1960
#> 105 North Dakota Minnesota 1960
#> 106 Maryland New Mexico 1960
#> 107 Louisiana Illinois 1960
#> 108 Arizona Maine 1960
#> 109 Rhode Island Hawaii 1960
#> 110 Arkansas Arizona 1960
#> 111 Arizona Colorado 1960
#> 112 Arkansas North Carolina 1960
#> 113 Connecticut Alaska 1960
#> 114 Tennessee Rhode Island 1960
#> 115 Wisconsin New Jersey 1960
#> 116 California Michigan 1960
#> 117 Arizona Idaho 1960
#> 118 New Jersey Colorado 1960
#> 119 Kentucky Nebraska 1960
#> 120 Illinois South Dakota 1960
#> 121 Maryland Utah 1960
#> 122 Florida Virginia 1960
#> 123 Virginia Georgia 1960
#> 124 Michigan Alabama 1960
#> 125 North Dakota Oregon 1960
#> 126 New York Maryland 1960
#> 127 Wyoming Vermont 1960
#> 128 Minnesota California 1960
#> 129 Tennessee Kansas 1960
#> 130 Virginia Texas 1960
#> 131 Louisiana Ohio 1960
#> 132 Delaware North Carolina 1960
#> 133 Louisiana Oklahoma 1960
#> 134 Virginia Wyoming 1960
#> 135 California Tennessee 1960
#> 136 New Jersey Connecticut 1960
#> 137 North Dakota New York 1960
#> 138 Illinois Wisconsin 1960
#> 139 Louisiana North Dakota 1960
#> 140 New York Arizona 1960
#> 141 New York New Jersey 1960
#> 142 Colorado Nevada 1960
#> 143 Vermont Delaware 1960
#> 144 South Carolina Connecticut 1960
#> 145 Arkansas New Mexico 1960
#> 146 Alabama Pennsylvania 1960
#> 147 Washington Illinois 1960
#> 148 Illinois Florida 1960
#> 149 Tennessee South Carolina 1960
#> 150 Maryland Maine 1960
#> 151 Delaware Arkansas 1960
#> 152 Connecticut West Virginia 1960
#> 153 Mississippi Texas 1960
#> 154 New Jersey Vermont 1960
#> 155 Arkansas Iowa 1960
#> 156 West Virginia Tennessee 1960
#> 157 Illinois Massachusetts 1960
#> 158 Illinois Indiana 1960
#> 159 South Carolina Georgia 1960
#> 160 Minnesota Missouri 1960
#> 161 Louisiana Alabama 1960
#> 162 Illinois Iowa 1960
#> 163 Massachusetts Rhode Island 1960
#> 164 Tennessee Arizona 1960
#> 165 South Dakota Tennessee 1960
#> 166 Montana Washington 1960
#> 167 Pennsylvania Oregon 1960
#> 168 Illinois Nebraska 1960
#> 169 Utah North Dakota 1960
#> 170 New Mexico Arkansas 1960
#> 171 Oregon Connecticut 1960
#> 172 South Dakota Wisconsin 1960
#> 173 Michigan New York 1960
#> 174 Vermont Montana 1960
#> 175 Arkansas California 1960
#> 176 Illinois South Carolina 1960
#> 177 Iowa Kentucky 1960
#> 178 Illinois Oregon 1960
#> 179 Michigan Mississippi 1960
#> 180 Wisconsin Utah 1960
#> 181 Georgia Louisiana 1960
#> 182 West Virginia Nevada 1960
#> 183 Maryland New Hampshire 1960
#> 184 Nevada Alabama 1960
#> 185 California Rhode Island 1960
#> 186 Arizona South Dakota 1960
#> 187 New York North Carolina 1960
#> 188 North Dakota Florida 1960
#> 189 Colorado Minnesota 1960
#> 190 Illinois Pennsylvania 1960
#> 191 South Dakota Louisiana 1960
#> 192 Tennessee Maryland 1960
#> 193 Idaho Oklahoma 1960
#> 194 Maryland Washington 1960
#> 195 Oregon Alabama 1960
#> 196 Massachusetts New York 1960
#> 197 Illinois Ohio 1960
#> 198 Minnesota New Jersey 1960
#> 199 Arizona Wyoming 1960
#> 200 New York Virginia 1960
#> 201 Kentucky Nevada 1960
#> 202 Connecticut Massachusetts 1960
#> 203 Massachusetts Wisconsin 1960
#> 204 West Virginia North Carolina 1960
#> 205 Kentucky West Virginia 1960
#> 206 Alabama Arkansas 1960
#> 207 Arizona Pennsylvania 1960
#> 208 New York Michigan 1960
#> 209 Connecticut New York 1960
#> 210 Illinois Idaho 1960
#> 211 Florida Colorado 1960
#> 212 Alabama Virginia 1960
#> 213 Virginia Nebraska 1960
#> 214 Massachusetts Washington 1960
#> 215 New Mexico Rhode Island 1960
#> 216 Arkansas Kansas 1960
#> 217 Minnesota Alaska 1960
#> 218 Alabama South Dakota 1960
#> 219 Idaho Iowa 1960
#> 220 New Jersey California 1960
#> 221 Ohio New Hampshire 1960
#> 222 Colorado Wyoming 1960
#> 223 California Hawaii 1960
#> 224 Kentucky North Dakota 1960
#> 225 Florida Michigan 1960
#> 226 Colorado Rhode Island 1960
#> 227 California Oregon 1960
#> 228 Tennessee Idaho 1960
#> 229 Rhode Island Delaware 1960
#> 230 Oregon Montana 1960
#> 231 Michigan Minnesota 1960
#> 232 Oklahoma Mississippi 1960
#> 233 South Dakota Georgia 1960
#> 234 Oregon Wisconsin 1960
#> 235 Illinois New Jersey 1960
#> 236 Arizona West Virginia 1960
#> 237 Oregon New Mexico 1960
#> 238 Delaware Wyoming 1960
#> 239 Kentucky Idaho 1960
#> 240 Virginia Missouri 1960
#> 241 Tennessee Vermont 1960
#> 242 New Jersey Texas 1960
#> 243 Rhode Island Maryland 1960
#> 244 West Virginia Kentucky 1960
#> 245 New Jersey Massachusetts 1960
#> 246 Illinois Washington 1960
#> 247 Oregon Indiana 1960
#> 248 Indiana Louisiana 1960
#> 249 California New Jersey 1960
#> 250 Louisiana Texas 1960
#> 251 Colorado Massachusetts 1960
#> 252 Louisiana Wisconsin 1960
#> 253 Vermont New York 1960
#> 254 Louisiana South Carolina 1960
#> 255 Connecticut New Hampshire 1960
#> 256 Oregon Utah 1960
#> 257 Maryland New Jersey 1960
#> 258 California Illinois 1960
#> 259 Pennsylvania Arkansas 1960
#> 260 Florida New Mexico 1960
#> 261 Illinois Nevada 1960
#> 262 New York California 1960
#> 263 Illinois Utah 1960
#> 264 Illinois New York 1960
#> 265 Michigan Hawaii 1960
#> 266 Wisconsin California 1960
#> 267 Iowa Nebraska 1960
#> 268 Massachusetts Oregon 1960
#> 269 New Jersey Kansas 1960
#> 270 Arizona North Carolina 1960
#> 271 Connecticut Delaware 1960
#> 272 Illinois Oklahoma 1960
#> 273 New Mexico Delaware 1960
#> 274 Massachusetts Idaho 1960
#> 275 Wyoming North Dakota 1960
#> 276 Pennsylvania Virginia 1960
#> 277 Ohio South Carolina 1960
#> 278 Kentucky Tennessee 1960
#> 279 Colorado Arizona 1960
#> 280 Wisconsin North Carolina 1960
#> 281 Missouri Kansas 1960
#> 282 Michigan Ohio 1960
#> 283 South Carolina Illinois 1960
#> 284 Pennsylvania Connecticut 1960
#> 285 Florida West Virginia 1960
#> 286 New Jersey Maine 1960
#> 287 Arkansas Oregon 1960
#> 288 Minnesota Tennessee 1960
#> 289 Arkansas Colorado 1960
#> 290 Arizona Missouri 1960
#> 291 Iowa Georgia 1960
#> 292 Arizona Arkansas 1960
#> 293 Arkansas South Dakota 1960
#> 294 West Virginia Maryland 1960
#> 295 Tennessee Alabama 1960
#> 296 Mississippi Montana 1960
#> 297 Arizona Mississippi 1960
#> 298 Ohio Florida 1960
#> 299 Virginia Connecticut 1960
#> 300 West Virginia Missouri 1960
#> 301 Arkansas Minnesota 1960
#> 302 Virginia Colorado 1960
#> 303 Maryland Nevada 1960
#> 304 Louisiana Pennsylvania 1960
#> 305 Minnesota Washington 1960
#> 306 Rhode Island Mississippi 1960
#> 307 Kentucky Missouri 1960
#> 308 Illinois Alabama 1960
#> 309 Georgia New Mexico 1960
#> 310 Mississippi Arizona 1960
#> 311 Texas Massachusetts 1960
#> 312 Louisiana Kansas 1960
#> 313 Texas Illinois 1960
#> 314 New Mexico Washington 1960
#> 315 Minnesota Maine 1960
#> 316 New Hampshire Wyoming 1960
#> 317 Minnesota Iowa 1960
#> 318 Florida Delaware 1960
#> 319 Iowa Montana 1960
#> 320 Arizona Utah 1960
#> 321 Nebraska Ohio 1960
#> 322 Georgia Tennessee 1960
#> 323 Kansas Massachusetts 1960
#> 324 Massachusetts Illinois 1960
#> 325 Ohio Colorado 1960
#> 326 Florida Idaho 1960
#> 327 North Dakota Maryland 1960
#> 328 Idaho Arizona 1960
#> 329 Oregon Virginia 1960
#> 330 Arkansas Rhode Island 1960
#> 331 South Carolina Idaho 1960
#> 332 South Dakota Alabama 1960
#> 333 Virginia West Virginia 1960
#> 334 Mississippi Oklahoma 1960
#> 335 Michigan Illinois 1960
#> 336 South Dakota Virginia 1960
#> 337 New Jersey Georgia 1960
#> 338 Maryland Kentucky 1960
#> 339 Minnesota New Hampshire 1960
#> 340 Michigan Colorado 1960
#> 341 Pennsylvania Wisconsin 1960
#> 342 Georgia Arkansas 1960
#> 343 North Dakota Wyoming 1960
#> 344 New Mexico Pennsylvania 1960
#> 345 New York Kentucky 1960
#> 346 California Vermont 1960
#> 347 Ohio Oregon 1960
#> 348 Pennsylvania Maine 1960
#> 349 Alabama Kentucky 1960
#> 350 North Dakota Indiana 1960
#> 351 Kentucky Vermont 1960
#> 352 Delaware North Dakota 1960
#> 353 Pennsylvania Rhode Island 1960
#> 354 Virginia Utah 1960
#> 355 Kentucky Utah 1960
#> 356 Louisiana Nebraska 1960
#> 357 Virginia Pennsylvania 1960
#> 358 Minnesota New York 1960
#> 359 Arizona Minnesota 1960
#> 360 New York Washington 1960
#> 361 Alabama California 1960
#> 362 Virginia Tennessee 1960
#> 363 New Jersey Pennsylvania 1960
#> 364 North Dakota North Carolina 1960
#> 365 California Massachusetts 1960
#> 366 Delaware New Mexico 1960
#> 367 South Carolina Delaware 1960
#> 368 Ohio Connecticut 1960
#> 369 Delaware New Hampshire 1960
#> 370 Louisiana Utah 1960
#> 371 Alabama Kansas 1960
#> 372 North Dakota Arkansas 1960
#> 373 Arkansas Wyoming 1960
#> 374 Connecticut Pennsylvania 1960
#> 375 Illinois Missouri 1960
#> 376 Kentucky Massachusetts 1960
#> 377 South Dakota Michigan 1960
#> 378 Massachusetts Michigan 1960
#> 379 Massachusetts Delaware 1960
#> 380 South Carolina New Hampshire 1960
#> 381 Louisiana Nevada 1960
#> 382 Maryland Virginia 1960
#> 383 Louisiana South Dakota 1960
#> 384 New Jersey Maryland 1960
#> 385 Virginia Kansas 1960
#> 386 Wisconsin Arkansas 1960
#> 387 New York Rhode Island 1960
#> 388 Alabama North Dakota 1960
#> 389 Minnesota North Dakota 1960
#> 390 Florida Maine 1960
#> 391 New Mexico Oklahoma 1960
#> 392 Louisiana California 1960
#> 393 Minnesota Utah 1960
#> 394 North Dakota Nebraska 1960
#> 395 Louisiana Wyoming 1960
#> 396 Iowa South Carolina 1960
#> 397 Minnesota Massachusetts 1960
#> 398 Nebraska Louisiana 1960
#> 399 Nevada Wisconsin 1960
#> 400 Wyoming Oregon 1960
#> 401 Vermont Iowa 1960
#> 402 Idaho New Jersey 1960
#> 403 Delaware Illinois 1960
#> 404 Delaware California 1960
#> 405 Iowa Arkansas 1960
#> 406 Michigan Arizona 1960
#> 407 Pennsylvania Massachusetts 1960
#> 408 Louisiana Massachusetts 1960
#> 409 Florida Texas 1960
#> 410 Maine Michigan 1960
#> 411 Delaware Montana 1960
#> 412 Arkansas Washington 1960
#> 413 Iowa Utah 1960
#> 414 Iowa South Dakota 1960
#> 415 Delaware Idaho 1960
#> 416 Vermont Connecticut 1960
#> 417 Massachusetts Tennessee 1960
#> 418 Minnesota Indiana 1960
#> 419 North Dakota Alabama 1960
#> 420 New Mexico Alabama 1960
#> 421 California Wisconsin 1960
#> 422 Alaska Oregon 1960
#> 423 Washington North Dakota 1960
#> 424 Connecticut North Dakota 1960
#> 425 Kansas New York 1960
#> 426 North Dakota Michigan 1960
#> 427 Wisconsin Iowa 1960
#> 428 South Dakota Hawaii 1960
#> 429 North Dakota Hawaii 1960
#> 430 California Alaska 1960
#> 431 Utah Alaska 1960
#> 432 Nebraska Alaska 1960
#> 433 Kansas Alaska 1960
#> 434 Hawaii Delaware 1960
#> 435 Utah Georgia 1960
#> 436 Montana Maine 1960
#> 437 Kentucky Ohio 1960
#> 438 Georgia Connecticut 1960
#> 439 Utah West Virginia 1960
#> 440 Kentucky New Mexico 1960
#> 441 Kentucky North Carolina 1960
#> 442 Vermont Mississippi 1960
#> 443 Wyoming Arizona 1960
#> 444 West Virginia Indiana 1960
#> 445 South Carolina Nevada 1960
#> 446 Washington New York 1960
#> 447 Maine Florida 1960
#> 448 North Carolina South Carolina 1960
#> 449 Tennessee Arkansas 1960
#> 450 South Carolina Michigan 1960
#> 451 Missouri Nevada 1960
#> 452 South Carolina Tennessee 1960
#> 453 Utah New Mexico 1960
#> 454 South Carolina Utah 1960
#> 455 Pennsylvania Georgia 1960
#> 456 Connecticut North Carolina 1960
#> 457 Rhode Island Kentucky 1960
#> 458 Georgia South Carolina 1960
#> 459 Kansas Vermont 1960
#> 460 New York Oregon 1960
#> 461 Pennsylvania Minnesota 1960
#> 462 New York Montana 1960
#> 463 Nebraska Texas 1960
#> 464 Louisiana Arkansas 1960
#> 465 Mississippi Alabama 1960
#> 466 Montana Michigan 1960
#> 467 Michigan South Carolina 1960
#> 468 Michigan Iowa 1960
#> 469 Georgia Montana 1960
#> 470 Nevada Utah 1960
#> 471 South Carolina Texas 1960
#> 472 Texas Maryland 1960
#> 473 West Virginia Wyoming 1960
#> 474 Alabama North Carolina 1960
#> 475 Mississippi Indiana 1960
#> 476 Colorado Vermont 1960
#> 477 Minnesota Oregon 1960
#> 478 Tennessee Hawaii 1960
#> 479 Mississippi Nebraska 1960
#> 480 Vermont Kentucky 1960
#> 481 Montana Indiana 1960
#> 482 Maryland Illinois 1960
#> 483 Texas Mississippi 1960
#> 484 Oregon Colorado 1960
#> 485 Vermont South Carolina 1960
#> 486 North Carolina Minnesota 1960
#> 487 Missouri Florida 1960
#> 488 Kentucky Colorado 1960
#> 489 Wyoming New Mexico 1960
#> 490 South Carolina Maine 1960
#> 491 Maine South Dakota 1960
#> 492 South Carolina Kansas 1960
#> 493 New York Kansas 1960
#> 494 Hawaii Tennessee 1960
#> 495 New Mexico South Carolina 1960
#> 496 Massachusetts Pennsylvania 1960
#> 497 Hawaii Rhode Island 1960
#> 498 Florida Oklahoma 1960
#> 499 South Carolina Washington 1960
#> 500 Delaware Florida 1960
#> 501 Florida Mississippi 1961
#> 502 Oregon Kentucky 1961
#> 503 New York Pennsylvania 1961
#> 504 New York Connecticut 1961
#> 505 New Jersey Rhode Island 1961
#> 506 New York Oregon 1961
#> 507 Illinois Florida 1961
#> 508 New York Maine 1961
#> 509 Washington Wyoming 1961
#> 510 New York New Hampshire 1961
#> 511 New Jersey North Carolina 1961
#> 512 North Dakota South Carolina 1961
#> 513 Oregon Oklahoma 1961
#> 514 Oregon Arkansas 1961
#> 515 Ohio Texas 1961
#> 516 New Jersey Virginia 1961
#> 517 Oregon Georgia 1961
#> 518 Colorado Louisiana 1961
#> 519 Oregon Tennessee 1961
#> 520 California Nevada 1961
#> 521 Michigan Delaware 1961
#> 522 New Jersey Ohio 1961
#> 523 New Jersey New York 1961
#> 524 Washington Missouri 1961
#> 525 North Dakota Idaho 1961
#> 526 North Dakota Arizona 1961
#> 527 New York Indiana 1961
#> 528 New York Massachusetts 1961
#> 529 New Jersey Minnesota 1961
#> 530 New York New Mexico 1961
#> 531 Oregon Alabama 1961
#> 532 Washington Colorado 1961
#> 533 Wisconsin Kansas 1961
#> 534 North Dakota South Dakota 1961
#> 535 Michigan West Virginia 1961
#> 536 Oregon Montana 1961
#> 537 Connecticut New Jersey 1961
#> 538 New Jersey Michigan 1961
#> 539 Ohio Maryland 1961
#> 540 Connecticut Vermont 1961
#> 541 Pennsylvania California 1961
#> 542 Washington Illinois 1961
#> 543 Arizona Nebraska 1961
#> 544 New York Washington 1961
#> 545 Ohio North Dakota 1961
#> 546 New York Utah 1961
#> 547 Michigan Iowa 1961
#> 548 New York Wisconsin 1961
#> 549 Alabama New Mexico 1961
#> 550 Maine Florida 1961
#> 551 Tennessee Kansas 1961
#> 552 New Jersey South Carolina 1961
#> 553 Arizona Indiana 1961
#> 554 California Oregon 1961
#> 555 Illinois Alabama 1961
#> 556 Oregon Louisiana 1961
#> 557 Illinois Montana 1961
#> 558 New Jersey Tennessee 1961
#> 559 North Carolina Virginia 1961
#> 560 New Mexico North Carolina 1961
#> 561 Ohio West Virginia 1961
#> 562 Montana Maine 1961
#> 563 Illinois Idaho 1961
#> 564 Wyoming Vermont 1961
#> 565 California Ohio 1961
#> 566 California Arizona 1961
#> 567 Alabama Utah 1961
#> 568 Tennessee Arkansas 1961
#> 569 Illinois Rhode Island 1961
#> 570 New Jersey Kentucky 1961
#> 571 New Jersey Illinois 1961
#> 572 Arkansas Nebraska 1961
#> 573 Florida Nevada 1961
#> 574 Colorado Pennsylvania 1961
#> 575 Arkansas Mississippi 1961
#> 576 Arkansas New Hampshire 1961
#> 577 North Dakota Washington 1961
#> 578 Wisconsin Iowa 1961
#> 579 Washington Massachusetts 1961
#> 580 Illinois Colorado 1961
#> 581 Arizona Georgia 1961
#> 582 North Dakota Texas 1961
#> 583 Illinois Michigan 1961
#> 584 Louisiana Maryland 1961
#> 585 Rhode Island Connecticut 1961
#> 586 Wisconsin New Jersey 1961
#> 587 Vermont Wisconsin 1961
#> 588 Illinois California 1961
#> 589 Rhode Island Missouri 1961
#> 590 Pennsylvania New York 1961
#> 591 Florida Wyoming 1961
#> 592 Illinois Arkansas 1961
#> 593 Rhode Island South Dakota 1961
#> 594 Connecticut Alaska 1961
#> 595 Illinois Minnesota 1961
#> 596 Alabama Florida 1961
#> 597 Arkansas Montana 1961
#> 598 Oregon Delaware 1961
#> 599 Illinois New Hampshire 1961
#> 600 Tennessee Alabama 1961
#> 601 Oklahoma Kentucky 1961
#> 602 Alabama Arkansas 1961
#> 603 Louisiana Illinois 1961
#> 604 Arkansas Iowa 1961
#> 605 Iowa Louisiana 1961
#> 606 North Dakota Minnesota 1961
#> 607 Tennessee Indiana 1961
#> 608 Arizona North Carolina 1961
#> 609 Rhode Island Hawaii 1961
#> 610 California Washington 1961
#> 611 Virginia North Dakota 1961
#> 612 North Dakota Oregon 1961
#> 613 Arizona Colorado 1961
#> 614 California Idaho 1961
#> 615 Texas Oklahoma 1961
#> 616 Tennessee Rhode Island 1961
#> 617 Colorado Ohio 1961
#> 618 Illinois New Jersey 1961
#> 619 California Michigan 1961
#> 620 Rhode Island Maryland 1961
#> 621 Kentucky Nebraska 1961
#> 622 New York Arizona 1961
#> 623 Florida Virginia 1961
#> 624 Virginia Georgia 1961
#> 625 Vermont Maine 1961
#> 626 Maryland New Mexico 1961
#> 627 Minnesota California 1961
#> 628 Virginia Texas 1961
#> 629 Tennessee South Carolina 1961
#> 630 Oregon Vermont 1961
#> 631 Nebraska Mississippi 1961
#> 632 Arkansas North Carolina 1961
#> 633 California Tennessee 1961
#> 634 Rhode Island Delaware 1961
#> 635 New Jersey Colorado 1961
#> 636 Maryland Utah 1961
#> 637 North Dakota New York 1961
#> 638 Illinois Wisconsin 1961
#> 639 Ohio Connecticut 1961
#> 640 Utah North Dakota 1961
#> 641 Alabama South Dakota 1961
#> 642 Colorado Nevada 1961
#> 643 Alabama Pennsylvania 1961
#> 644 Iowa Kentucky 1961
#> 645 Maryland Washington 1961
#> 646 Arkansas Arizona 1961
#> 647 Virginia Wyoming 1961
#> 648 Connecticut West Virginia 1961
#> 649 New York North Carolina 1961
#> 650 Mississippi Texas 1961
#> 651 California Rhode Island 1961
#> 652 New Jersey Vermont 1961
#> 653 Texas Kansas 1961
#> 654 West Virginia Tennessee 1961
#> 655 Kentucky Oklahoma 1961
#> 656 Illinois Massachusetts 1961
#> 657 Vermont Delaware 1961
#> 658 New Jersey Florida 1961
#> 659 South Carolina Georgia 1961
#> 660 Pennsylvania Alabama 1961
#> 661 Montana Washington 1961
#> 662 Minnesota Missouri 1961
#> 663 Kentucky Montana 1961
#> 664 Tennessee Arizona 1961
#> 665 South Dakota Tennessee 1961
#> 666 West Virginia North Carolina 1961
#> 667 New York New Jersey 1961
#> 668 Illinois Nebraska 1961
#> 669 South Dakota Wisconsin 1961
#> 670 Michigan New York 1961
#> 671 Illinois South Carolina 1961
#> 672 Arkansas New Mexico 1961
#> 673 Maryland Maine 1961
#> 674 Wisconsin Utah 1961
#> 675 Ohio Indiana 1961
#> 676 New Mexico Connecticut 1961
#> 677 Pennsylvania Rhode Island 1961
#> 678 Georgia Louisiana 1961
#> 679 California New Jersey 1961
#> 680 West Virginia Nevada 1961
#> 681 North Dakota Florida 1961
#> 682 Kentucky North Dakota 1961
#> 683 Illinois Oregon 1961
#> 684 Tennessee Maryland 1961
#> 685 Colorado Minnesota 1961
#> 686 Illinois Pennsylvania 1961
#> 687 South Dakota Louisiana 1961
#> 688 North Dakota Ohio 1961
#> 689 Michigan Illinois 1961
#> 690 Massachusetts New York 1961
#> 691 Illinois Washington 1961
#> 692 Connecticut Wyoming 1961
#> 693 New York Virginia 1961
#> 694 Nevada Mississippi 1961
#> 695 Connecticut Massachusetts 1961
#> 696 Maryland New Jersey 1961
#> 697 California Illinois 1961
#> 698 Colorado South Dakota 1961
#> 699 Massachusetts Wisconsin 1961
#> 700 Arizona Pennsylvania 1961
#> 701 Illinois Iowa 1961
#> 702 Virginia New Hampshire 1961
#> 703 Rhode Island Montana 1961
#> 704 New York Michigan 1961
#> 705 Illinois Maryland 1961
#> 706 Connecticut New York 1961
#> 707 Kentucky Idaho 1961
#> 708 Florida Colorado 1961
#> 709 Alabama Virginia 1961
#> 710 Virginia Nebraska 1961
#> 711 Idaho Oklahoma 1961
#> 712 Kansas Oregon 1961
#> 713 Minnesota Alaska 1961
#> 714 Wyoming North Dakota 1961
#> 715 Georgia Arkansas 1961
#> 716 California Hawaii 1961
#> 717 Kentucky Arkansas 1961
#> 718 Minnesota New Jersey 1961
#> 719 New Jersey Connecticut 1961
#> 720 Florida Michigan 1961
#> 721 Colorado Rhode Island 1961
#> 722 Kentucky Alabama 1961
#> 723 Alabama West Virginia 1961
#> 724 New Jersey Oregon 1961
#> 725 New Mexico Rhode Island 1961
#> 726 Arkansas Wyoming 1961
#> 727 West Virginia Maryland 1961
#> 728 Michigan Minnesota 1961
#> 729 Alabama North Carolina 1961
#> 730 Illinois Nevada 1961
#> 731 South Dakota Georgia 1961
#> 732 Arizona Maine 1961
#> 733 Oregon New Mexico 1961
#> 734 Virginia Missouri 1961
#> 735 Tennessee Vermont 1961
#> 736 Kentucky South Dakota 1961
#> 737 West Virginia Kentucky 1961
#> 738 New Jersey Massachusetts 1961
#> 739 New Jersey Indiana 1961
#> 740 Mississippi Nevada 1961
#> 741 Indiana Louisiana 1961
#> 742 Vermont New York 1961
#> 743 New York Oklahoma 1961
#> 744 New Mexico Utah 1961
#> 745 Florida New Mexico 1961
#> 746 Delaware Arkansas 1961
#> 747 New York California 1961
#> 748 Illinois Utah 1961
#> 749 Illinois New York 1961
#> 750 Michigan Hawaii 1961
#> 751 Wisconsin California 1961
#> 752 Iowa Nebraska 1961
#> 753 Nevada Alabama 1961
#> 754 New Mexico Delaware 1961
#> 755 Wyoming West Virginia 1961
#> 756 Arkansas Florida 1961
#> 757 South Carolina Idaho 1961
#> 758 Idaho Rhode Island 1961
#> 759 New York Rhode Island 1961
#> 760 Washington California 1961
#> 761 Arkansas Alabama 1961
#> 762 Minnesota North Dakota 1961
#> 763 Nevada Arkansas 1961
#> 764 Colorado Arizona 1961
#> 765 Washington New Hampshire 1961
#> 766 Arkansas Washington 1961
#> 767 Pennsylvania Virginia 1961
#> 768 Indiana Kansas 1961
#> 769 Ohio South Carolina 1961
#> 770 North Dakota Iowa 1961
#> 771 Kentucky Tennessee 1961
#> 772 Maine Texas 1961
#> 773 Idaho California 1961
#> 774 Pennsylvania Connecticut 1961
#> 775 West Virginia Wyoming 1961
#> 776 Minnesota Tennessee 1961
#> 777 Arkansas Oregon 1961
#> 778 Arizona Idaho 1961
#> 779 New Mexico West Virginia 1961
#> 780 Minnesota Mississippi 1961
#> 781 Arkansas Colorado 1961
#> 782 South Carolina Connecticut 1961
#> 783 Arizona Missouri 1961
#> 784 Texas Illinois 1961
#> 785 Illinois Ohio 1961
#> 786 Iowa Georgia 1961
#> 787 Oklahoma Kansas 1961
#> 788 Mississippi South Carolina 1961
#> 789 Kentucky Texas 1961
#> 790 Oregon Wisconsin 1961
#> 791 Florida Idaho 1961
#> 792 Massachusetts Washington 1961
#> 793 West Virginia Missouri 1961
#> 794 Arkansas Minnesota 1961
#> 795 Virginia Colorado 1961
#> 796 Kentucky Maryland 1961
#> 797 Virginia Connecticut 1961
#> 798 Louisiana Pennsylvania 1961
#> 799 Vermont Oregon 1961
#> 800 Minnesota Maine 1961
#> 801 Minnesota Washington 1961
#> 802 Arkansas South Dakota 1961
#> 803 Kentucky Missouri 1961
#> 804 Georgia New Mexico 1961
#> 805 Mississippi Arizona 1961
#> 806 Texas Massachusetts 1961
#> 807 South Carolina Illinois 1961
#> 808 Maryland Virginia 1961
#> 809 Florida Delaware 1961
#> 810 Arizona Montana 1961
#> 811 Massachusetts Illinois 1961
#> 812 Arizona Utah 1961
#> 813 Georgia Tennessee 1961
#> 814 Kansas Massachusetts 1961
#> 815 Delaware North Dakota 1961
#> 816 Vermont Iowa 1961
#> 817 Michigan Ohio 1961
#> 818 New Mexico Arkansas 1961
#> 819 Wisconsin Colorado 1961
#> 820 North Dakota Maryland 1961
#> 821 California Arkansas 1961
#> 822 Idaho Arizona 1961
#> 823 Virginia Florida 1961
#> 824 Oregon Virginia 1961
#> 825 Missouri Kansas 1961
#> 826 Tennessee Idaho 1961
#> 827 Florida West Virginia 1961
#> 828 South Carolina New Hampshire 1961
#> 829 New Jersey Georgia 1961
#> 830 Maryland Kentucky 1961
#> 831 Colorado New Jersey 1961
#> 832 Colorado Massachusetts 1961
#> 833 Pennsylvania Wisconsin 1961
#> 834 Louisiana Wisconsin 1961
#> 835 Florida Montana 1961
#> 836 North Carolina California 1961
#> 837 Virginia Utah 1961
#> 838 North Dakota Wyoming 1961
#> 839 New Mexico Pennsylvania 1961
#> 840 New York Kentucky 1961
#> 841 California Vermont 1961
#> 842 Pennsylvania Maine 1961
#> 843 South Dakota Nevada 1961
#> 844 Delaware Wyoming 1961
#> 845 Alabama Kentucky 1961
#> 846 Kentucky Vermont 1961
#> 847 Ohio Florida 1961
#> 848 South Dakota Virginia 1961
#> 849 Kentucky Utah 1961
#> 850 Virginia Pennsylvania 1961
#> 851 Minnesota New York 1961
#> 852 Arizona Minnesota 1961
#> 853 Connecticut New Hampshire 1961
#> 854 Delaware Montana 1961
#> 855 Virginia Tennessee 1961
#> 856 New Jersey Pennsylvania 1961
#> 857 California Massachusetts 1961
#> 858 Virginia New York 1961
#> 859 Delaware New Mexico 1961
#> 860 South Carolina Delaware 1961
#> 861 Georgia Utah 1961
#> 862 Virginia Kansas 1961
#> 863 Colorado Wyoming 1961
#> 864 Connecticut Pennsylvania 1961
#> 865 California North Carolina 1961
#> 866 Illinois Missouri 1961
#> 867 Kentucky Massachusetts 1961
#> 868 Florida Oregon 1961
#> 869 Alabama North Dakota 1961
#> 870 South Dakota Michigan 1961
#> 871 Massachusetts Michigan 1961
#> 872 Massachusetts Delaware 1961
#> 873 Delaware New Hampshire 1961
#> 874 South Dakota Oklahoma 1961
#> 875 Arizona New Jersey 1961
#> 876 Iowa Montana 1961
#> 877 New Mexico Oklahoma 1961
#> 878 Delaware California 1961
#> 879 North Dakota Nebraska 1961
#> 880 Connecticut Idaho 1961
#> 881 North Dakota Arkansas 1961
#> 882 Iowa Arkansas 1961
#> 883 Iowa South Carolina 1961
#> 884 North Dakota North Carolina 1961
#> 885 Minnesota Massachusetts 1961
#> 886 Nebraska Louisiana 1961
#> 887 Oregon Indiana 1961
#> 888 Nevada Wisconsin 1961
#> 889 Florida Maine 1961
#> 890 Connecticut Delaware 1961
#> 891 Delaware Illinois 1961
#> 892 New Mexico Idaho 1961
#> 893 Michigan Arizona 1961
#> 894 Pennsylvania Massachusetts 1961
#> 895 Louisiana Massachusetts 1961
#> 896 North Dakota Indiana 1961
#> 897 Colorado North Dakota 1961
#> 898 Maine Michigan 1961
#> 899 Minnesota Utah 1961
#> 900 Iowa Utah 1961
#> 901 Illinois South Dakota 1961
#> 902 Iowa South Dakota 1961
#> 903 Alabama Kansas 1961
#> 904 Delaware Idaho 1961
#> 905 Vermont Connecticut 1961
#> 906 Oregon Connecticut 1961
#> 907 Massachusetts Tennessee 1961
#> 908 Minnesota Indiana 1961
#> 909 North Dakota Alabama 1961
#> 910 New Mexico Alabama 1961
#> 911 California Wisconsin 1961
#> 912 Wyoming Oregon 1961
#> 913 Alaska Oregon 1961
#> 914 Washington North Dakota 1961
#> 915 Connecticut North Dakota 1961
#> 916 Kansas New York 1961
#> 917 North Dakota Michigan 1961
#> 918 South Dakota Hawaii 1961
#> 919 North Dakota Hawaii 1961
#> 920 Hawaii Delaware 1961
#> 921 California Alaska 1961
#> 922 Utah Alaska 1961
#> 923 Nebraska Alaska 1961
#> 924 Kansas Alaska 1961
#> 925 Florida Texas 1961
#> 926 Utah Georgia 1961
#> 927 Kentucky Ohio 1961
#> 928 Mississippi Arkansas 1961
#> 929 Kentucky New Mexico 1961
#> 930 Minnesota Iowa 1961
#> 931 Illinois Indiana 1961
#> 932 Wyoming Arizona 1961
#> 933 South Carolina Nevada 1961
#> 934 Washington New York 1961
#> 935 Vermont Mississippi 1961
#> 936 North Carolina South Carolina 1961
#> 937 Kentucky North Carolina 1961
#> 938 Massachusetts New Hampshire 1961
#> 939 Arizona South Dakota 1961
#> 940 South Carolina Michigan 1961
#> 941 Missouri Nevada 1961
#> 942 South Carolina Arkansas 1961
#> 943 Arizona Wyoming 1961
#> 944 South Carolina Tennessee 1961
#> 945 Utah New Mexico 1961
#> 946 Pennsylvania Georgia 1961
#> 947 Rhode Island Kentucky 1961
#> 948 Minnesota Colorado 1961
#> 949 Kansas Vermont 1961
#> 950 South Dakota Mississippi 1961
#> 951 South Carolina Utah 1961
#> 952 Pennsylvania Minnesota 1961
#> 953 Mississippi Oklahoma 1961
#> 954 Kansas Indiana 1961
#> 955 Montana Michigan 1961
#> 956 Maryland Illinois 1961
#> 957 Mississippi Nebraska 1961
#> 958 Michigan South Carolina 1961
#> 959 New Mexico Washington 1961
#> 960 Vermont South Carolina 1961
#> 961 Colorado Vermont 1961
#> 962 Louisiana Iowa 1961
#> 963 Tennessee Hawaii 1961
#> 964 Missouri Florida 1961
#> 965 Vermont Kentucky 1961
#> 966 Ohio Alabama 1961
#> 967 Utah West Virginia 1961
#> 968 Louisiana Ohio 1961
#> 969 North Carolina Minnesota 1961
#> 970 Mississippi Indiana 1961
#> 971 Indiana West Virginia 1961
#> 972 Wyoming New Mexico 1961
#> 973 South Carolina Maine 1961
#> 974 Delaware New Jersey 1961
#> 975 Nevada Utah 1961
#> 976 Maine South Dakota 1961
#> 977 Florida Maryland 1961
#> 978 New York Kansas 1961
#> 979 Hawaii Tennessee 1961
#> 980 New Mexico South Carolina 1961
#> 981 Massachusetts Pennsylvania 1961
#> 982 Arizona Alabama 1961
#> 983 Hawaii Rhode Island 1961
#> 984 Connecticut North Carolina 1961
#> 985 Kansas Nevada 1961
#> 986 South Carolina Washington 1961
#> 987 Kansas Mississippi 1961
#> 988 Kentucky Colorado 1961
#> 989 Nebraska Ohio 1961
#> 990 Louisiana Kansas 1961
#> 991 New Mexico Arizona 1961
#> 992 South Carolina Kentucky 1961
#> 993 Ohio Rhode Island 1961
#> 994 Connecticut Rhode Island 1961
#> 995 Minnesota Oregon 1961
#> 996 Rhode Island Michigan 1961
#> 997 Kentucky Maine 1961
#> 998 North Carolina Georgia 1961
#> 999 Idaho Montana 1961
#> 1000 Ohio Illinois 1961
#> 1001 New York Pennsylvania 1962
#> 1002 Florida Mississippi 1962
#> 1003 New York Connecticut 1962
#> 1004 Oregon Kentucky 1962
#> 1005 New York Oregon 1962
#> 1006 New Jersey Rhode Island 1962
#> 1007 New York Maine 1962
#> 1008 New Jersey Florida 1962
#> 1009 New York New Hampshire 1962
#> 1010 Oregon Idaho 1962
#> 1011 Oregon Wyoming 1962
#> 1012 Oregon Indiana 1962
#> 1013 Oregon Oklahoma 1962
#> 1014 New York Arkansas 1962
#> 1015 New York North Carolina 1962
#> 1016 Ohio Texas 1962
#> 1017 Oregon Georgia 1962
#> 1018 Michigan Delaware 1962
#> 1019 New Jersey Ohio 1962
#> 1020 North Carolina South Carolina 1962
#> 1021 Tennessee Missouri 1962
#> 1022 Michigan West Virginia 1962
#> 1023 Colorado Louisiana 1962
#> 1024 Oregon Tennessee 1962
#> 1025 Connecticut New Jersey 1962
#> 1026 Massachusetts Minnesota 1962
#> 1027 New York Massachusetts 1962
#> 1028 New York New Mexico 1962
#> 1029 Oregon Arizona 1962
#> 1030 New Jersey Virginia 1962
#> 1031 New York California 1962
#> 1032 New Jersey Illinois 1962
#> 1033 Virginia Alabama 1962
#> 1034 Florida Nevada 1962
#> 1035 New Jersey Michigan 1962
#> 1036 New Jersey New York 1962
#> 1037 North Dakota South Dakota 1962
#> 1038 Tennessee Kansas 1962
#> 1039 New York Washington 1962
#> 1040 Ohio Maryland 1962
#> 1041 Connecticut Vermont 1962
#> 1042 New York Colorado 1962
#> 1043 Oregon Montana 1962
#> 1044 Virginia Nebraska 1962
#> 1045 Michigan Iowa 1962
#> 1046 New York Utah 1962
#> 1047 Ohio North Dakota 1962
#> 1048 New York Wisconsin 1962
#> 1049 Arizona Florida 1962
#> 1050 Alabama New Mexico 1962
#> 1051 New Jersey Tennessee 1962
#> 1052 Kentucky Arkansas 1962
#> 1053 Wisconsin Kansas 1962
#> 1054 Arkansas Alabama 1962
#> 1055 Colorado Pennsylvania 1962
#> 1056 Illinois Montana 1962
#> 1057 North Carolina Virginia 1962
#> 1058 Connecticut New Hampshire 1962
#> 1059 Washington South Carolina 1962
#> 1060 Arizona North Carolina 1962
#> 1061 Tennessee Indiana 1962
#> 1062 Montana Maine 1962
#> 1063 Arkansas Arizona 1962
#> 1064 Oregon Vermont 1962
#> 1065 Oregon Louisiana 1962
#> 1066 New Jersey Idaho 1962
#> 1067 Michigan Illinois 1962
#> 1068 Illinois Rhode Island 1962
#> 1069 New Jersey Kentucky 1962
#> 1070 Ohio West Virginia 1962
#> 1071 California Nevada 1962
#> 1072 Alabama Utah 1962
#> 1073 North Dakota Washington 1962
#> 1074 Rhode Island Connecticut 1962
#> 1075 Arizona Georgia 1962
#> 1076 New Mexico Colorado 1962
#> 1077 Rhode Island South Dakota 1962
#> 1078 North Carolina Iowa 1962
#> 1079 Arkansas Mississippi 1962
#> 1080 Louisiana Maryland 1962
#> 1081 Wisconsin Oregon 1962
#> 1082 Mississippi Texas 1962
#> 1083 Arkansas Nebraska 1962
#> 1084 Pennsylvania Minnesota 1962
#> 1085 Florida Wyoming 1962
#> 1086 Washington Massachusetts 1962
#> 1087 Kentucky North Carolina 1962
#> 1088 Connecticut Ohio 1962
#> 1089 Minnesota Missouri 1962
#> 1090 Vermont Wisconsin 1962
#> 1091 Massachusetts New York 1962
#> 1092 New York New Jersey 1962
#> 1093 Pennsylvania California 1962
#> 1094 New York Michigan 1962
#> 1095 Connecticut Alaska 1962
#> 1096 Illinois Indiana 1962
#> 1097 Alabama Arkansas 1962
#> 1098 Utah North Dakota 1962
#> 1099 Oregon Delaware 1962
#> 1100 Maryland New Mexico 1962
#> 1101 Michigan Nebraska 1962
#> 1102 New Jersey Montana 1962
#> 1103 Michigan Minnesota 1962
#> 1104 Arkansas Florida 1962
#> 1105 Iowa Louisiana 1962
#> 1106 Texas Oklahoma 1962
#> 1107 Washington Illinois 1962
#> 1108 Rhode Island Arizona 1962
#> 1109 Rhode Island Hawaii 1962
#> 1110 Illinois Alabama 1962
#> 1111 Alabama Florida 1962
#> 1112 Iowa Kentucky 1962
#> 1113 Utah Rhode Island 1962
#> 1114 Wisconsin Colorado 1962
#> 1115 Arizona Idaho 1962
#> 1116 California Michigan 1962
#> 1117 Arkansas New Hampshire 1962
#> 1118 Rhode Island Maryland 1962
#> 1119 Virginia Georgia 1962
#> 1120 Vermont Maine 1962
#> 1121 Virginia Texas 1962
#> 1122 Maryland Utah 1962
#> 1123 Connecticut New York 1962
#> 1124 Alabama North Carolina 1962
#> 1125 Vermont Wyoming 1962
#> 1126 Arkansas Ohio 1962
#> 1127 California Pennsylvania 1962
#> 1128 Virginia North Dakota 1962
#> 1129 Virginia Oregon 1962
#> 1130 Nebraska Mississippi 1962
#> 1131 Montana Washington 1962
#> 1132 California New Jersey 1962
#> 1133 California Tennessee 1962
#> 1134 Kentucky South Carolina 1962
#> 1135 Kentucky Vermont 1962
#> 1136 Arizona Missouri 1962
#> 1137 Rhode Island Delaware 1962
#> 1138 Vermont Nevada 1962
#> 1139 Kentucky Indiana 1962
#> 1140 Ohio Connecticut 1962
#> 1141 Florida Virginia 1962
#> 1142 Maine Texas 1962
#> 1143 North Dakota Wisconsin 1962
#> 1144 New York West Virginia 1962
#> 1145 Michigan New York 1962
#> 1146 Georgia Louisiana 1962
#> 1147 Texas Kansas 1962
#> 1148 Minnesota New Jersey 1962
#> 1149 Georgia South Carolina 1962
#> 1150 Kentucky Oregon 1962
#> 1151 Kentucky Oklahoma 1962
#> 1152 Delaware Arkansas 1962
#> 1153 Arkansas Iowa 1962
#> 1154 Florida South Dakota 1962
#> 1155 South Carolina Georgia 1962
#> 1156 Colorado Rhode Island 1962
#> 1157 Michigan Vermont 1962
#> 1158 Rhode Island Montana 1962
#> 1159 South Dakota Tennessee 1962
#> 1160 Kentucky Colorado 1962
#> 1161 Kentucky Missouri 1962
#> 1162 Arizona West Virginia 1962
#> 1163 New York Virginia 1962
#> 1164 South Carolina Arkansas 1962
#> 1165 Louisiana Pennsylvania 1962
#> 1166 Maryland Washington 1962
#> 1167 Arkansas North Carolina 1962
#> 1168 Tennessee Arizona 1962
#> 1169 Maryland Maine 1962
#> 1170 Wisconsin Utah 1962
#> 1171 Arizona Nevada 1962
#> 1172 New Mexico Connecticut 1962
#> 1173 Kansas Arkansas 1962
#> 1174 North Dakota New York 1962
#> 1175 Louisiana Illinois 1962
#> 1176 Kentucky South Dakota 1962
#> 1177 Kentucky Tennessee 1962
#> 1178 Kentucky North Dakota 1962
#> 1179 Minnesota Oregon 1962
#> 1180 New Mexico California 1962
#> 1181 Arkansas Minnesota 1962
#> 1182 Tennessee Alabama 1962
#> 1183 Oklahoma Kentucky 1962
#> 1184 Maine New Hampshire 1962
#> 1185 South Dakota Louisiana 1962
#> 1186 Vermont Delaware 1962
#> 1187 California Illinois 1962
#> 1188 Kansas Maryland 1962
#> 1189 Louisiana Kansas 1962
#> 1190 Connecticut Massachusetts 1962
#> 1191 Kentucky Montana 1962
#> 1192 Nevada Mississippi 1962
#> 1193 Maryland New Jersey 1962
#> 1194 California Washington 1962
#> 1195 Illinois Maryland 1962
#> 1196 North Dakota Idaho 1962
#> 1197 Colorado Massachusetts 1962
#> 1198 California Rhode Island 1962
#> 1199 Arizona Nebraska 1962
#> 1200 Illinois Arizona 1962
#> 1201 Florida New Mexico 1962
#> 1202 Vermont North Dakota 1962
#> 1203 Virginia Colorado 1962
#> 1204 Pennsylvania Alabama 1962
#> 1205 Wisconsin Iowa 1962
#> 1206 Idaho Oklahoma 1962
#> 1207 Colorado Oregon 1962
#> 1208 Colorado Michigan 1962
#> 1209 Colorado Ohio 1962
#> 1210 Vermont North Carolina 1962
#> 1211 Michigan South Carolina 1962
#> 1212 Pennsylvania New York 1962
#> 1213 Wisconsin New Jersey 1962
#> 1214 California Hawaii 1962
#> 1215 California Ohio 1962
#> 1216 Virginia Florida 1962
#> 1217 New Jersey Connecticut 1962
#> 1218 Florida Michigan 1962
#> 1219 North Dakota Iowa 1962
#> 1220 Minnesota California 1962
#> 1221 Massachusetts Wisconsin 1962
#> 1222 South Carolina Massachusetts 1962
#> 1223 Wisconsin Washington 1962
#> 1224 Oregon New Mexico 1962
#> 1225 New Jersey Wyoming 1962
#> 1226 Colorado New Jersey 1962
#> 1227 Connecticut Pennsylvania 1962
#> 1228 South Dakota Georgia 1962
#> 1229 West Virginia Maryland 1962
#> 1230 Arizona Maine 1962
#> 1231 Rhode Island Colorado 1962
#> 1232 Kentucky Idaho 1962
#> 1233 West Virginia Kentucky 1962
#> 1234 North Dakota Florida 1962
#> 1235 California Massachusetts 1962
#> 1236 Massachusetts Nevada 1962
#> 1237 Oregon Illinois 1962
#> 1238 Virginia Missouri 1962
#> 1239 Indiana Louisiana 1962
#> 1240 North Dakota Indiana 1962
#> 1241 Oregon Virginia 1962
#> 1242 Arizona Kansas 1962
#> 1243 South Dakota Delaware 1962
#> 1244 Kentucky Alabama 1962
#> 1245 Idaho Texas 1962
#> 1246 Mississippi Arizona 1962
#> 1247 Vermont Tennessee 1962
#> 1248 Virginia New York 1962
#> 1249 Mississippi Montana 1962
#> 1250 New Mexico North Carolina 1962
#> 1251 Connecticut Oregon 1962
#> 1252 New York Rhode Island 1962
#> 1253 New York Oklahoma 1962
#> 1254 Washington California 1962
#> 1255 Wisconsin California 1962
#> 1256 Washington South Dakota 1962
#> 1257 Michigan Ohio 1962
#> 1258 Louisiana Arkansas 1962
#> 1259 Illinois Wisconsin 1962
#> 1260 Illinois New York 1962
#> 1261 Vermont New York 1962
#> 1262 Michigan Hawaii 1962
#> 1263 Kentucky Nebraska 1962
#> 1264 Arkansas Colorado 1962
#> 1265 Nebraska California 1962
#> 1266 Arizona Massachusetts 1962
#> 1267 Georgia Tennessee 1962
#> 1268 Florida Maine 1962
#> 1269 Arizona North Dakota 1962
#> 1270 Minnesota Alaska 1962
#> 1271 Colorado Minnesota 1962
#> 1272 Colorado New Hampshire 1962
#> 1273 Nevada West Virginia 1962
#> 1274 Pennsylvania Virginia 1962
#> 1275 New Mexico Delaware 1962
#> 1276 Arkansas Vermont 1962
#> 1277 Pennsylvania Rhode Island 1962
#> 1278 Indiana Arkansas 1962
#> 1279 Arkansas New Mexico 1962
#> 1280 South Carolina Idaho 1962
#> 1281 Pennsylvania Connecticut 1962
#> 1282 Arkansas Wyoming 1962
#> 1283 Oregon Wisconsin 1962
#> 1284 Mississippi South Carolina 1962
#> 1285 Oregon Alabama 1962
#> 1286 New Mexico Rhode Island 1962
#> 1287 South Carolina Michigan 1962
#> 1288 Minnesota Mississippi 1962
#> 1289 South Carolina Connecticut 1962
#> 1290 Maryland Indiana 1962
#> 1291 New Jersey New Hampshire 1962
#> 1292 Texas Illinois 1962
#> 1293 Iowa Georgia 1962
#> 1294 Minnesota Tennessee 1962
#> 1295 Arkansas Pennsylvania 1962
#> 1296 Massachusetts Washington 1962
#> 1297 Kentucky Texas 1962
#> 1298 Illinois Minnesota 1962
#> 1299 West Virginia Missouri 1962
#> 1300 Arizona Iowa 1962
#> 1301 Wisconsin Idaho 1962
#> 1302 Virginia Connecticut 1962
#> 1303 Minnesota Maine 1962
#> 1304 Missouri Kansas 1962
#> 1305 Georgia New Mexico 1962
#> 1306 Delaware New Hampshire 1962
#> 1307 Maryland Virginia 1962
#> 1308 Maine Nebraska 1962
#> 1309 South Carolina Illinois 1962
#> 1310 Wyoming Utah 1962
#> 1311 Virginia Delaware 1962
#> 1312 Minnesota Washington 1962
#> 1313 Tennessee South Carolina 1962
#> 1314 Kentucky West Virginia 1962
#> 1315 New Hampshire Oregon 1962
#> 1316 Illinois New Jersey 1962
#> 1317 Arizona Arkansas 1962
#> 1318 Arizona Pennsylvania 1962
#> 1319 South Dakota Nevada 1962
#> 1320 North Carolina Montana 1962
#> 1321 Virginia Utah 1962
#> 1322 North Dakota Maryland 1962
#> 1323 Virginia Wyoming 1962
#> 1324 Iowa South Dakota 1962
#> 1325 North Dakota Wyoming 1962
#> 1326 Arkansas Rhode Island 1962
#> 1327 Pennsylvania Wisconsin 1962
#> 1328 Minnesota New Hampshire 1962
#> 1329 Iowa Montana 1962
#> 1330 Colorado California 1962
#> 1331 North Carolina California 1962
#> 1332 Maryland Kentucky 1962
#> 1333 California Oregon 1962
#> 1334 California Utah 1962
#> 1335 Arizona Wyoming 1962
#> 1336 Iowa Massachusetts 1962
#> 1337 Louisiana Wisconsin 1962
#> 1338 Delaware North Dakota 1962
#> 1339 Oregon Nebraska 1962
#> 1340 West Virginia Wyoming 1962
#> 1341 New York Kentucky 1962
#> 1342 Pennsylvania Maine 1962
#> 1343 Massachusetts Illinois 1962
#> 1344 Colorado Washington 1962
#> 1345 New Jersey Pennsylvania 1962
#> 1346 Alabama Kentucky 1962
#> 1347 Vermont Iowa 1962
#> 1348 Kentucky Utah 1962
#> 1349 Tennessee Idaho 1962
#> 1350 Virginia Tennessee 1962
#> 1351 Virginia Pennsylvania 1962
#> 1352 Pennsylvania Massachusetts 1962
#> 1353 Minnesota New York 1962
#> 1354 Illinois Florida 1962
#> 1355 Georgia Utah 1962
#> 1356 Colorado Nebraska 1962
#> 1357 Delaware Idaho 1962
#> 1358 Minnesota Arizona 1962
#> 1359 California North Carolina 1962
#> 1360 South Dakota Wisconsin 1962
#> 1361 Virginia Rhode Island 1962
#> 1362 Delaware New Mexico 1962
#> 1363 South Dakota Michigan 1962
#> 1364 South Carolina New Hampshire 1962
#> 1365 Colorado Nevada 1962
#> 1366 Vermont Mississippi 1962
#> 1367 Delaware California 1962
#> 1368 Colorado Utah 1962
#> 1369 New Hampshire Wyoming 1962
#> 1370 Illinois Missouri 1962
#> 1371 Minnesota Indiana 1962
#> 1372 Alabama North Dakota 1962
#> 1373 Pennsylvania Michigan 1962
#> 1374 South Carolina Delaware 1962
#> 1375 South Dakota Oklahoma 1962
#> 1376 Alabama Virginia 1962
#> 1377 Virginia Kansas 1962
#> 1378 New York Kansas 1962
#> 1379 Georgia Arkansas 1962
#> 1380 Delaware Wyoming 1962
#> 1381 California Vermont 1962
#> 1382 Arizona New Jersey 1962
#> 1383 Kansas Illinois 1962
#> 1384 Delaware Illinois 1962
#> 1385 New Mexico Oklahoma 1962
#> 1386 Alabama California 1962
#> 1387 North Carolina South Dakota 1962
#> 1388 Connecticut Idaho 1962
#> 1389 North Dakota Arkansas 1962
#> 1390 Louisiana Massachusetts 1962
#> 1391 Minnesota Massachusetts 1962
#> 1392 Nebraska Louisiana 1962
#> 1393 Connecticut Delaware 1962
#> 1394 Massachusetts Utah 1962
#> 1395 Colorado Idaho 1962
#> 1396 Maryland South Carolina 1962
#> 1397 Arizona South Carolina 1962
#> 1398 North Dakota Alabama 1962
#> 1399 Colorado Wisconsin 1962
#> 1400 California Wisconsin 1962
#> 1401 Delaware Montana 1962
#> 1402 Arkansas Washington 1962
#> 1403 Idaho California 1962
#> 1404 Minnesota Utah 1962
#> 1405 Iowa Utah 1962
#> 1406 Colorado South Dakota 1962
#> 1407 North Dakota Nebraska 1962
#> 1408 Vermont Connecticut 1962
#> 1409 Oregon Connecticut 1962
#> 1410 Iowa Arkansas 1962
#> 1411 Colorado Wyoming 1962
#> 1412 Massachusetts Tennessee 1962
#> 1413 Pennsylvania South Carolina 1962
#> 1414 Iowa South Carolina 1962
#> 1415 North Dakota North Carolina 1962
#> 1416 Wisconsin Alabama 1962
#> 1417 New Mexico Alabama 1962
#> 1418 Arizona Oregon 1962
#> 1419 Alaska Oregon 1962
#> 1420 Washington North Dakota 1962
#> 1421 Connecticut North Dakota 1962
#> 1422 Kansas New York 1962
#> 1423 North Dakota Minnesota 1962
#> 1424 North Dakota Michigan 1962
#> 1425 Colorado Iowa 1962
#> 1426 South Dakota Hawaii 1962
#> 1427 North Dakota Hawaii 1962
#> 1428 Hawaii Delaware 1962
#> 1429 California Alaska 1962
#> 1430 Utah Alaska 1962
#> 1431 Nebraska Alaska 1962
#> 1432 Kansas Alaska 1962
#> 1433 North Dakota Alaska 1962
#> 1434 Missouri Nevada 1962
#> 1435 Utah Georgia 1962
#> 1436 Texas Massachusetts 1962
#> 1437 Kentucky New Mexico 1962
#> 1438 Florida Vermont 1962
#> 1439 South Carolina Nevada 1962
#> 1440 Florida Texas 1962
#> 1441 Washington New York 1962
#> 1442 Maine Michigan 1962
#> 1443 Minnesota Colorado 1962
#> 1444 Utah West Virginia 1962
#> 1445 Idaho Montana 1962
#> 1446 North Carolina Florida 1962
#> 1447 Kentucky Ohio 1962
#> 1448 Wyoming Arizona 1962
#> 1449 South Carolina Tennessee 1962
#> 1450 West Virginia Indiana 1962
#> 1451 Utah New Mexico 1962
#> 1452 North Carolina Minnesota 1962
#> 1453 Pennsylvania Georgia 1962
#> 1454 Rhode Island Kentucky 1962
#> 1455 Mississippi Arkansas 1962
#> 1456 South Dakota Mississippi 1962
#> 1457 Kentucky Iowa 1962
#> 1458 Mississippi Oklahoma 1962
#> 1459 South Carolina Utah 1962
#> 1460 Mississippi South Dakota 1962
#> 1461 Wyoming Vermont 1962
#> 1462 Indiana Nevada 1962
#> 1463 Maryland Illinois 1962
#> 1464 Ohio Alabama 1962
#> 1465 Colorado Vermont 1962
#> 1466 Maine South Dakota 1962
#> 1467 Tennessee Hawaii 1962
#> 1468 Rhode Island Oklahoma 1962
#> 1469 New Jersey Colorado 1962
#> 1470 Vermont Kentucky 1962
#> 1471 Montana Indiana 1962
#> 1472 Nevada Utah 1962
#> 1473 Delaware Ohio 1962
#> 1474 Vermont South Carolina 1962
#> 1475 Mississippi Indiana 1962
#> 1476 Tennessee Oregon 1962
#> 1477 Montana Michigan 1962
#> 1478 Connecticut North Carolina 1962
#> 1479 New Hampshire Maryland 1962
#> 1480 South Carolina Kansas 1962
#> 1481 Tennessee Arkansas 1962
#> 1482 Massachusetts Pennsylvania 1962
#> 1483 Wyoming New Mexico 1962
#> 1484 South Carolina Maine 1962
#> 1485 Delaware New Jersey 1962
#> 1486 New Hampshire Washington 1962
#> 1487 Florida Maryland 1962
#> 1488 New Jersey Arkansas 1962
#> 1489 New Mexico Arizona 1962
#> 1490 Hawaii Tennessee 1962
#> 1491 Maryland Missouri 1962
#> 1492 Arizona Alabama 1962
#> 1493 Hawaii Rhode Island 1962
#> 1494 Kansas Nevada 1962
#> 1495 South Carolina Washington 1962
#> 1496 Kansas Mississippi 1962
#> 1497 Oklahoma Texas 1962
#> 1498 Delaware Texas 1962
#> 1499 Nebraska Ohio 1962
#> 1500 South Carolina Kentucky 1962
#> 1501 New York Pennsylvania 1963
#> 1502 Florida Mississippi 1963
#> 1503 New York Connecticut 1963
#> 1504 Oregon Kentucky 1963
#> 1505 New York Oregon 1963
#> 1506 New Jersey Rhode Island 1963
#> 1507 New York Maine 1963
#> 1508 Virginia Florida 1963
#> 1509 New York New Hampshire 1963
#> 1510 New York North Carolina 1963
#> 1511 New York Arkansas 1963
#> 1512 New York Indiana 1963
#> 1513 Oregon Idaho 1963
#> 1514 Oregon Wyoming 1963
#> 1515 Oregon Oklahoma 1963
#> 1516 Oregon Arizona 1963
#> 1517 Oregon Georgia 1963
#> 1518 Connecticut New Jersey 1963
#> 1519 Michigan Delaware 1963
#> 1520 Tennessee South Carolina 1963
#> 1521 Ohio Texas 1963
#> 1522 Tennessee Missouri 1963
#> 1523 New Jersey Minnesota 1963
#> 1524 New York Ohio 1963
#> 1525 New York Massachusetts 1963
#> 1526 New York New Mexico 1963
#> 1527 New Jersey Virginia 1963
#> 1528 New York California 1963
#> 1529 Colorado Louisiana 1963
#> 1530 Michigan West Virginia 1963
#> 1531 New Jersey Illinois 1963
#> 1532 Oregon Tennessee 1963
#> 1533 Virginia Alabama 1963
#> 1534 Florida Nevada 1963
#> 1535 New Jersey Michigan 1963
#> 1536 New Jersey New York 1963
#> 1537 Oregon South Dakota 1963
#> 1538 New York Maryland 1963
#> 1539 Tennessee Kansas 1963
#> 1540 New York Washington 1963
#> 1541 New York Colorado 1963
#> 1542 Oregon Vermont 1963
#> 1543 Virginia Nebraska 1963
#> 1544 Oregon Montana 1963
#> 1545 New Jersey Iowa 1963
#> 1546 New York Utah 1963
#> 1547 New York Wisconsin 1963
#> 1548 Michigan North Dakota 1963
#> 1549 Alabama New Mexico 1963
#> 1550 Illinois Florida 1963
#> 1551 New York South Carolina 1963
#> 1552 Wisconsin Kansas 1963
#> 1553 Alabama Arkansas 1963
#> 1554 New Mexico North Carolina 1963
#> 1555 Arkansas Alabama 1963
#> 1556 Tennessee Indiana 1963
#> 1557 Florida Tennessee 1963
#> 1558 Illinois Montana 1963
#> 1559 Oregon Louisiana 1963
#> 1560 North Carolina Virginia 1963
#> 1561 Connecticut New Hampshire 1963
#> 1562 Connecticut Vermont 1963
#> 1563 Montana Maine 1963
#> 1564 Arkansas Arizona 1963
#> 1565 Colorado Pennsylvania 1963
#> 1566 New Jersey Idaho 1963
#> 1567 Michigan Illinois 1963
#> 1568 Illinois Rhode Island 1963
#> 1569 California Nevada 1963
#> 1570 Oregon Delaware 1963
#> 1571 Alabama Utah 1963
#> 1572 North Dakota Washington 1963
#> 1573 Connecticut Alaska 1963
#> 1574 New Jersey Kentucky 1963
#> 1575 Montana Maryland 1963
#> 1576 West Virginia Wyoming 1963
#> 1577 Arkansas Mississippi 1963
#> 1578 Washington Colorado 1963
#> 1579 New York New Jersey 1963
#> 1580 Connecticut New York 1963
#> 1581 Wisconsin Oregon 1963
#> 1582 Mississippi Texas 1963
#> 1583 Arkansas Nebraska 1963
#> 1584 New York West Virginia 1963
#> 1585 Rhode Island Connecticut 1963
#> 1586 Colorado Ohio 1963
#> 1587 Minnesota Missouri 1963
#> 1588 North Dakota Iowa 1963
#> 1589 Virginia North Dakota 1963
#> 1590 Arkansas South Dakota 1963
#> 1591 Oregon Minnesota 1963
#> 1592 Pennsylvania California 1963
#> 1593 New York Michigan 1963
#> 1594 New York Georgia 1963
#> 1595 North Dakota Massachusetts 1963
#> 1596 California Indiana 1963
#> 1597 Arkansas Florida 1963
#> 1598 Tennessee Wisconsin 1963
#> 1599 Arkansas North Carolina 1963
#> 1600 Maryland New Mexico 1963
#> 1601 Georgia South Carolina 1963
#> 1602 Arkansas Montana 1963
#> 1603 Iowa Louisiana 1963
#> 1604 Texas Oklahoma 1963
#> 1605 Washington Illinois 1963
#> 1606 Nebraska Georgia 1963
#> 1607 California Tennessee 1963
#> 1608 Rhode Island Arizona 1963
#> 1609 California Pennsylvania 1963
#> 1610 Michigan Nebraska 1963
#> 1611 Illinois Alabama 1963
#> 1612 Iowa Kentucky 1963
#> 1613 Utah Rhode Island 1963
#> 1614 California Michigan 1963
#> 1615 Arkansas New Hampshire 1963
#> 1616 Kentucky Arkansas 1963
#> 1617 New Mexico West Virginia 1963
#> 1618 Virginia Texas 1963
#> 1619 Utah North Dakota 1963
#> 1620 Florida Virginia 1963
#> 1621 Maryland Utah 1963
#> 1622 New Jersey Ohio 1963
#> 1623 Rhode Island Minnesota 1963
#> 1624 Delaware North Carolina 1963
#> 1625 Rhode Island Hawaii 1963
#> 1626 Virginia Oregon 1963
#> 1627 California New Jersey 1963
#> 1628 California Washington 1963
#> 1629 Michigan New York 1963
#> 1630 California South Carolina 1963
#> 1631 Kentucky Maine 1963
#> 1632 Virginia Colorado 1963
#> 1633 Rhode Island Delaware 1963
#> 1634 Michigan Vermont 1963
#> 1635 Washington Wyoming 1963
#> 1636 Ohio Connecticut 1963
#> 1637 New York Oklahoma 1963
#> 1638 Maryland Missouri 1963
#> 1639 Michigan Mississippi 1963
#> 1640 Minnesota Iowa 1963
#> 1641 North Dakota Idaho 1963
#> 1642 Maine Texas 1963
#> 1643 Montana Washington 1963
#> 1644 Georgia Louisiana 1963
#> 1645 Rhode Island Maryland 1963
#> 1646 Kentucky Tennessee 1963
#> 1647 Texas Kansas 1963
#> 1648 Minnesota New Jersey 1963
#> 1649 Delaware Arkansas 1963
#> 1650 North Dakota New York 1963
#> 1651 Alabama Florida 1963
#> 1652 Colorado Rhode Island 1963
#> 1653 Tennessee Nevada 1963
#> 1654 California Wisconsin 1963
#> 1655 Oklahoma Kentucky 1963
#> 1656 Rhode Island South Dakota 1963
#> 1657 New York Virginia 1963
#> 1658 Pennsylvania New York 1963
#> 1659 South Carolina Arkansas 1963
#> 1660 Louisiana Pennsylvania 1963
#> 1661 New Jersey Massachusetts 1963
#> 1662 North Dakota Indiana 1963
#> 1663 Tennessee Arizona 1963
#> 1664 Michigan Minnesota 1963
#> 1665 Wisconsin Utah 1963
#> 1666 New Mexico Connecticut 1963
#> 1667 Kansas Arkansas 1963
#> 1668 Connecticut Massachusetts 1963
#> 1669 Wisconsin Colorado 1963
#> 1670 Arkansas Ohio 1963
#> 1671 Louisiana Illinois 1963
#> 1672 Kentucky North Carolina 1963
#> 1673 North Dakota Maryland 1963
#> 1674 Minnesota Oregon 1963
#> 1675 New Mexico California 1963
#> 1676 Tennessee Alabama 1963
#> 1677 Minnesota Nebraska 1963
#> 1678 Kentucky Colorado 1963
#> 1679 Maine New Hampshire 1963
#> 1680 Kentucky Vermont 1963
#> 1681 South Dakota Louisiana 1963
#> 1682 Maryland Washington 1963
#> 1683 Iowa Georgia 1963
#> 1684 Arkansas Iowa 1963
#> 1685 California Illinois 1963
#> 1686 Kentucky Florida 1963
#> 1687 Nevada Mississippi 1963
#> 1688 Rhode Island Wyoming 1963
#> 1689 New Mexico Delaware 1963
#> 1690 Delaware Montana 1963
#> 1691 Maryland New Jersey 1963
#> 1692 Massachusetts Wisconsin 1963
#> 1693 Tennessee Maryland 1963
#> 1694 California Rhode Island 1963
#> 1695 Tennessee Oklahoma 1963
#> 1696 Illinois Arizona 1963
#> 1697 Florida New Mexico 1963
#> 1698 Virginia Missouri 1963
#> 1699 Pennsylvania Alabama 1963
#> 1700 Wisconsin Iowa 1963
#> 1701 Arkansas North Dakota 1963
#> 1702 Wisconsin Idaho 1963
#> 1703 Wisconsin New Jersey 1963
#> 1704 Michigan South Carolina 1963
#> 1705 Georgia Tennessee 1963
#> 1706 Wisconsin North Carolina 1963
#> 1707 New Jersey Oregon 1963
#> 1708 California Hawaii 1963
#> 1709 Florida Michigan 1963
#> 1710 New Jersey Connecticut 1963
#> 1711 Minnesota California 1963
#> 1712 Wyoming Maine 1963
#> 1713 Louisiana Wisconsin 1963
#> 1714 Wisconsin Washington 1963
#> 1715 South Carolina Georgia 1963
#> 1716 Oregon New Mexico 1963
#> 1717 North Dakota South Dakota 1963
#> 1718 West Virginia Maryland 1963
#> 1719 Massachusetts New York 1963
#> 1720 West Virginia Kentucky 1963
#> 1721 Oregon Virginia 1963
#> 1722 Louisiana Kansas 1963
#> 1723 South Carolina Massachusetts 1963
#> 1724 Michigan Iowa 1963
#> 1725 Indiana Louisiana 1963
#> 1726 New York Vermont 1963
#> 1727 Kentucky South Dakota 1963
#> 1728 Minnesota New York 1963
#> 1729 Kentucky Alabama 1963
#> 1730 Idaho Texas 1963
#> 1731 Mississippi Arizona 1963
#> 1732 Maryland Nevada 1963
#> 1733 Arizona Georgia 1963
#> 1734 Arkansas Wyoming 1963
#> 1735 North Dakota Wyoming 1963
#> 1736 Arizona West Virginia 1963
#> 1737 New York Rhode Island 1963
#> 1738 Minnesota Alaska 1963
#> 1739 Arkansas Minnesota 1963
#> 1740 Washington California 1963
#> 1741 Colorado Massachusetts 1963
#> 1742 Kansas Kentucky 1963
#> 1743 South Dakota Delaware 1963
#> 1744 Illinois Pennsylvania 1963
#> 1745 Vermont New York 1963
#> 1746 Arkansas Illinois 1963
#> 1747 Wisconsin California 1963
#> 1748 New York Hawaii 1963
#> 1749 Arkansas Colorado 1963
#> 1750 South Carolina Idaho 1963
#> 1751 Nebraska Mississippi 1963
#> 1752 Indiana Missouri 1963
#> 1753 Maryland Indiana 1963
#> 1754 Nebraska California 1963
#> 1755 Virginia Tennessee 1963
#> 1756 Illinois New York 1963
#> 1757 Colorado Oregon 1963
#> 1758 New Jersey Montana 1963
#> 1759 California Oregon 1963
#> 1760 New Mexico Oklahoma 1963
#> 1761 Tennessee New Jersey 1963
#> 1762 California Ohio 1963
#> 1763 Oregon North Dakota 1963
#> 1764 Pennsylvania Virginia 1963
#> 1765 Indiana Arkansas 1963
#> 1766 Pennsylvania Rhode Island 1963
#> 1767 California New Hampshire 1963
#> 1768 Arkansas New Mexico 1963
#> 1769 New Jersey Tennessee 1963
#> 1770 South Dakota West Virginia 1963
#> 1771 Minnesota Maine 1963
#> 1772 Pennsylvania Connecticut 1963
#> 1773 Maine Nebraska 1963
#> 1774 Missouri Kansas 1963
#> 1775 Connecticut Pennsylvania 1963
#> 1776 Oregon Alabama 1963
#> 1777 New Mexico Rhode Island 1963
#> 1778 Oklahoma Arkansas 1963
#> 1779 Illinois Indiana 1963
#> 1780 South Carolina Michigan 1963
#> 1781 Arizona Missouri 1963
#> 1782 South Carolina Connecticut 1963
#> 1783 Mississippi South Carolina 1963
#> 1784 Texas Illinois 1963
#> 1785 Kentucky Oklahoma 1963
#> 1786 Pennsylvania Wisconsin 1963
#> 1787 Missouri Nevada 1963
#> 1788 New Jersey New Hampshire 1963
#> 1789 Massachusetts Washington 1963
#> 1790 Kentucky Texas 1963
#> 1791 New Mexico South Carolina 1963
#> 1792 Arizona Idaho 1963
#> 1793 Arkansas Oregon 1963
#> 1794 Michigan Ohio 1963
#> 1795 Virginia Connecticut 1963
#> 1796 Maine Michigan 1963
#> 1797 Virginia Delaware 1963
#> 1798 Texas Massachusetts 1963
#> 1799 Georgia New Mexico 1963
#> 1800 Maryland Virginia 1963
#> 1801 Tennessee Georgia 1963
#> 1802 Illinois Wisconsin 1963
#> 1803 Ohio West Virginia 1963
#> 1804 Delaware North Dakota 1963
#> 1805 Maryland Maine 1963
#> 1806 Wyoming Utah 1963
#> 1807 Minnesota Washington 1963
#> 1808 Kansas Massachusetts 1963
#> 1809 Oregon Alaska 1963
#> 1810 Massachusetts Illinois 1963
#> 1811 Arizona Arkansas 1963
#> 1812 Louisiana Tennessee 1963
#> 1813 Kansas Alaska 1963
#> 1814 Delaware New Hampshire 1963
#> 1815 North Carolina Montana 1963
#> 1816 Virginia Utah 1963
#> 1817 Vermont Delaware 1963
#> 1818 New Jersey Florida 1963
#> 1819 North Dakota Florida 1963
#> 1820 New Mexico Colorado 1963
#> 1821 Arkansas Rhode Island 1963
#> 1822 Vermont Oregon 1963
#> 1823 North Dakota Nebraska 1963
#> 1824 North Carolina California 1963
#> 1825 Ohio Maryland 1963
#> 1826 Maryland Kentucky 1963
#> 1827 Iowa Montana 1963
#> 1828 Vermont Mississippi 1963
#> 1829 California Utah 1963
#> 1830 Illinois Maryland 1963
#> 1831 Utah Idaho 1963
#> 1832 North Carolina Pennsylvania 1963
#> 1833 Missouri North Carolina 1963
#> 1834 Pennsylvania Maine 1963
#> 1835 Virginia Wyoming 1963
#> 1836 Alabama Kentucky 1963
#> 1837 South Dakota Nevada 1963
#> 1838 Maine Florida 1963
#> 1839 Kentucky Utah 1963
#> 1840 Tennessee Idaho 1963
#> 1841 Oregon Wisconsin 1963
#> 1842 Washington North Dakota 1963
#> 1843 Florida Maine 1963
#> 1844 Colorado Hawaii 1963
#> 1845 Mississippi Montana 1963
#> 1846 Georgia Utah 1963
#> 1847 North Carolina South Dakota 1963
#> 1848 Texas Connecticut 1963
#> 1849 Minnesota Arizona 1963
#> 1850 Pennsylvania South Carolina 1963
#> 1851 Florida North Carolina 1963
#> 1852 West Virginia Missouri 1963
#> 1853 California Massachusetts 1963
#> 1854 Virginia Rhode Island 1963
#> 1855 Delaware New Mexico 1963
#> 1856 South Dakota Michigan 1963
#> 1857 South Carolina New Hampshire 1963
#> 1858 Alabama California 1963
#> 1859 Delaware California 1963
#> 1860 Kansas Utah 1963
#> 1861 Delaware Wyoming 1963
#> 1862 Oregon South Carolina 1963
#> 1863 New Jersey Pennsylvania 1963
#> 1864 Virginia Pennsylvania 1963
#> 1865 Minnesota Indiana 1963
#> 1866 Virginia New York 1963
#> 1867 Pennsylvania Michigan 1963
#> 1868 Vermont Iowa 1963
#> 1869 South Carolina Delaware 1963
#> 1870 California Alaska 1963
#> 1871 Kansas Illinois 1963
#> 1872 North Dakota Mississippi 1963
#> 1873 Alabama Virginia 1963
#> 1874 New Jersey Nebraska 1963
#> 1875 Virginia Kansas 1963
#> 1876 New York Kansas 1963
#> 1877 Delaware Idaho 1963
#> 1878 Louisiana Massachusetts 1963
#> 1879 California Vermont 1963
#> 1880 Alabama North Dakota 1963
#> 1881 Montana Minnesota 1963
#> 1882 Nevada Oklahoma 1963
#> 1883 South Dakota Florida 1963
#> 1884 Connecticut Idaho 1963
#> 1885 Minnesota Massachusetts 1963
#> 1886 Nebraska Louisiana 1963
#> 1887 South Dakota Wisconsin 1963
#> 1888 Kansas Iowa 1963
#> 1889 Connecticut Delaware 1963
#> 1890 Delaware Illinois 1963
#> 1891 North Dakota Arkansas 1963
#> 1892 North Dakota North Carolina 1963
#> 1893 North Dakota Alabama 1963
#> 1894 Arkansas Washington 1963
#> 1895 Idaho California 1963
#> 1896 Minnesota Utah 1963
#> 1897 Iowa Utah 1963
#> 1898 Iowa South Dakota 1963
#> 1899 Alaska Nebraska 1963
#> 1900 Vermont Connecticut 1963
#> 1901 Oregon Connecticut 1963
#> 1902 Iowa Arkansas 1963
#> 1903 Colorado Wyoming 1963
#> 1904 Massachusetts Tennessee 1963
#> 1905 Minnesota Tennessee 1963
#> 1906 Iowa South Carolina 1963
#> 1907 Pennsylvania Massachusetts 1963
#> 1908 Wisconsin Alabama 1963
#> 1909 New Mexico Alabama 1963
#> 1910 Alaska Oregon 1963
#> 1911 Kansas New York 1963
#> 1912 North Dakota Minnesota 1963
#> 1913 North Dakota Michigan 1963
#> 1914 South Dakota Hawaii 1963
#> 1915 North Dakota Hawaii 1963
#> 1916 Hawaii Delaware 1963
#> 1917 Utah Alaska 1963
#> 1918 Nebraska Alaska 1963
#> 1919 North Dakota Alaska 1963
#> 1920 Kentucky Nebraska 1963
#> 1921 Arkansas Vermont 1963
#> 1922 Kentucky New Mexico 1963
#> 1923 Wyoming Arizona 1963
#> 1924 Indiana Nevada 1963
#> 1925 Illinois New Jersey 1963
#> 1926 Florida Texas 1963
#> 1927 Arizona Wyoming 1963
#> 1928 Nebraska Minnesota 1963
#> 1929 Washington New York 1963
#> 1930 Minnesota Colorado 1963
#> 1931 Arizona Indiana 1963
#> 1932 Oregon Pennsylvania 1963
#> 1933 South Dakota Mississippi 1963
#> 1934 Utah Georgia 1963
#> 1935 Florida Vermont 1963
#> 1936 South Carolina Nevada 1963
#> 1937 New York Nevada 1963
#> 1938 Kentucky Ohio 1963
#> 1939 Kentucky Maryland 1963
#> 1940 Utah New Mexico 1963
#> 1941 Mississippi Oklahoma 1963
#> 1942 South Carolina Tennessee 1963
#> 1943 Rhode Island Kentucky 1963
#> 1944 New Jersey Colorado 1963
#> 1945 Mississippi Nebraska 1963
#> 1946 Connecticut North Carolina 1963
#> 1947 Pennsylvania Arkansas 1963
#> 1948 Alabama Minnesota 1963
#> 1949 Rhode Island New Hampshire 1963
#> 1950 South Carolina Utah 1963
#> 1951 Maryland Illinois 1963
#> 1952 New Hampshire Washington 1963
#> 1953 Ohio Alabama 1963
#> 1954 Colorado Vermont 1963
#> 1955 Missouri Mississippi 1963
#> 1956 Delaware Ohio 1963
#> 1957 Wyoming North Carolina 1963
#> 1958 Ohio Indiana 1963
#> 1959 Mississippi West Virginia 1963
#> 1960 Tennessee Hawaii 1963
#> 1961 Missouri Florida 1963
#> 1962 Mississippi South Dakota 1963
#> 1963 Maine South Dakota 1963
#> 1964 Arizona Pennsylvania 1963
#> 1965 Vermont Kentucky 1963
#> 1966 Montana Michigan 1963
#> 1967 Delaware New Jersey 1963
#> 1968 Nevada Utah 1963
#> 1969 South Carolina Kansas 1963
#> 1970 Vermont South Carolina 1963
#> 1971 Idaho Vermont 1963
#> 1972 South Carolina Maine 1963
#> 1973 Illinois Delaware 1963
#> 1974 Virginia New Hampshire 1963
#> 1975 Idaho Montana 1963
#> 1976 South Carolina Illinois 1963
#> 1977 Rhode Island Oklahoma 1963
#> 1978 Mississippi Indiana 1963
#> 1979 Wyoming New Mexico 1963
#> 1980 Oregon Michigan 1963
#> 1981 Maine Maryland 1963
#> 1982 New Mexico Arizona 1963
#> 1983 Hawaii Tennessee 1963
#> 1984 Massachusetts Pennsylvania 1963
#> 1985 Arizona Alabama 1963
#> 1986 Hawaii Rhode Island 1963
#> 1987 Pennsylvania Minnesota 1963
#> 1988 Louisiana Iowa 1963
#> 1989 South Carolina Washington 1963
#> 1990 Oklahoma Texas 1963
#> 1991 Delaware Texas 1963
#> 1992 Nebraska Ohio 1963
#> 1993 West Virginia Idaho 1963
#> 1994 Alabama North Carolina 1963
#> 1995 Delaware Missouri 1963
#> 1996 South Carolina Kentucky 1963
#> 1997 Pennsylvania West Virginia 1963
#> 1998 Ohio Rhode Island 1963
#> 1999 Mississippi North Dakota 1963
#> 2000 Ohio Illinois 1963
#> 2001 New York Pennsylvania 1964
#> 2002 New York Oregon 1964
#> 2003 New York Connecticut 1964
#> 2004 Florida Mississippi 1964
#> 2005 New York Maine 1964
#> 2006 New York Rhode Island 1964
#> 2007 Oregon Kentucky 1964
#> 2008 New York New Hampshire 1964
#> 2009 New York North Carolina 1964
#> 2010 New York California 1964
#> 2011 Illinois Florida 1964
#> 2012 New York Nebraska 1964
#> 2013 New York Indiana 1964
#> 2014 New York Arkansas 1964
#> 2015 New Jersey Minnesota 1964
#> 2016 New York Delaware 1964
#> 2017 New Jersey Michigan 1964
#> 2018 New York Ohio 1964
#> 2019 Connecticut New Jersey 1964
#> 2020 New York Illinois 1964
#> 2021 New York West Virginia 1964
#> 2022 New York Massachusetts 1964
#> 2023 Tennessee Missouri 1964
#> 2024 Oregon Idaho 1964
#> 2025 New York New Mexico 1964
#> 2026 New Jersey South Carolina 1964
#> 2027 New York Maryland 1964
#> 2028 Washington Wyoming 1964
#> 2029 Virginia Alabama 1964
#> 2030 New York Washington 1964
#> 2031 Maryland Virginia 1964
#> 2032 California Nevada 1964
#> 2033 Virginia Texas 1964
#> 2034 New York Colorado 1964
#> 2035 New York Vermont 1964
#> 2036 Oregon Arizona 1964
#> 2037 Colorado Georgia 1964
#> 2038 Oregon Oklahoma 1964
#> 2039 Oregon South Dakota 1964
#> 2040 New York Tennessee 1964
#> 2041 Utah Kansas 1964
#> 2042 New Jersey New York 1964
#> 2043 Indiana Louisiana 1964
#> 2044 New York Montana 1964
#> 2045 New Jersey Iowa 1964
#> 2046 New York Utah 1964
#> 2047 New York Wisconsin 1964
#> 2048 Delaware North Dakota 1964
#> 2049 Maine Florida 1964
#> 2050 Alabama New Mexico 1964
#> 2051 New Mexico North Carolina 1964
#> 2052 Alabama Arkansas 1964
#> 2053 Maryland Kentucky 1964
#> 2054 New Jersey Idaho 1964
#> 2055 Connecticut New Hampshire 1964
#> 2056 Maryland Tennessee 1964
#> 2057 New Mexico Rhode Island 1964
#> 2058 Arizona Indiana 1964
#> 2059 Tennessee South Carolina 1964
#> 2060 Louisiana Montana 1964
#> 2061 Mississippi Arizona 1964
#> 2062 Florida Nevada 1964
#> 2063 Arkansas Alabama 1964
#> 2064 Connecticut Alaska 1964
#> 2065 Colorado Pennsylvania 1964
#> 2066 Alabama Utah 1964
#> 2067 North Dakota Washington 1964
#> 2068 Florida Virginia 1964
#> 2069 South Carolina Vermont 1964
#> 2070 Florida Wyoming 1964
#> 2071 New Mexico West Virginia 1964
#> 2072 New Mexico Louisiana 1964
#> 2073 North Dakota Maryland 1964
#> 2074 Montana Maine 1964
#> 2075 New Jersey Missouri 1964
#> 2076 Connecticut New York 1964
#> 2077 Minnesota Illinois 1964
#> 2078 Washington Colorado 1964
#> 2079 Maryland Delaware 1964
#> 2080 Arizona Texas 1964
#> 2081 Rhode Island Connecticut 1964
#> 2082 New York New Jersey 1964
#> 2083 New York Michigan 1964
#> 2084 North Carolina Georgia 1964
#> 2085 Pennsylvania Kansas 1964
#> 2086 Mississippi Nebraska 1964
#> 2087 Colorado Ohio 1964
#> 2088 California Oregon 1964
#> 2089 South Dakota Mississippi 1964
#> 2090 Idaho Iowa 1964
#> 2091 North Dakota Massachusetts 1964
#> 2092 New York Arizona 1964
#> 2093 Arkansas South Dakota 1964
#> 2094 Tennessee Wisconsin 1964
#> 2095 Pennsylvania California 1964
#> 2096 Virginia Oklahoma 1964
#> 2097 Colorado Minnesota 1964
#> 2098 Maryland New Mexico 1964
#> 2099 Illinois Indiana 1964
#> 2100 New York Wyoming 1964
#> 2101 Alabama North Carolina 1964
#> 2102 New York Virginia 1964
#> 2103 Alabama Florida 1964
#> 2104 Utah North Dakota 1964
#> 2105 Rhode Island Maryland 1964
#> 2106 Nebraska Georgia 1964
#> 2107 Kentucky Montana 1964
#> 2108 Iowa Louisiana 1964
#> 2109 California Pennsylvania 1964
#> 2110 Rhode Island Hawaii 1964
#> 2111 Illinois Alabama 1964
#> 2112 Illinois Rhode Island 1964
#> 2113 Kentucky Maine 1964
#> 2114 Tennessee Texas 1964
#> 2115 Washington Illinois 1964
#> 2116 Arkansas New Hampshire 1964
#> 2117 Michigan New York 1964
#> 2118 Kentucky Arkansas 1964
#> 2119 Alabama Tennessee 1964
#> 2120 Georgia South Carolina 1964
#> 2121 Kansas Kentucky 1964
#> 2122 Illinois Minnesota 1964
#> 2123 California Michigan 1964
#> 2124 Maryland Utah 1964
#> 2125 Rhode Island Louisiana 1964
#> 2126 Kentucky North Dakota 1964
#> 2127 California New Jersey 1964
#> 2128 Virginia Colorado 1964
#> 2129 Virginia Vermont 1964
#> 2130 New Jersey Ohio 1964
#> 2131 Rhode Island Washington 1964
#> 2132 Michigan Delaware 1964
#> 2133 Maryland North Carolina 1964
#> 2134 Tennessee Nevada 1964
#> 2135 Tennessee Kansas 1964
#> 2136 Oregon Nebraska 1964
#> 2137 Louisiana Oklahoma 1964
#> 2138 New York Idaho 1964
#> 2139 South Carolina Connecticut 1964
#> 2140 Wyoming Oregon 1964
#> 2141 Minnesota Missouri 1964
#> 2142 Alabama Kentucky 1964
#> 2143 North Dakota South Dakota 1964
#> 2144 Alabama Virginia 1964
#> 2145 Minnesota New Jersey 1964
#> 2146 Washington Rhode Island 1964
#> 2147 Michigan Minnesota 1964
#> 2148 New Mexico California 1964
#> 2149 Michigan South Carolina 1964
#> 2150 New Jersey Indiana 1964
#> 2151 California Wisconsin 1964
#> 2152 California Illinois 1964
#> 2153 South Carolina Arkansas 1964
#> 2154 Rhode Island South Dakota 1964
#> 2155 Arkansas Arizona 1964
#> 2156 Massachusetts New York 1964
#> 2157 Arkansas Iowa 1964
#> 2158 Nevada Mississippi 1964
#> 2159 South Carolina Idaho 1964
#> 2160 Maryland Washington 1964
#> 2161 New York Kansas 1964
#> 2162 South Dakota North Carolina 1964
#> 2163 Alabama West Virginia 1964
#> 2164 Oregon Connecticut 1964
#> 2165 Louisiana Pennsylvania 1964
#> 2166 Arizona North Dakota 1964
#> 2167 Connecticut Massachusetts 1964
#> 2168 Oregon Montana 1964
#> 2169 Wisconsin Utah 1964
#> 2170 Tennessee Georgia 1964
#> 2171 West Virginia Kentucky 1964
#> 2172 Tennessee Arizona 1964
#> 2173 Wisconsin Colorado 1964
#> 2174 Minnesota Washington 1964
#> 2175 New Jersey Oregon 1964
#> 2176 Illinois Massachusetts 1964
#> 2177 Tennessee Maryland 1964
#> 2178 Tennessee Alabama 1964
#> 2179 Kentucky Colorado 1964
#> 2180 Maine New Hampshire 1964
#> 2181 Arizona West Virginia 1964
#> 2182 Washington Oklahoma 1964
#> 2183 New Jersey Florida 1964
#> 2184 Florida Delaware 1964
#> 2185 Vermont Wyoming 1964
#> 2186 Texas Missouri 1964
#> 2187 Arkansas Florida 1964
#> 2188 Nebraska Ohio 1964
#> 2189 Kentucky Tennessee 1964
#> 2190 Arkansas Nebraska 1964
#> 2191 Kentucky Alabama 1964
#> 2192 Maryland New Jersey 1964
#> 2193 Massachusetts Wisconsin 1964
#> 2194 Mississippi New Mexico 1964
#> 2195 Ohio Texas 1964
#> 2196 Tennessee Louisiana 1964
#> 2197 Mississippi Montana 1964
#> 2198 Colorado Rhode Island 1964
#> 2199 Kentucky Vermont 1964
#> 2200 California South Carolina 1964
#> 2201 Pennsylvania Alabama 1964
#> 2202 California Delaware 1964
#> 2203 Missouri Mississippi 1964
#> 2204 Maryland South Carolina 1964
#> 2205 Georgia Tennessee 1964
#> 2206 Pennsylvania New York 1964
#> 2207 Utah New Mexico 1964
#> 2208 California Hawaii 1964
#> 2209 New Jersey Connecticut 1964
#> 2210 Virginia Wyoming 1964
#> 2211 Delaware Nebraska 1964
#> 2212 Maryland Nevada 1964
#> 2213 North Dakota New York 1964
#> 2214 Florida Michigan 1964
#> 2215 North Dakota Minnesota 1964
#> 2216 South Carolina Illinois 1964
#> 2217 Ohio North Carolina 1964
#> 2218 New Mexico Mississippi 1964
#> 2219 California Ohio 1964
#> 2220 Oklahoma Arkansas 1964
#> 2221 Illinois New Hampshire 1964
#> 2222 Minnesota California 1964
#> 2223 Iowa Georgia 1964
#> 2224 California Rhode Island 1964
#> 2225 Wyoming Maine 1964
#> 2226 Florida Massachusetts 1964
#> 2227 Louisiana Wisconsin 1964
#> 2228 Oregon Vermont 1964
#> 2229 New Mexico Delaware 1964
#> 2230 Montana Washington 1964
#> 2231 Ohio Illinois 1964
#> 2232 Minnesota Maine 1964
#> 2233 Louisiana Iowa 1964
#> 2234 Utah Oregon 1964
#> 2235 California Oklahoma 1964
#> 2236 Iowa Kansas 1964
#> 2237 Indiana Arkansas 1964
#> 2238 New Jersey Rhode Island 1964
#> 2239 Mississippi Ohio 1964
#> 2240 Massachusetts Washington 1964
#> 2241 Kentucky South Dakota 1964
#> 2242 Washington Texas 1964
#> 2243 North Dakota Idaho 1964
#> 2244 Vermont New York 1964
#> 2245 Georgia Utah 1964
#> 2246 Oregon New Mexico 1964
#> 2247 North Carolina Virginia 1964
#> 2248 Delaware Arkansas 1964
#> 2249 New Jersey Massachusetts 1964
#> 2250 Kansas Iowa 1964
#> 2251 Minnesota Alaska 1964
#> 2252 Washington California 1964
#> 2253 Nebraska California 1964
#> 2254 Illinois Pennsylvania 1964
#> 2255 Maine North Dakota 1964
#> 2256 Ohio Indiana 1964
#> 2257 New York Hawaii 1964
#> 2258 Arkansas Colorado 1964
#> 2259 Illinois New York 1964
#> 2260 South Carolina Michigan 1964
#> 2261 Delaware Arizona 1964
#> 2262 Pennsylvania New Jersey 1964
#> 2263 Illinois New Jersey 1964
#> 2264 Vermont Kentucky 1964
#> 2265 Wisconsin Hawaii 1964
#> 2266 Massachusetts Illinois 1964
#> 2267 Kansas Vermont 1964
#> 2268 Missouri Kansas 1964
#> 2269 Connecticut Virginia 1964
#> 2270 North Dakota Iowa 1964
#> 2271 South Dakota Tennessee 1964
#> 2272 Vermont Oregon 1964
#> 2273 Alabama Louisiana 1964
#> 2274 Missouri Maryland 1964
#> 2275 Wyoming Vermont 1964
#> 2276 New York Nevada 1964
#> 2277 Wyoming Arizona 1964
#> 2278 Vermont Iowa 1964
#> 2279 Ohio Connecticut 1964
#> 2280 Louisiana Nebraska 1964
#> 2281 Arkansas Mississippi 1964
#> 2282 Colorado Wyoming 1964
#> 2283 Oregon Alabama 1964
#> 2284 Virginia Nebraska 1964
#> 2285 Washington New Hampshire 1964
#> 2286 Mississippi Washington 1964
#> 2287 Minnesota Tennessee 1964
#> 2288 Mississippi South Carolina 1964
#> 2289 Pennsylvania Rhode Island 1964
#> 2290 Louisiana New Mexico 1964
#> 2291 Pennsylvania Wisconsin 1964
#> 2292 Arkansas Oregon 1964
#> 2293 Delaware Wyoming 1964
#> 2294 Missouri Nevada 1964
#> 2295 Virginia Connecticut 1964
#> 2296 Mississippi Indiana 1964
#> 2297 Virginia Illinois 1964
#> 2298 Arizona Oklahoma 1964
#> 2299 Georgia Louisiana 1964
#> 2300 Maine Michigan 1964
#> 2301 Pennsylvania Delaware 1964
#> 2302 Oregon Alaska 1964
#> 2303 South Carolina Georgia 1964
#> 2304 Rhode Island Georgia 1964
#> 2305 Arkansas Missouri 1964
#> 2306 North Carolina South Carolina 1964
#> 2307 Illinois Wisconsin 1964
#> 2308 Maryland Maine 1964
#> 2309 Wyoming Utah 1964
#> 2310 Mississippi Texas 1964
#> 2311 Virginia Maryland 1964
#> 2312 Oregon Indiana 1964
#> 2313 Arizona Montana 1964
#> 2314 New Mexico Florida 1964
#> 2315 Mississippi Idaho 1964
#> 2316 Louisiana West Virginia 1964
#> 2317 Wisconsin Idaho 1964
#> 2318 Arizona Arkansas 1964
#> 2319 Florida Oregon 1964
#> 2320 Kansas Alaska 1964
#> 2321 Louisiana Vermont 1964
#> 2322 Pennsylvania Michigan 1964
#> 2323 New Mexico Colorado 1964
#> 2324 Arizona Kansas 1964
#> 2325 Arizona Wyoming 1964
#> 2326 Nebraska Louisiana 1964
#> 2327 Arkansas Rhode Island 1964
#> 2328 Oregon New York 1964
#> 2329 Virginia Florida 1964
#> 2330 North Carolina California 1964
#> 2331 New York Texas 1964
#> 2332 Virginia Pennsylvania 1964
#> 2333 Colorado Massachusetts 1964
#> 2334 Montana West Virginia 1964
#> 2335 Mississippi California 1964
#> 2336 North Dakota Wyoming 1964
#> 2337 Illinois Maine 1964
#> 2338 Texas Oklahoma 1964
#> 2339 California Utah 1964
#> 2340 Florida North Carolina 1964
#> 2341 New Hampshire Delaware 1964
#> 2342 West Virginia Missouri 1964
#> 2343 Wisconsin Vermont 1964
#> 2344 Pennsylvania Maine 1964
#> 2345 Kentucky Utah 1964
#> 2346 Utah Idaho 1964
#> 2347 Wyoming New Mexico 1964
#> 2348 Vermont Montana 1964
#> 2349 Louisiana Illinois 1964
#> 2350 New York Florida 1964
#> 2351 Michigan California 1964
#> 2352 Delaware California 1964
#> 2353 Ohio Kansas 1964
#> 2354 Tennessee Idaho 1964
#> 2355 Louisiana Connecticut 1964
#> 2356 New Jersey Pennsylvania 1964
#> 2357 Idaho North Carolina 1964
#> 2358 Oregon Wisconsin 1964
#> 2359 Florida Maine 1964
#> 2360 Virginia Delaware 1964
#> 2361 Indiana Illinois 1964
#> 2362 Virginia Utah 1964
#> 2363 North Carolina South Dakota 1964
#> 2364 Virginia Tennessee 1964
#> 2365 North Carolina Pennsylvania 1964
#> 2366 Oregon Massachusetts 1964
#> 2367 Virginia Rhode Island 1964
#> 2368 Alabama North Dakota 1964
#> 2369 South Dakota Michigan 1964
#> 2370 Mississippi Kentucky 1964
#> 2371 South Carolina New Hampshire 1964
#> 2372 Kansas Illinois 1964
#> 2373 Oregon Washington 1964
#> 2374 Arizona Mississippi 1964
#> 2375 Tennessee Florida 1964
#> 2376 Alabama California 1964
#> 2377 Idaho Georgia 1964
#> 2378 Minnesota Arizona 1964
#> 2379 Iowa South Carolina 1964
#> 2380 Arizona Alabama 1964
#> 2381 Virginia New York 1964
#> 2382 Minnesota New York 1964
#> 2383 Louisiana Minnesota 1964
#> 2384 California Alaska 1964
#> 2385 Nevada Oklahoma 1964
#> 2386 North Dakota Mississippi 1964
#> 2387 Virginia Kansas 1964
#> 2388 Delaware Idaho 1964
#> 2389 Pennsylvania Massachusetts 1964
#> 2390 Delaware New Hampshire 1964
#> 2391 Iowa Montana 1964
#> 2392 Delaware Montana 1964
#> 2393 Delaware Illinois 1964
#> 2394 California Tennessee 1964
#> 2395 Virginia Missouri 1964
#> 2396 California Massachusetts 1964
#> 2397 Louisiana Massachusetts 1964
#> 2398 Minnesota Massachusetts 1964
#> 2399 South Dakota Wisconsin 1964
#> 2400 Delaware Vermont 1964
#> 2401 Louisiana North Dakota 1964
#> 2402 Massachusetts Minnesota 1964
#> 2403 Alaska Delaware 1964
#> 2404 Oregon California 1964
#> 2405 Massachusetts Utah 1964
#> 2406 North Dakota Nebraska 1964
#> 2407 Alaska Nebraska 1964
#> 2408 North Dakota Arkansas 1964
#> 2409 Arizona Tennessee 1964
#> 2410 North Dakota Alabama 1964
#> 2411 California Vermont 1964
#> 2412 Virginia North Dakota 1964
#> 2413 Delaware New Mexico 1964
#> 2414 Nebraska Montana 1964
#> 2415 New Mexico Oklahoma 1964
#> 2416 Arkansas Washington 1964
#> 2417 Idaho California 1964
#> 2418 Massachusetts Virginia 1964
#> 2419 Minnesota Utah 1964
#> 2420 Iowa Utah 1964
#> 2421 Iowa South Dakota 1964
#> 2422 Massachusetts Nebraska 1964
#> 2423 Missouri Idaho 1964
#> 2424 Vermont Connecticut 1964
#> 2425 Iowa Arkansas 1964
#> 2426 Massachusetts Tennessee 1964
#> 2427 Arkansas North Carolina 1964
#> 2428 Oklahoma Louisiana 1964
#> 2429 North Dakota Indiana 1964
#> 2430 Minnesota Indiana 1964
#> 2431 Wisconsin Alabama 1964
#> 2432 New Mexico Alabama 1964
#> 2433 Alaska Oregon 1964
#> 2434 Washington North Dakota 1964
#> 2435 Kansas New York 1964
#> 2436 Arizona New York 1964
#> 2437 South Dakota Hawaii 1964
#> 2438 North Dakota Hawaii 1964
#> 2439 Utah Alaska 1964
#> 2440 Nebraska Alaska 1964
#> 2441 North Dakota Alaska 1964
#> 2442 Kentucky Maryland 1964
#> 2443 Georgia Connecticut 1964
#> 2444 Arizona Missouri 1964
#> 2445 Florida Texas 1964
#> 2446 Maryland Pennsylvania 1964
#> 2447 Maine Maryland 1964
#> 2448 Kansas Wyoming 1964
#> 2449 Vermont Minnesota 1964
#> 2450 Utah Georgia 1964
#> 2451 Maine Texas 1964
#> 2452 Washington New York 1964
#> 2453 South Carolina Nevada 1964
#> 2454 Minnesota Colorado 1964
#> 2455 Rhode Island Kentucky 1964
#> 2456 Colorado New Hampshire 1964
#> 2457 Indiana Nevada 1964
#> 2458 Maine Nebraska 1964
#> 2459 Idaho Kansas 1964
#> 2460 Montana Idaho 1964
#> 2461 Wisconsin New Jersey 1964
#> 2462 Vermont Mississippi 1964
#> 2463 New Jersey Colorado 1964
#> 2464 Kentucky Nebraska 1964
#> 2465 Pennsylvania Arkansas 1964
#> 2466 South Carolina Utah 1964
#> 2467 Illinois Ohio 1964
#> 2468 Oregon Pennsylvania 1964
#> 2469 Oregon North Carolina 1964
#> 2470 Pennsylvania Minnesota 1964
#> 2471 Pennsylvania Connecticut 1964
#> 2472 Kansas Indiana 1964
#> 2473 Ohio Alabama 1964
#> 2474 Kentucky Ohio 1964
#> 2475 New Mexico Arizona 1964
#> 2476 South Dakota Louisiana 1964
#> 2477 Tennessee Hawaii 1964
#> 2478 New Mexico Washington 1964
#> 2479 Missouri Florida 1964
#> 2480 Mississippi South Dakota 1964
#> 2481 Maine South Dakota 1964
#> 2482 Montana Michigan 1964
#> 2483 Nevada Utah 1964
#> 2484 Delaware Texas 1964
#> 2485 South Carolina Tennessee 1964
#> 2486 Vermont South Carolina 1964
#> 2487 South Carolina Maine 1964
#> 2488 Minnesota Iowa 1964
#> 2489 Illinois Oklahoma 1964
#> 2490 Idaho Arkansas 1964
#> 2491 Oregon Michigan 1964
#> 2492 Illinois Delaware 1964
#> 2493 Delaware New Jersey 1964
#> 2494 New Jersey Virginia 1964
#> 2495 Hawaii Tennessee 1964
#> 2496 Massachusetts Pennsylvania 1964
#> 2497 Hawaii Rhode Island 1964
#> 2498 Georgia New Mexico 1964
#> 2499 South Carolina Washington 1964
#> 2500 South Carolina Arizona 1964
#> 2501 New York Pennsylvania 1965
#> 2502 New York Oregon 1965
#> 2503 New York Connecticut 1965
#> 2504 Florida Mississippi 1965
#> 2505 Oregon Kentucky 1965
#> 2506 New York Rhode Island 1965
#> 2507 New York Maine 1965
#> 2508 New York Michigan 1965
#> 2509 New York New Hampshire 1965
#> 2510 New York California 1965
#> 2511 Illinois Florida 1965
#> 2512 New York North Carolina 1965
#> 2513 New York Nebraska 1965
#> 2514 New York Ohio 1965
#> 2515 New Jersey Minnesota 1965
#> 2516 New York Arkansas 1965
#> 2517 New York Delaware 1965
#> 2518 New York Indiana 1965
#> 2519 New York Massachusetts 1965
#> 2520 Connecticut New Jersey 1965
#> 2521 New York Illinois 1965
#> 2522 New York West Virginia 1965
#> 2523 Oregon Arizona 1965
#> 2524 Colorado Georgia 1965
#> 2525 New Jersey South Carolina 1965
#> 2526 New York Maryland 1965
#> 2527 Washington Missouri 1965
#> 2528 Oregon Idaho 1965
#> 2529 Washington Wyoming 1965
#> 2530 Indiana Louisiana 1965
#> 2531 New York New Mexico 1965
#> 2532 New York Washington 1965
#> 2533 California Nevada 1965
#> 2534 New York Virginia 1965
#> 2535 Oregon South Dakota 1965
#> 2536 New York Colorado 1965
#> 2537 New York Tennessee 1965
#> 2538 North Carolina Texas 1965
#> 2539 Virginia Alabama 1965
#> 2540 Utah Kansas 1965
#> 2541 New York Vermont 1965
#> 2542 Oregon Oklahoma 1965
#> 2543 New Jersey New York 1965
#> 2544 New York Montana 1965
#> 2545 New Jersey Iowa 1965
#> 2546 New York Utah 1965
#> 2547 New York Wisconsin 1965
#> 2548 Delaware North Dakota 1965
#> 2549 New Mexico North Carolina 1965
#> 2550 Maine Florida 1965
#> 2551 Alabama New Mexico 1965
#> 2552 Alabama Arkansas 1965
#> 2553 Colorado Rhode Island 1965
#> 2554 New Jersey Idaho 1965
#> 2555 Connecticut New Hampshire 1965
#> 2556 Florida Virginia 1965
#> 2557 Arizona Indiana 1965
#> 2558 Colorado Pennsylvania 1965
#> 2559 Maryland Kentucky 1965
#> 2560 Nebraska Tennessee 1965
#> 2561 Colorado Louisiana 1965
#> 2562 Montana Maine 1965
#> 2563 Tennessee Missouri 1965
#> 2564 North Carolina South Carolina 1965
#> 2565 Alabama Utah 1965
#> 2566 North Dakota Washington 1965
#> 2567 New York New Jersey 1965
#> 2568 Alabama Arizona 1965
#> 2569 California Michigan 1965
#> 2570 South Carolina Vermont 1965
#> 2571 Louisiana Montana 1965
#> 2572 New Mexico West Virginia 1965
#> 2573 Pennsylvania Kansas 1965
#> 2574 New Mexico Delaware 1965
#> 2575 Connecticut New York 1965
#> 2576 Florida Nevada 1965
#> 2577 Arkansas Alabama 1965
#> 2578 Connecticut Alaska 1965
#> 2579 Minnesota Illinois 1965
#> 2580 Washington Colorado 1965
#> 2581 Rhode Island Connecticut 1965
#> 2582 Montana Maryland 1965
#> 2583 North Carolina Georgia 1965
#> 2584 Florida Wyoming 1965
#> 2585 Mississippi Nebraska 1965
#> 2586 Colorado Ohio 1965
#> 2587 Tennessee Texas 1965
#> 2588 New Mexico Mississippi 1965
#> 2589 California Oregon 1965
#> 2590 Washington Massachusetts 1965
#> 2591 New York Arizona 1965
#> 2592 Idaho Iowa 1965
#> 2593 Illinois Oklahoma 1965
#> 2594 Arkansas South Dakota 1965
#> 2595 Pennsylvania California 1965
#> 2596 Kentucky Montana 1965
#> 2597 Colorado Minnesota 1965
#> 2598 Michigan Delaware 1965
#> 2599 South Dakota Wisconsin 1965
#> 2600 Illinois Indiana 1965
#> 2601 Rhode Island Hawaii 1965
#> 2602 Alabama North Carolina 1965
#> 2603 Alabama Florida 1965
#> 2604 Michigan New York 1965
#> 2605 New Jersey Virginia 1965
#> 2606 Utah North Dakota 1965
#> 2607 Nebraska Georgia 1965
#> 2608 California Pennsylvania 1965
#> 2609 California New Jersey 1965
#> 2610 Illinois Alabama 1965
#> 2611 New Jersey Michigan 1965
#> 2612 Kentucky Tennessee 1965
#> 2613 Washington Illinois 1965
#> 2614 Arkansas New Hampshire 1965
#> 2615 New York Wyoming 1965
#> 2616 Utah Rhode Island 1965
#> 2617 Kentucky Arkansas 1965
#> 2618 Colorado Kentucky 1965
#> 2619 Illinois Minnesota 1965
#> 2620 Maryland Utah 1965
#> 2621 Alabama Louisiana 1965
#> 2622 Maryland New Mexico 1965
#> 2623 Illinois Wisconsin 1965
#> 2624 Kentucky Maine 1965
#> 2625 Ohio Texas 1965
#> 2626 Michigan North Dakota 1965
#> 2627 Pennsylvania Vermont 1965
#> 2628 New Jersey Ohio 1965
#> 2629 Rhode Island Washington 1965
#> 2630 Kentucky Oklahoma 1965
#> 2631 Mississippi South Carolina 1965
#> 2632 Maryland North Carolina 1965
#> 2633 Virginia Colorado 1965
#> 2634 Tennessee Nevada 1965
#> 2635 Kentucky Idaho 1965
#> 2636 Oregon Nebraska 1965
#> 2637 South Carolina Connecticut 1965
#> 2638 New Mexico South Carolina 1965
#> 2639 Wyoming Oregon 1965
#> 2640 Minnesota Missouri 1965
#> 2641 Iowa Mississippi 1965
#> 2642 Rhode Island Maryland 1965
#> 2643 Mississippi Kentucky 1965
#> 2644 North Dakota South Dakota 1965
#> 2645 New Mexico Arizona 1965
#> 2646 Minnesota New Jersey 1965
#> 2647 Iowa Louisiana 1965
#> 2648 Michigan Minnesota 1965
#> 2649 New Mexico California 1965
#> 2650 Colorado New York 1965
#> 2651 Kentucky South Dakota 1965
#> 2652 New Jersey Indiana 1965
#> 2653 California Illinois 1965
#> 2654 South Carolina Arkansas 1965
#> 2655 Arkansas Iowa 1965
#> 2656 New York Kansas 1965
#> 2657 New Jersey Rhode Island 1965
#> 2658 Maryland Washington 1965
#> 2659 South Dakota North Carolina 1965
#> 2660 Alabama West Virginia 1965
#> 2661 Minnesota Maryland 1965
#> 2662 Oregon Connecticut 1965
#> 2663 Louisiana Pennsylvania 1965
#> 2664 Idaho Oklahoma 1965
#> 2665 Rhode Island Louisiana 1965
#> 2666 Idaho Virginia 1965
#> 2667 Oregon Montana 1965
#> 2668 Wisconsin Utah 1965
#> 2669 Illinois Rhode Island 1965
#> 2670 Tennessee Georgia 1965
#> 2671 Kentucky Alabama 1965
#> 2672 Wisconsin Colorado 1965
#> 2673 Minnesota Washington 1965
#> 2674 Louisiana New Mexico 1965
#> 2675 New Jersey Oregon 1965
#> 2676 Pennsylvania New York 1965
#> 2677 Alabama Tennessee 1965
#> 2678 Vermont Delaware 1965
#> 2679 Florida Idaho 1965
#> 2680 Kentucky Colorado 1965
#> 2681 Maine New Hampshire 1965
#> 2682 California Massachusetts 1965
#> 2683 Mississippi Texas 1965
#> 2684 New York Kentucky 1965
#> 2685 New Jersey Florida 1965
#> 2686 Vermont Wyoming 1965
#> 2687 Illinois Massachusetts 1965
#> 2688 Tennessee Alabama 1965
#> 2689 Arkansas Florida 1965
#> 2690 Nebraska Ohio 1965
#> 2691 Arkansas Nebraska 1965
#> 2692 Nevada Mississippi 1965
#> 2693 Oregon Vermont 1965
#> 2694 California Rhode Island 1965
#> 2695 Mississippi Montana 1965
#> 2696 Connecticut Massachusetts 1965
#> 2697 Rhode Island South Dakota 1965
#> 2698 Pennsylvania Alabama 1965
#> 2699 California Hawaii 1965
#> 2700 Georgia Tennessee 1965
#> 2701 Indiana Utah 1965
#> 2702 Utah New Mexico 1965
#> 2703 Tennessee Kansas 1965
#> 2704 Maine Michigan 1965
#> 2705 New Jersey Connecticut 1965
#> 2706 Nebraska Mississippi 1965
#> 2707 Idaho Texas 1965
#> 2708 Delaware Nebraska 1965
#> 2709 Maryland Nevada 1965
#> 2710 North Dakota Minnesota 1965
#> 2711 South Carolina Illinois 1965
#> 2712 California Ohio 1965
#> 2713 Minnesota California 1965
#> 2714 Wyoming Arizona 1965
#> 2715 Ohio North Carolina 1965
#> 2716 Oklahoma Arkansas 1965
#> 2717 Illinois New Hampshire 1965
#> 2718 Connecticut Virginia 1965
#> 2719 Iowa Georgia 1965
#> 2720 Wyoming Maine 1965
#> 2721 New Jersey Missouri 1965
#> 2722 California Wisconsin 1965
#> 2723 Kentucky Vermont 1965
#> 2724 Iowa South Carolina 1965
#> 2725 Montana Washington 1965
#> 2726 Ohio Illinois 1965
#> 2727 Kansas Maryland 1965
#> 2728 Minnesota Maine 1965
#> 2729 Alabama Kentucky 1965
#> 2730 Utah Oregon 1965
#> 2731 Arizona West Virginia 1965
#> 2732 Arizona North Dakota 1965
#> 2733 Iowa Kansas 1965
#> 2734 Indiana Arkansas 1965
#> 2735 Alabama Massachusetts 1965
#> 2736 Kentucky Louisiana 1965
#> 2737 Mississippi Oklahoma 1965
#> 2738 Florida Delaware 1965
#> 2739 Massachusetts Washington 1965
#> 2740 Delaware Oregon 1965
#> 2741 Kentucky Texas 1965
#> 2742 North Dakota Idaho 1965
#> 2743 California Arizona 1965
#> 2744 Vermont New York 1965
#> 2745 South Carolina Michigan 1965
#> 2746 Maryland New Jersey 1965
#> 2747 Oregon New Mexico 1965
#> 2748 Delaware Arkansas 1965
#> 2749 Kansas Iowa 1965
#> 2750 Minnesota Alaska 1965
#> 2751 Washington California 1965
#> 2752 Nebraska California 1965
#> 2753 Washington North Dakota 1965
#> 2754 Illinois Pennsylvania 1965
#> 2755 Rhode Island Delaware 1965
#> 2756 Ohio Indiana 1965
#> 2757 Tennessee South Carolina 1965
#> 2758 Minnesota New York 1965
#> 2759 Arkansas Colorado 1965
#> 2760 Utah Wisconsin 1965
#> 2761 Virginia New York 1965
#> 2762 Michigan Hawaii 1965
#> 2763 Maine North Dakota 1965
#> 2764 Illinois Vermont 1965
#> 2765 Pennsylvania New Jersey 1965
#> 2766 Illinois New Jersey 1965
#> 2767 Texas Missouri 1965
#> 2768 Mississippi New Mexico 1965
#> 2769 Oklahoma Colorado 1965
#> 2770 Virginia Iowa 1965
#> 2771 Mississippi Arizona 1965
#> 2772 Missouri Kansas 1965
#> 2773 New York Idaho 1965
#> 2774 Idaho Michigan 1965
#> 2775 Minnesota Tennessee 1965
#> 2776 Pennsylvania Rhode Island 1965
#> 2777 Virginia Wyoming 1965
#> 2778 New York Nevada 1965
#> 2779 Ohio Connecticut 1965
#> 2780 Michigan South Carolina 1965
#> 2781 Wyoming Vermont 1965
#> 2782 South Carolina Idaho 1965
#> 2783 Colorado Wyoming 1965
#> 2784 Oregon Alabama 1965
#> 2785 New Mexico Rhode Island 1965
#> 2786 Washington New Hampshire 1965
#> 2787 Mississippi Washington 1965
#> 2788 Pennsylvania Delaware 1965
#> 2789 West Virginia Maryland 1965
#> 2790 Pennsylvania Wisconsin 1965
#> 2791 Arkansas Oregon 1965
#> 2792 Delaware Wyoming 1965
#> 2793 Missouri Nevada 1965
#> 2794 Maryland Virginia 1965
#> 2795 Virginia Connecticut 1965
#> 2796 West Virginia Kentucky 1965
#> 2797 Mississippi Indiana 1965
#> 2798 Texas Illinois 1965
#> 2799 Oregon New York 1965
#> 2800 Arkansas Mississippi 1965
#> 2801 Oregon Alaska 1965
#> 2802 North Dakota Maryland 1965
#> 2803 South Carolina Georgia 1965
#> 2804 Rhode Island Georgia 1965
#> 2805 Michigan Louisiana 1965
#> 2806 Louisiana Wisconsin 1965
#> 2807 Maryland Maine 1965
#> 2808 Maryland Massachusetts 1965
#> 2809 Oregon Indiana 1965
#> 2810 New Mexico Florida 1965
#> 2811 South Carolina Ohio 1965
#> 2812 Louisiana West Virginia 1965
#> 2813 Arizona Arkansas 1965
#> 2814 Pennsylvania Michigan 1965
#> 2815 Kansas Alaska 1965
#> 2816 Virginia Utah 1965
#> 2817 Delaware Idaho 1965
#> 2818 Wyoming Utah 1965
#> 2819 Mississippi Idaho 1965
#> 2820 California South Carolina 1965
#> 2821 Colorado Massachusetts 1965
#> 2822 Arkansas Rhode Island 1965
#> 2823 Louisiana Iowa 1965
#> 2824 Virginia Florida 1965
#> 2825 North Carolina California 1965
#> 2826 Virginia Pennsylvania 1965
#> 2827 Virginia Missouri 1965
#> 2828 Montana West Virginia 1965
#> 2829 Colorado Vermont 1965
#> 2830 Mississippi California 1965
#> 2831 North Dakota Wyoming 1965
#> 2832 Illinois Maine 1965
#> 2833 Maine Nebraska 1965
#> 2834 South Dakota Arizona 1965
#> 2835 Florida North Carolina 1965
#> 2836 Louisiana Illinois 1965
#> 2837 Oregon Wisconsin 1965
#> 2838 Florida Oregon 1965
#> 2839 Pennsylvania Maine 1965
#> 2840 North Carolina Montana 1965
#> 2841 New York Texas 1965
#> 2842 Wyoming New Mexico 1965
#> 2843 New Mexico Oklahoma 1965
#> 2844 New York Florida 1965
#> 2845 Michigan California 1965
#> 2846 Delaware California 1965
#> 2847 Kentucky Utah 1965
#> 2848 Ohio Kansas 1965
#> 2849 South Carolina Tennessee 1965
#> 2850 New Jersey Pennsylvania 1965
#> 2851 Idaho North Carolina 1965
#> 2852 Florida Maine 1965
#> 2853 Indiana Illinois 1965
#> 2854 North Carolina South Dakota 1965
#> 2855 Kentucky Nebraska 1965
#> 2856 Virginia Tennessee 1965
#> 2857 North Carolina Pennsylvania 1965
#> 2858 West Virginia Missouri 1965
#> 2859 South Dakota Michigan 1965
#> 2860 South Carolina New Hampshire 1965
#> 2861 Massachusetts Illinois 1965
#> 2862 Oregon Washington 1965
#> 2863 Tennessee Florida 1965
#> 2864 Alabama California 1965
#> 2865 Louisiana Utah 1965
#> 2866 Idaho Georgia 1965
#> 2867 Minnesota Arizona 1965
#> 2868 Maryland South Carolina 1965
#> 2869 Minnesota Massachusetts 1965
#> 2870 Arizona Alabama 1965
#> 2871 Wisconsin Vermont 1965
#> 2872 Rhode Island New Mexico 1965
#> 2873 Vermont Iowa 1965
#> 2874 New Hampshire Delaware 1965
#> 2875 Virginia Delaware 1965
#> 2876 California Alaska 1965
#> 2877 Iowa Montana 1965
#> 2878 Delaware Montana 1965
#> 2879 Nebraska Illinois 1965
#> 2880 Virginia Kansas 1965
#> 2881 Pennsylvania Massachusetts 1965
#> 2882 Virginia North Dakota 1965
#> 2883 Delaware New Hampshire 1965
#> 2884 Nevada Oklahoma 1965
#> 2885 Minnesota Utah 1965
#> 2886 California Tennessee 1965
#> 2887 Massachusetts Tennessee 1965
#> 2888 Georgia South Carolina 1965
#> 2889 Louisiana Massachusetts 1965
#> 2890 Nebraska Louisiana 1965
#> 2891 California Vermont 1965
#> 2892 Alabama North Dakota 1965
#> 2893 Alaska Delaware 1965
#> 2894 Kansas Illinois 1965
#> 2895 Delaware Illinois 1965
#> 2896 Maryland Oklahoma 1965
#> 2897 Oregon California 1965
#> 2898 North Dakota Virginia 1965
#> 2899 Texas Nebraska 1965
#> 2900 North Dakota Nebraska 1965
#> 2901 Alaska Nebraska 1965
#> 2902 North Dakota Arkansas 1965
#> 2903 North Dakota Alabama 1965
#> 2904 Illinois New York 1965
#> 2905 Massachusetts New York 1965
#> 2906 Delaware New Mexico 1965
#> 2907 Nebraska Montana 1965
#> 2908 Arkansas Washington 1965
#> 2909 Idaho California 1965
#> 2910 Massachusetts Virginia 1965
#> 2911 Iowa Utah 1965
#> 2912 Iowa South Dakota 1965
#> 2913 Missouri Idaho 1965
#> 2914 Vermont Connecticut 1965
#> 2915 Iowa Arkansas 1965
#> 2916 Arkansas North Carolina 1965
#> 2917 Mississippi Massachusetts 1965
#> 2918 Alaska Massachusetts 1965
#> 2919 Oklahoma Louisiana 1965
#> 2920 North Dakota Indiana 1965
#> 2921 Minnesota Indiana 1965
#> 2922 Wisconsin Alabama 1965
#> 2923 New Mexico Alabama 1965
#> 2924 Nebraska Wisconsin 1965
#> 2925 Alaska Oregon 1965
#> 2926 Nebraska New York 1965
#> 2927 Kansas New York 1965
#> 2928 North Dakota Iowa 1965
#> 2929 South Dakota Hawaii 1965
#> 2930 Wisconsin Hawaii 1965
#> 2931 North Dakota Hawaii 1965
#> 2932 Utah Alaska 1965
#> 2933 Nebraska Alaska 1965
#> 2934 North Dakota Alaska 1965
#> 2935 Georgia Connecticut 1965
#> 2936 Arizona Missouri 1965
#> 2937 Maryland Pennsylvania 1965
#> 2938 Texas Massachusetts 1965
#> 2939 Florida Texas 1965
#> 2940 Idaho Kansas 1965
#> 2941 Vermont Minnesota 1965
#> 2942 Kansas Wyoming 1965
#> 2943 Utah Georgia 1965
#> 2944 Washington New York 1965
#> 2945 South Carolina Nevada 1965
#> 2946 Minnesota Colorado 1965
#> 2947 Louisiana Tennessee 1965
#> 2948 Virginia Oregon 1965
#> 2949 Kentucky Ohio 1965
#> 2950 Colorado New Hampshire 1965
#> 2951 Rhode Island Kentucky 1965
#> 2952 Indiana Nevada 1965
#> 2953 Indiana Maryland 1965
#> 2954 Oklahoma Kentucky 1965
#> 2955 New Jersey Colorado 1965
#> 2956 South Carolina Utah 1965
#> 2957 Montana Idaho 1965
#> 2958 South Dakota Louisiana 1965
#> 2959 Wisconsin New Jersey 1965
#> 2960 North Carolina Illinois 1965
#> 2961 Vermont Mississippi 1965
#> 2962 Pennsylvania Arkansas 1965
#> 2963 Pennsylvania Minnesota 1965
#> 2964 Idaho Montana 1965
#> 2965 Nevada Utah 1965
#> 2966 Oregon Pennsylvania 1965
#> 2967 Oregon North Carolina 1965
#> 2968 New Hampshire Vermont 1965
#> 2969 Pennsylvania Connecticut 1965
#> 2970 Kansas Indiana 1965
#> 2971 Ohio Alabama 1965
#> 2972 Montana Michigan 1965
#> 2973 Kansas Mississippi 1965
#> 2974 Nebraska Virginia 1965
#> 2975 Maine Texas 1965
#> 2976 Tennessee Hawaii 1965
#> 2977 Illinois Delaware 1965
#> 2978 New Mexico Washington 1965
#> 2979 Missouri Florida 1965
#> 2980 Mississippi South Dakota 1965
#> 2981 Maine South Dakota 1965
#> 2982 Georgia Louisiana 1965
#> 2983 Vermont South Carolina 1965
#> 2984 South Carolina Maine 1965
#> 2985 Texas Oklahoma 1965
#> 2986 New Mexico Colorado 1965
#> 2987 Idaho Arkansas 1965
#> 2988 Rhode Island Michigan 1965
#> 2989 Delaware New Jersey 1965
#> 2990 Alabama Mississippi 1965
#> 2991 Montana Wyoming 1965
#> 2992 Hawaii Tennessee 1965
#> 2993 Massachusetts Pennsylvania 1965
#> 2994 Massachusetts Wisconsin 1965
#> 2995 Hawaii Rhode Island 1965
#> 2996 Georgia New Mexico 1965
#> 2997 Rhode Island Oklahoma 1965
#> 2998 South Carolina Washington 1965
#> 2999 Delaware Texas 1965
#> 3000 Kentucky Maryland 1965
#> 3001 New York Pennsylvania 1966
#> 3002 New York New Hampshire 1966
#> 3003 New York Connecticut 1966
#> 3004 New York Michigan 1966
#> 3005 New York Oregon 1966
#> 3006 New York North Carolina 1966
#> 3007 New York Maine 1966
#> 3008 New York California 1966
#> 3009 New York Rhode Island 1966
#> 3010 New York Indiana 1966
#> 3011 New York Illinois 1966
#> 3012 New York Nebraska 1966
#> 3013 Florida Mississippi 1966
#> 3014 Oregon Kentucky 1966
#> 3015 New York Massachusetts 1966
#> 3016 Illinois Florida 1966
#> 3017 New York Ohio 1966
#> 3018 Michigan Delaware 1966
#> 3019 New York Washington 1966
#> 3020 New Jersey South Carolina 1966
#> 3021 Washington Missouri 1966
#> 3022 New Jersey Minnesota 1966
#> 3023 New York Arkansas 1966
#> 3024 Washington Kansas 1966
#> 3025 New York West Virginia 1966
#> 3026 New York Colorado 1966
#> 3027 Washington Wyoming 1966
#> 3028 New York Maryland 1966
#> 3029 Ohio Texas 1966
#> 3030 New Jersey Idaho 1966
#> 3031 Connecticut New Jersey 1966
#> 3032 New York Oklahoma 1966
#> 3033 Colorado Georgia 1966
#> 3034 California Nevada 1966
#> 3035 Virginia Alabama 1966
#> 3036 Indiana Louisiana 1966
#> 3037 New York New Mexico 1966
#> 3038 New York Tennessee 1966
#> 3039 Michigan Iowa 1966
#> 3040 Oregon Arizona 1966
#> 3041 Connecticut Vermont 1966
#> 3042 North Carolina Virginia 1966
#> 3043 New Jersey New York 1966
#> 3044 New Jersey Montana 1966
#> 3045 Oregon South Dakota 1966
#> 3046 Delaware North Dakota 1966
#> 3047 New York Wisconsin 1966
#> 3048 New York Utah 1966
#> 3049 New Mexico North Carolina 1966
#> 3050 Maine Florida 1966
#> 3051 Alabama Arkansas 1966
#> 3052 Arizona Indiana 1966
#> 3053 Alabama New Mexico 1966
#> 3054 Colorado Rhode Island 1966
#> 3055 Maryland Kentucky 1966
#> 3056 Oregon Idaho 1966
#> 3057 Connecticut New Hampshire 1966
#> 3058 Maryland Maine 1966
#> 3059 Maryland Tennessee 1966
#> 3060 Colorado Louisiana 1966
#> 3061 California Michigan 1966
#> 3062 Washington Colorado 1966
#> 3063 Colorado Pennsylvania 1966
#> 3064 New York New Jersey 1966
#> 3065 Montana Maryland 1966
#> 3066 Mississippi Arizona 1966
#> 3067 New Mexico West Virginia 1966
#> 3068 Kentucky Oklahoma 1966
#> 3069 Connecticut New York 1966
#> 3070 Rhode Island Delaware 1966
#> 3071 New Jersey Virginia 1966
#> 3072 Oregon Vermont 1966
#> 3073 Connecticut Alaska 1966
#> 3074 Kentucky Alabama 1966
#> 3075 Washington Illinois 1966
#> 3076 Mississippi Texas 1966
#> 3077 Mississippi Nebraska 1966
#> 3078 Kentucky Montana 1966
#> 3079 Idaho Iowa 1966
#> 3080 New Mexico Connecticut 1966
#> 3081 North Carolina South Carolina 1966
#> 3082 New Mexico Nevada 1966
#> 3083 South Dakota Mississippi 1966
#> 3084 Colorado Ohio 1966
#> 3085 Louisiana Kansas 1966
#> 3086 Tennessee Missouri 1966
#> 3087 California Oregon 1966
#> 3088 Alabama Utah 1966
#> 3089 Washington Massachusetts 1966
#> 3090 New York Wyoming 1966
#> 3091 Illinois Georgia 1966
#> 3092 Michigan North Dakota 1966
#> 3093 Mississippi Washington 1966
#> 3094 Kentucky South Dakota 1966
#> 3095 Connecticut Rhode Island 1966
#> 3096 Washington Wisconsin 1966
#> 3097 Idaho Minnesota 1966
#> 3098 Idaho Oklahoma 1966
#> 3099 California Hawaii 1966
#> 3100 New Mexico Delaware 1966
#> 3101 New York Arizona 1966
#> 3102 Kentucky New Mexico 1966
#> 3103 North Carolina California 1966
#> 3104 Delaware North Carolina 1966
#> 3105 Michigan New York 1966
#> 3106 Utah North Dakota 1966
#> 3107 Kentucky Idaho 1966
#> 3108 Kentucky Arkansas 1966
#> 3109 Alabama Florida 1966
#> 3110 Oregon Montana 1966
#> 3111 Montana Maine 1966
#> 3112 Arkansas Virginia 1966
#> 3113 California Illinois 1966
#> 3114 California Pennsylvania 1966
#> 3115 California New Jersey 1966
#> 3116 Ohio Indiana 1966
#> 3117 Mississippi Wyoming 1966
#> 3118 Oregon Louisiana 1966
#> 3119 Arkansas Alabama 1966
#> 3120 Kansas Kentucky 1966
#> 3121 Maryland Utah 1966
#> 3122 South Dakota Tennessee 1966
#> 3123 Maryland Vermont 1966
#> 3124 West Virginia Texas 1966
#> 3125 Idaho Kansas 1966
#> 3126 Kentucky New Hampshire 1966
#> 3127 Illinois Washington 1966
#> 3128 Delaware Connecticut 1966
#> 3129 Arkansas South Dakota 1966
#> 3130 New Jersey Michigan 1966
#> 3131 Oregon West Virginia 1966
#> 3132 Iowa Louisiana 1966
#> 3133 California South Carolina 1966
#> 3134 Rhode Island Minnesota 1966
#> 3135 North Carolina Georgia 1966
#> 3136 Illinois Iowa 1966
#> 3137 New Jersey Ohio 1966
#> 3138 South Dakota Arizona 1966
#> 3139 Illinois Tennessee 1966
#> 3140 Wisconsin Utah 1966
#> 3141 Virginia Colorado 1966
#> 3142 Arkansas North Carolina 1966
#> 3143 Oregon Nebraska 1966
#> 3144 Maryland Washington 1966
#> 3145 Illinois Rhode Island 1966
#> 3146 Maryland Arizona 1966
#> 3147 Minnesota Missouri 1966
#> 3148 Wyoming Oregon 1966
#> 3149 New York Nevada 1966
#> 3150 Rhode Island Maryland 1966
#> 3151 Illinois Vermont 1966
#> 3152 Minnesota New Jersey 1966
#> 3153 Maryland South Carolina 1966
#> 3154 Maryland New Mexico 1966
#> 3155 South Carolina Arkansas 1966
#> 3156 Idaho Virginia 1966
#> 3157 Illinois Alabama 1966
#> 3158 Oregon New York 1966
#> 3159 Mississippi South Carolina 1966
#> 3160 Alabama California 1966
#> 3161 Pennsylvania New York 1966
#> 3162 Georgia Oklahoma 1966
#> 3163 Nevada Mississippi 1966
#> 3164 Mississippi Montana 1966
#> 3165 Maine North Dakota 1966
#> 3166 Washington South Dakota 1966
#> 3167 California Rhode Island 1966
#> 3168 Minnesota Illinois 1966
#> 3169 California Kentucky 1966
#> 3170 Tennessee Pennsylvania 1966
#> 3171 California Massachusetts 1966
#> 3172 Oregon North Carolina 1966
#> 3173 Utah New Mexico 1966
#> 3174 Wisconsin Colorado 1966
#> 3175 Rhode Island Hawaii 1966
#> 3176 Louisiana Wisconsin 1966
#> 3177 Ohio Connecticut 1966
#> 3178 Arkansas Iowa 1966
#> 3179 Maryland Texas 1966
#> 3180 Maryland Indiana 1966
#> 3181 Minnesota California 1966
#> 3182 Kentucky Colorado 1966
#> 3183 South Dakota Georgia 1966
#> 3184 Illinois New Hampshire 1966
#> 3185 Vermont Wyoming 1966
#> 3186 Wisconsin Oregon 1966
#> 3187 New Mexico Rhode Island 1966
#> 3188 Maryland Delaware 1966
#> 3189 Kentucky Florida 1966
#> 3190 Minnesota Washington 1966
#> 3191 Mississippi Nevada 1966
#> 3192 Idaho Maryland 1966
#> 3193 Mississippi West Virginia 1966
#> 3194 Illinois Massachusetts 1966
#> 3195 Michigan Minnesota 1966
#> 3196 New York Montana 1966
#> 3197 Arkansas Nebraska 1966
#> 3198 Maryland Missouri 1966
#> 3199 South Dakota Ohio 1966
#> 3200 Minnesota Maine 1966
#> 3201 New York Virginia 1966
#> 3202 New York Vermont 1966
#> 3203 Vermont New York 1966
#> 3204 Montana Washington 1966
#> 3205 Minnesota Alaska 1966
#> 3206 Connecticut Massachusetts 1966
#> 3207 California Arizona 1966
#> 3208 Missouri Mississippi 1966
#> 3209 Massachusetts New York 1966
#> 3210 Arizona North Dakota 1966
#> 3211 South Carolina Kentucky 1966
#> 3212 Minnesota Kansas 1966
#> 3213 Maine Michigan 1966
#> 3214 Georgia Tennessee 1966
#> 3215 Kentucky North Carolina 1966
#> 3216 Delaware Nebraska 1966
#> 3217 Illinois Indiana 1966
#> 3218 Florida Texas 1966
#> 3219 New Mexico Mississippi 1966
#> 3220 Florida Nevada 1966
#> 3221 Oklahoma Arkansas 1966
#> 3222 Vermont Delaware 1966
#> 3223 South Dakota Louisiana 1966
#> 3224 Ohio Illinois 1966
#> 3225 Oregon Alabama 1966
#> 3226 Maine New Hampshire 1966
#> 3227 Florida Idaho 1966
#> 3228 California Wisconsin 1966
#> 3229 Florida Wyoming 1966
#> 3230 Massachusetts Washington 1966
#> 3231 Wyoming Maine 1966
#> 3232 New Jersey Oregon 1966
#> 3233 Alabama Maryland 1966
#> 3234 Indiana Arkansas 1966
#> 3235 Virginia Missouri 1966
#> 3236 Alabama Massachusetts 1966
#> 3237 North Dakota South Dakota 1966
#> 3238 Georgia Louisiana 1966
#> 3239 New Jersey Florida 1966
#> 3240 California Utah 1966
#> 3241 Tennessee South Carolina 1966
#> 3242 Illinois Wisconsin 1966
#> 3243 Mississippi New Mexico 1966
#> 3244 Oregon Michigan 1966
#> 3245 Tennessee Alabama 1966
#> 3246 Virginia Delaware 1966
#> 3247 Washington Texas 1966
#> 3248 North Dakota Idaho 1966
#> 3249 Maryland Oklahoma 1966
#> 3250 Kentucky Washington 1966
#> 3251 Nebraska California 1966
#> 3252 Idaho New York 1966
#> 3253 Maryland New Jersey 1966
#> 3254 Maryland Arkansas 1966
#> 3255 Pennsylvania Wisconsin 1966
#> 3256 Idaho Georgia 1966
#> 3257 Louisiana Pennsylvania 1966
#> 3258 Washington North Dakota 1966
#> 3259 Arkansas New Hampshire 1966
#> 3260 Kentucky Utah 1966
#> 3261 New Jersey Connecticut 1966
#> 3262 Illinois Minnesota 1966
#> 3263 Arkansas Colorado 1966
#> 3264 Delaware Arkansas 1966
#> 3265 Washington Pennsylvania 1966
#> 3266 Rhode Island South Dakota 1966
#> 3267 Pennsylvania Alabama 1966
#> 3268 Missouri Kansas 1966
#> 3269 Washington California 1966
#> 3270 Wisconsin California 1966
#> 3271 Alabama Virginia 1966
#> 3272 Illinois Missouri 1966
#> 3273 Connecticut Minnesota 1966
#> 3274 Michigan Hawaii 1966
#> 3275 Alabama Arizona 1966
#> 3276 Oregon New Mexico 1966
#> 3277 South Carolina Connecticut 1966
#> 3278 South Carolina Michigan 1966
#> 3279 Connecticut Idaho 1966
#> 3280 Illinois New York 1966
#> 3281 Ohio West Virginia 1966
#> 3282 Pennsylvania New Jersey 1966
#> 3283 Alaska Oregon 1966
#> 3284 Illinois New Jersey 1966
#> 3285 Oregon Connecticut 1966
#> 3286 Utah Wisconsin 1966
#> 3287 Oklahoma Colorado 1966
#> 3288 Virginia Kansas 1966
#> 3289 Kentucky Illinois 1966
#> 3290 Mississippi Kentucky 1966
#> 3291 North Dakota Iowa 1966
#> 3292 Alaska Iowa 1966
#> 3293 California Ohio 1966
#> 3294 Wyoming Vermont 1966
#> 3295 Vermont Oregon 1966
#> 3296 North Dakota Louisiana 1966
#> 3297 Idaho Michigan 1966
#> 3298 Michigan South Carolina 1966
#> 3299 South Carolina Idaho 1966
#> 3300 Wyoming Arizona 1966
#> 3301 Ohio North Carolina 1966
#> 3302 Nebraska Ohio 1966
#> 3303 Arkansas Mississippi 1966
#> 3304 Ohio Montana 1966
#> 3305 New York Kansas 1966
#> 3306 Ohio Kentucky 1966
#> 3307 California Indiana 1966
#> 3308 Wyoming Indiana 1966
#> 3309 Tennessee Georgia 1966
#> 3310 Pennsylvania Rhode Island 1966
#> 3311 Arkansas Oregon 1966
#> 3312 Massachusetts New Hampshire 1966
#> 3313 Rhode Island Connecticut 1966
#> 3314 California Tennessee 1966
#> 3315 Rhode Island Georgia 1966
#> 3316 Virginia Wyoming 1966
#> 3317 Oregon Delaware 1966
#> 3318 Arizona Arkansas 1966
#> 3319 Oregon Alaska 1966
#> 3320 Pennsylvania Nevada 1966
#> 3321 Georgia Utah 1966
#> 3322 Iowa Georgia 1966
#> 3323 Delaware Wyoming 1966
#> 3324 New Jersey Rhode Island 1966
#> 3325 Ohio Oklahoma 1966
#> 3326 North Carolina Florida 1966
#> 3327 Maryland Virginia 1966
#> 3328 West Virginia Maryland 1966
#> 3329 Minnesota Oregon 1966
#> 3330 Virginia Connecticut 1966
#> 3331 Pennsylvania Michigan 1966
#> 3332 Delaware Texas 1966
#> 3333 Delaware Idaho 1966
#> 3334 Wisconsin Vermont 1966
#> 3335 Nebraska Minnesota 1966
#> 3336 Arkansas Florida 1966
#> 3337 Wisconsin Kansas 1966
#> 3338 Colorado Massachusetts 1966
#> 3339 Kentucky Vermont 1966
#> 3340 Kansas Alaska 1966
#> 3341 Arizona Missouri 1966
#> 3342 Mississippi Idaho 1966
#> 3343 Georgia South Carolina 1966
#> 3344 Alabama North Carolina 1966
#> 3345 South Carolina Illinois 1966
#> 3346 Kentucky Tennessee 1966
#> 3347 Illinois Maine 1966
#> 3348 Iowa Montana 1966
#> 3349 Delaware Illinois 1966
#> 3350 Mississippi California 1966
#> 3351 Maine Idaho 1966
#> 3352 Vermont Alabama 1966
#> 3353 Maine Nebraska 1966
#> 3354 Pennsylvania Maine 1966
#> 3355 North Dakota Wyoming 1966
#> 3356 Arkansas Rhode Island 1966
#> 3357 Nebraska Maine 1966
#> 3358 South Carolina Nevada 1966
#> 3359 Louisiana Illinois 1966
#> 3360 Virginia Florida 1966
#> 3361 New Jersey Pennsylvania 1966
#> 3362 Virginia Pennsylvania 1966
#> 3363 Tennessee North Carolina 1966
#> 3364 West Virginia Missouri 1966
#> 3365 Illinois Louisiana 1966
#> 3366 Wyoming New Mexico 1966
#> 3367 Mississippi Kansas 1966
#> 3368 Oregon Wisconsin 1966
#> 3369 California Vermont 1966
#> 3370 California Iowa 1966
#> 3371 Indiana Illinois 1966
#> 3372 Nevada Oklahoma 1966
#> 3373 New Mexico Oklahoma 1966
#> 3374 Georgia Mississippi 1966
#> 3375 New York Florida 1966
#> 3376 Virginia Utah 1966
#> 3377 Kentucky Nebraska 1966
#> 3378 South Dakota Michigan 1966
#> 3379 South Carolina New Hampshire 1966
#> 3380 Delaware New Hampshire 1966
#> 3381 Arizona Mississippi 1966
#> 3382 Delaware California 1966
#> 3383 Louisiana Utah 1966
#> 3384 Michigan Arizona 1966
#> 3385 Minnesota Tennessee 1966
#> 3386 Iowa South Carolina 1966
#> 3387 Minnesota Massachusetts 1966
#> 3388 Arizona Alabama 1966
#> 3389 Virginia New York 1966
#> 3390 Louisiana New Mexico 1966
#> 3391 Vermont Hawaii 1966
#> 3392 South Dakota Delaware 1966
#> 3393 Minnesota Delaware 1966
#> 3394 California Alaska 1966
#> 3395 Rhode Island Kentucky 1966
#> 3396 Delaware Montana 1966
#> 3397 North Carolina South Dakota 1966
#> 3398 Virginia Tennessee 1966
#> 3399 North Carolina Pennsylvania 1966
#> 3400 Pennsylvania Massachusetts 1966
#> 3401 Minnesota Indiana 1966
#> 3402 Virginia North Dakota 1966
#> 3403 Mississippi Delaware 1966
#> 3404 Nebraska Illinois 1966
#> 3405 Massachusetts Illinois 1966
#> 3406 Oregon Washington 1966
#> 3407 Vermont California 1966
#> 3408 Minnesota Virginia 1966
#> 3409 New York Texas 1966
#> 3410 Louisiana Massachusetts 1966
#> 3411 Nevada Louisiana 1966
#> 3412 South Dakota Wisconsin 1966
#> 3413 Indiana Oregon 1966
#> 3414 Alabama North Dakota 1966
#> 3415 New York Delaware 1966
#> 3416 Oregon California 1966
#> 3417 Kansas Nebraska 1966
#> 3418 North Dakota Nebraska 1966
#> 3419 Florida Georgia 1966
#> 3420 North Dakota Arkansas 1966
#> 3421 Utah Tennessee 1966
#> 3422 North Dakota Indiana 1966
#> 3423 North Dakota Alabama 1966
#> 3424 Delaware New Mexico 1966
#> 3425 Nebraska Montana 1966
#> 3426 Kansas Illinois 1966
#> 3427 Idaho California 1966
#> 3428 Massachusetts Virginia 1966
#> 3429 Minnesota Utah 1966
#> 3430 Iowa Utah 1966
#> 3431 Iowa South Dakota 1966
#> 3432 Missouri Idaho 1966
#> 3433 New York Idaho 1966
#> 3434 Vermont Connecticut 1966
#> 3435 Iowa Arkansas 1966
#> 3436 Massachusetts Tennessee 1966
#> 3437 South Carolina Missouri 1966
#> 3438 Alaska Massachusetts 1966
#> 3439 Wisconsin Alabama 1966
#> 3440 New Mexico Alabama 1966
#> 3441 Nebraska Wisconsin 1966
#> 3442 Nebraska New York 1966
#> 3443 Kansas New York 1966
#> 3444 Minnesota New York 1966
#> 3445 North Dakota Minnesota 1966
#> 3446 Florida Maine 1966
#> 3447 South Dakota Hawaii 1966
#> 3448 Wisconsin Hawaii 1966
#> 3449 Hawaii Delaware 1966
#> 3450 Utah Alaska 1966
#> 3451 Nebraska Alaska 1966
#> 3452 Texas Massachusetts 1966
#> 3453 Oregon Wyoming 1966
#> 3454 Minnesota Colorado 1966
#> 3455 Texas Oklahoma 1966
#> 3456 Washington New York 1966
#> 3457 Arizona West Virginia 1966
#> 3458 Nevada Utah 1966
#> 3459 Utah Georgia 1966
#> 3460 Indiana Nevada 1966
#> 3461 Maryland Pennsylvania 1966
#> 3462 Georgia Montana 1966
#> 3463 Vermont Kentucky 1966
#> 3464 Pennsylvania Kentucky 1966
#> 3465 New Jersey Colorado 1966
#> 3466 Kentucky Maryland 1966
#> 3467 Minnesota New Hampshire 1966
#> 3468 Wisconsin New Jersey 1966
#> 3469 North Carolina Illinois 1966
#> 3470 Vermont Mississippi 1966
#> 3471 Georgia Idaho 1966
#> 3472 Pennsylvania Connecticut 1966
#> 3473 Michigan North Carolina 1966
#> 3474 Kentucky Ohio 1966
#> 3475 Maine Iowa 1966
#> 3476 Michigan Montana 1966
#> 3477 South Carolina Utah 1966
#> 3478 Illinois Ohio 1966
#> 3479 Pennsylvania Arkansas 1966
#> 3480 South Carolina Tennessee 1966
#> 3481 New Hampshire Vermont 1966
#> 3482 New Hampshire Wyoming 1966
#> 3483 Montana Michigan 1966
#> 3484 Michigan Maryland 1966
#> 3485 Kentucky West Virginia 1966
#> 3486 Tennessee Hawaii 1966
#> 3487 Maine Nevada 1966
#> 3488 Mississippi South Dakota 1966
#> 3489 Maine South Dakota 1966
#> 3490 New Jersey Louisiana 1966
#> 3491 South Carolina Washington 1966
#> 3492 Vermont South Carolina 1966
#> 3493 Wyoming North Carolina 1966
#> 3494 Michigan Indiana 1966
#> 3495 Pennsylvania Minnesota 1966
#> 3496 Washington Oklahoma 1966
#> 3497 Rhode Island Oklahoma 1966
#> 3498 New Mexico Colorado 1966
#> 3499 Pennsylvania California 1966
#> 3500 Idaho Arkansas 1966
#> 3501 New York Pennsylvania 1967
#> 3502 New York Michigan 1967
#> 3503 New York New Hampshire 1967
#> 3504 New York Connecticut 1967
#> 3505 New York Oregon 1967
#> 3506 Oregon Kentucky 1967
#> 3507 New York North Carolina 1967
#> 3508 New York Maine 1967
#> 3509 Florida Mississippi 1967
#> 3510 New York Rhode Island 1967
#> 3511 New York California 1967
#> 3512 New York Maryland 1967
#> 3513 New York Indiana 1967
#> 3514 New York Illinois 1967
#> 3515 New York Nebraska 1967
#> 3516 New York Massachusetts 1967
#> 3517 Michigan Delaware 1967
#> 3518 Illinois Florida 1967
#> 3519 New York Colorado 1967
#> 3520 New York Ohio 1967
#> 3521 New York Arkansas 1967
#> 3522 New York Washington 1967
#> 3523 New York West Virginia 1967
#> 3524 Connecticut New Jersey 1967
#> 3525 New Jersey Minnesota 1967
#> 3526 Colorado Georgia 1967
#> 3527 New Jersey South Carolina 1967
#> 3528 Washington Missouri 1967
#> 3529 Washington Kansas 1967
#> 3530 Ohio Texas 1967
#> 3531 Washington Wyoming 1967
#> 3532 New York Oklahoma 1967
#> 3533 California Nevada 1967
#> 3534 New York Idaho 1967
#> 3535 New York New Mexico 1967
#> 3536 New York Tennessee 1967
#> 3537 Virginia Alabama 1967
#> 3538 Oregon South Dakota 1967
#> 3539 Michigan Iowa 1967
#> 3540 Indiana Louisiana 1967
#> 3541 Oregon Arizona 1967
#> 3542 North Carolina Virginia 1967
#> 3543 Connecticut Vermont 1967
#> 3544 New York Montana 1967
#> 3545 New York Wisconsin 1967
#> 3546 New Jersey New York 1967
#> 3547 Delaware North Dakota 1967
#> 3548 New York Utah 1967
#> 3549 New Mexico North Carolina 1967
#> 3550 Virginia Florida 1967
#> 3551 Alabama Arkansas 1967
#> 3552 Arizona Indiana 1967
#> 3553 Alabama New Mexico 1967
#> 3554 Colorado Rhode Island 1967
#> 3555 Connecticut Kentucky 1967
#> 3556 Oregon Louisiana 1967
#> 3557 Connecticut New Hampshire 1967
#> 3558 North Dakota Idaho 1967
#> 3559 California Michigan 1967
#> 3560 Colorado Pennsylvania 1967
#> 3561 Montana Maine 1967
#> 3562 New York New Jersey 1967
#> 3563 New York Virginia 1967
#> 3564 New Mexico West Virginia 1967
#> 3565 Montana Maryland 1967
#> 3566 Louisiana Montana 1967
#> 3567 Mississippi Arizona 1967
#> 3568 New Mexico Colorado 1967
#> 3569 Connecticut New York 1967
#> 3570 Rhode Island Delaware 1967
#> 3571 New Mexico Tennessee 1967
#> 3572 Oregon Vermont 1967
#> 3573 Connecticut Alaska 1967
#> 3574 Idaho Alabama 1967
#> 3575 Idaho Oklahoma 1967
#> 3576 Idaho Iowa 1967
#> 3577 New Mexico Connecticut 1967
#> 3578 North Carolina South Carolina 1967
#> 3579 Oregon Nebraska 1967
#> 3580 South Dakota Mississippi 1967
#> 3581 New Mexico Nevada 1967
#> 3582 Colorado Ohio 1967
#> 3583 Louisiana Kansas 1967
#> 3584 Michigan Illinois 1967
#> 3585 Tennessee Missouri 1967
#> 3586 Mississippi Texas 1967
#> 3587 California Oregon 1967
#> 3588 Alabama Utah 1967
#> 3589 Virginia Wyoming 1967
#> 3590 Illinois Massachusetts 1967
#> 3591 Illinois Georgia 1967
#> 3592 Michigan North Dakota 1967
#> 3593 Mississippi Washington 1967
#> 3594 Washington Wisconsin 1967
#> 3595 Connecticut Rhode Island 1967
#> 3596 Michigan New York 1967
#> 3597 Idaho Minnesota 1967
#> 3598 North Dakota South Dakota 1967
#> 3599 California Hawaii 1967
#> 3600 New Mexico Delaware 1967
#> 3601 New York Arizona 1967
#> 3602 Alabama Florida 1967
#> 3603 Arkansas Virginia 1967
#> 3604 California New Jersey 1967
#> 3605 North Carolina California 1967
#> 3606 Delaware North Carolina 1967
#> 3607 Delaware Louisiana 1967
#> 3608 Utah North Dakota 1967
#> 3609 Illinois Alabama 1967
#> 3610 Kentucky Arkansas 1967
#> 3611 Kentucky Montana 1967
#> 3612 California Pennsylvania 1967
#> 3613 Ohio Indiana 1967
#> 3614 Mississippi Oklahoma 1967
#> 3615 West Virginia Texas 1967
#> 3616 Wisconsin Colorado 1967
#> 3617 Kentucky New Mexico 1967
#> 3618 Kansas Kentucky 1967
#> 3619 Kentucky Tennessee 1967
#> 3620 Illinois South Carolina 1967
#> 3621 Rhode Island Maryland 1967
#> 3622 Washington Illinois 1967
#> 3623 Idaho Kansas 1967
#> 3624 Illinois Washington 1967
#> 3625 Delaware Connecticut 1967
#> 3626 New Jersey Vermont 1967
#> 3627 Kentucky Maine 1967
#> 3628 Oregon West Virginia 1967
#> 3629 Virginia Michigan 1967
#> 3630 Rhode Island Minnesota 1967
#> 3631 North Carolina Georgia 1967
#> 3632 Illinois Iowa 1967
#> 3633 Florida Wyoming 1967
#> 3634 Rhode Island South Dakota 1967
#> 3635 New Jersey Ohio 1967
#> 3636 South Dakota Arizona 1967
#> 3637 Wisconsin Utah 1967
#> 3638 Illinois Rhode Island 1967
#> 3639 Maryland Utah 1967
#> 3640 Arkansas North Carolina 1967
#> 3641 South Dakota Louisiana 1967
#> 3642 Minnesota Missouri 1967
#> 3643 Wyoming Oregon 1967
#> 3644 Illinois New Hampshire 1967
#> 3645 California New York 1967
#> 3646 California Massachusetts 1967
#> 3647 New York Nevada 1967
#> 3648 Minnesota New Jersey 1967
#> 3649 Maryland Kentucky 1967
#> 3650 Maine Wyoming 1967
#> 3651 Kentucky Colorado 1967
#> 3652 Delaware Nebraska 1967
#> 3653 Florida South Dakota 1967
#> 3654 Georgia Tennessee 1967
#> 3655 Oregon Alabama 1967
#> 3656 South Carolina Arkansas 1967
#> 3657 Connecticut Massachusetts 1967
#> 3658 Alabama California 1967
#> 3659 California Arizona 1967
#> 3660 Pennsylvania New York 1967
#> 3661 Nevada Mississippi 1967
#> 3662 Kentucky Florida 1967
#> 3663 Idaho Virginia 1967
#> 3664 Florida New Mexico 1967
#> 3665 Maine North Dakota 1967
#> 3666 Oregon Idaho 1967
#> 3667 California Rhode Island 1967
#> 3668 Tennessee Pennsylvania 1967
#> 3669 Wyoming Maryland 1967
#> 3670 Oregon North Carolina 1967
#> 3671 Rhode Island Hawaii 1967
#> 3672 Maine New Hampshire 1967
#> 3673 California Illinois 1967
#> 3674 Louisiana Wisconsin 1967
#> 3675 Wisconsin California 1967
#> 3676 Nevada Montana 1967
#> 3677 Arkansas Iowa 1967
#> 3678 South Dakota Georgia 1967
#> 3679 Kentucky Idaho 1967
#> 3680 Wisconsin Oregon 1967
#> 3681 Massachusetts Washington 1967
#> 3682 New Mexico Rhode Island 1967
#> 3683 Maryland Oklahoma 1967
#> 3684 Illinois Vermont 1967
#> 3685 Minnesota Washington 1967
#> 3686 New Jersey Indiana 1967
#> 3687 Arkansas South Carolina 1967
#> 3688 Washington Texas 1967
#> 3689 Mississippi West Virginia 1967
#> 3690 Michigan Minnesota 1967
#> 3691 Arkansas Nebraska 1967
#> 3692 Florida Tennessee 1967
#> 3693 South Dakota Ohio 1967
#> 3694 Florida Nevada 1967
#> 3695 Missouri Mississippi 1967
#> 3696 Alabama Massachusetts 1967
#> 3697 Montana Washington 1967
#> 3698 Minnesota Alaska 1967
#> 3699 Minnesota California 1967
#> 3700 Oregon New York 1967
#> 3701 Florida Michigan 1967
#> 3702 Maine Colorado 1967
#> 3703 Arizona North Dakota 1967
#> 3704 Arkansas Connecticut 1967
#> 3705 Washington Arizona 1967
#> 3706 Pennsylvania Illinois 1967
#> 3707 Minnesota Kansas 1967
#> 3708 Oklahoma Kentucky 1967
#> 3709 Kentucky Alabama 1967
#> 3710 South Carolina Idaho 1967
#> 3711 Florida Texas 1967
#> 3712 Arkansas Delaware 1967
#> 3713 Arkansas Florida 1967
#> 3714 Wyoming Vermont 1967
#> 3715 Kentucky North Carolina 1967
#> 3716 Oklahoma Arkansas 1967
#> 3717 Utah New Mexico 1967
#> 3718 Missouri Nebraska 1967
#> 3719 New Mexico Mississippi 1967
#> 3720 California Wisconsin 1967
#> 3721 Iowa Louisiana 1967
#> 3722 Wyoming Maine 1967
#> 3723 Maryland New Jersey 1967
#> 3724 Alabama Maryland 1967
#> 3725 Michigan South Carolina 1967
#> 3726 Maryland Virginia 1967
#> 3727 Minnesota Maine 1967
#> 3728 New Jersey Oregon 1967
#> 3729 Texas Indiana 1967
#> 3730 Pennsylvania Michigan 1967
#> 3731 Indiana Arkansas 1967
#> 3732 Maryland Massachusetts 1967
#> 3733 Arkansas New Hampshire 1967
#> 3734 California Utah 1967
#> 3735 Wisconsin Idaho 1967
#> 3736 Illinois Wisconsin 1967
#> 3737 Kentucky Washington 1967
#> 3738 Tennessee Alabama 1967
#> 3739 Arkansas Rhode Island 1967
#> 3740 Kansas New York 1967
#> 3741 Vermont Delaware 1967
#> 3742 New Jersey Connecticut 1967
#> 3743 New Mexico Louisiana 1967
#> 3744 Kentucky South Dakota 1967
#> 3745 Illinois Missouri 1967
#> 3746 Ohio Kentucky 1967
#> 3747 Vermont Idaho 1967
#> 3748 Tennessee South Carolina 1967
#> 3749 Vermont New York 1967
#> 3750 Pennsylvania Alabama 1967
#> 3751 Pennsylvania Wisconsin 1967
#> 3752 Idaho Georgia 1967
#> 3753 Delaware Arkansas 1967
#> 3754 Louisiana Pennsylvania 1967
#> 3755 Washington North Dakota 1967
#> 3756 Nebraska California 1967
#> 3757 Illinois Minnesota 1967
#> 3758 Illinois Michigan 1967
#> 3759 Alabama Virginia 1967
#> 3760 Washington Pennsylvania 1967
#> 3761 Wisconsin Connecticut 1967
#> 3762 New Mexico South Carolina 1967
#> 3763 Missouri Kansas 1967
#> 3764 Washington New Hampshire 1967
#> 3765 Washington California 1967
#> 3766 Washington New Mexico 1967
#> 3767 Connecticut Minnesota 1967
#> 3768 Michigan Hawaii 1967
#> 3769 Kentucky Illinois 1967
#> 3770 Alabama Arizona 1967
#> 3771 Minnesota New York 1967
#> 3772 Oregon New Mexico 1967
#> 3773 Ohio West Virginia 1967
#> 3774 Pennsylvania New Jersey 1967
#> 3775 Oregon Montana 1967
#> 3776 Alaska Oregon 1967
#> 3777 Illinois New Jersey 1967
#> 3778 Oregon Connecticut 1967
#> 3779 Utah Wisconsin 1967
#> 3780 Illinois Indiana 1967
#> 3781 Virginia Kansas 1967
#> 3782 New York Wyoming 1967
#> 3783 Maryland Washington 1967
#> 3784 Arkansas Oklahoma 1967
#> 3785 North Dakota Iowa 1967
#> 3786 Alaska Iowa 1967
#> 3787 California Ohio 1967
#> 3788 North Dakota Louisiana 1967
#> 3789 Mississippi Nevada 1967
#> 3790 Virginia Colorado 1967
#> 3791 Georgia South Carolina 1967
#> 3792 West Virginia Maryland 1967
#> 3793 Wyoming Arizona 1967
#> 3794 Nebraska Ohio 1967
#> 3795 Mississippi Nebraska 1967
#> 3796 Arkansas Mississippi 1967
#> 3797 New York Kansas 1967
#> 3798 California Tennessee 1967
#> 3799 Tennessee Georgia 1967
#> 3800 Mississippi Wyoming 1967
#> 3801 Illinois Delaware 1967
#> 3802 Pennsylvania Rhode Island 1967
#> 3803 Minnesota Oregon 1967
#> 3804 Vermont Michigan 1967
#> 3805 Ohio Illinois 1967
#> 3806 Montana Idaho 1967
#> 3807 Oregon Wyoming 1967
#> 3808 Arkansas Oregon 1967
#> 3809 Rhode Island Georgia 1967
#> 3810 West Virginia Missouri 1967
#> 3811 South Carolina Kentucky 1967
#> 3812 Virginia Connecticut 1967
#> 3813 Arizona Arkansas 1967
#> 3814 Oregon Alaska 1967
#> 3815 Pennsylvania Nevada 1967
#> 3816 Illinois Oklahoma 1967
#> 3817 North Carolina Florida 1967
#> 3818 Georgia Utah 1967
#> 3819 Iowa Georgia 1967
#> 3820 Wisconsin Vermont 1967
#> 3821 Delaware Texas 1967
#> 3822 Utah Idaho 1967
#> 3823 South Carolina Missouri 1967
#> 3824 Pennsylvania Massachusetts 1967
#> 3825 New Jersey Rhode Island 1967
#> 3826 Delaware Wyoming 1967
#> 3827 Nevada Louisiana 1967
#> 3828 Oregon Indiana 1967
#> 3829 Nebraska Minnesota 1967
#> 3830 Maryland Maine 1967
#> 3831 Wisconsin Kansas 1967
#> 3832 Kentucky Vermont 1967
#> 3833 Mississippi New Mexico 1967
#> 3834 Kansas Alaska 1967
#> 3835 Mississippi Idaho 1967
#> 3836 Maryland New Mexico 1967
#> 3837 New Jersey Florida 1967
#> 3838 Illinois Colorado 1967
#> 3839 Nebraska Colorado 1967
#> 3840 Missouri North Carolina 1967
#> 3841 Vermont Montana 1967
#> 3842 Louisiana Tennessee 1967
#> 3843 Colorado Massachusetts 1967
#> 3844 Mississippi California 1967
#> 3845 Iowa South Dakota 1967
#> 3846 Iowa South Carolina 1967
#> 3847 Alabama North Carolina 1967
#> 3848 Wisconsin Massachusetts 1967
#> 3849 Wisconsin Michigan 1967
#> 3850 Illinois Maine 1967
#> 3851 Pennsylvania Delaware 1967
#> 3852 Maine Nebraska 1967
#> 3853 Illinois Louisiana 1967
#> 3854 Arizona Missouri 1967
#> 3855 Delaware Illinois 1967
#> 3856 Vermont Georgia 1967
#> 3857 North Dakota Wyoming 1967
#> 3858 Alabama Kentucky 1967
#> 3859 Pennsylvania Maine 1967
#> 3860 Wisconsin Delaware 1967
#> 3861 South Carolina Nevada 1967
#> 3862 Louisiana Illinois 1967
#> 3863 Nevada Oklahoma 1967
#> 3864 New Jersey Pennsylvania 1967
#> 3865 Virginia Pennsylvania 1967
#> 3866 Virginia Utah 1967
#> 3867 Delaware Idaho 1967
#> 3868 Arkansas Alabama 1967
#> 3869 Oregon Wisconsin 1967
#> 3870 Florida Maine 1967
#> 3871 California Iowa 1967
#> 3872 New Mexico Oklahoma 1967
#> 3873 New York Florida 1967
#> 3874 Oklahoma Colorado 1967
#> 3875 Kentucky Utah 1967
#> 3876 South Carolina Tennessee 1967
#> 3877 Minnesota Massachusetts 1967
#> 3878 South Carolina New Hampshire 1967
#> 3879 Delaware New Hampshire 1967
#> 3880 Arizona Mississippi 1967
#> 3881 Delaware California 1967
#> 3882 New Jersey Virginia 1967
#> 3883 South Dakota Virginia 1967
#> 3884 Louisiana Utah 1967
#> 3885 North Carolina South Dakota 1967
#> 3886 Kentucky Nebraska 1967
#> 3887 Michigan Arizona 1967
#> 3888 California South Carolina 1967
#> 3889 Vermont Alabama 1967
#> 3890 California Vermont 1967
#> 3891 Virginia New York 1967
#> 3892 Wisconsin New York 1967
#> 3893 Delaware New Mexico 1967
#> 3894 South Dakota Michigan 1967
#> 3895 Vermont Hawaii 1967
#> 3896 California Alaska 1967
#> 3897 Iowa Montana 1967
#> 3898 South Carolina Illinois 1967
#> 3899 New York Texas 1967
#> 3900 Minnesota Tennessee 1967
#> 3901 North Carolina Pennsylvania 1967
#> 3902 Colorado Vermont 1967
#> 3903 Virginia North Dakota 1967
#> 3904 Massachusetts New York 1967
#> 3905 Delaware Montana 1967
#> 3906 Nebraska Illinois 1967
#> 3907 Oregon Washington 1967
#> 3908 Minnesota Virginia 1967
#> 3909 South Carolina Connecticut 1967
#> 3910 Virginia Tennessee 1967
#> 3911 Maryland South Carolina 1967
#> 3912 Minnesota Indiana 1967
#> 3913 South Dakota Wisconsin 1967
#> 3914 Nebraska Wisconsin 1967
#> 3915 Alabama North Dakota 1967
#> 3916 Delaware New York 1967
#> 3917 South Carolina Michigan 1967
#> 3918 New York Delaware 1967
#> 3919 Oregon California 1967
#> 3920 North Dakota Nebraska 1967
#> 3921 North Dakota Arkansas 1967
#> 3922 Utah Tennessee 1967
#> 3923 Louisiana Massachusetts 1967
#> 3924 North Dakota Indiana 1967
#> 3925 North Dakota Alabama 1967
#> 3926 New York Vermont 1967
#> 3927 Hawaii New Jersey 1967
#> 3928 Nebraska Montana 1967
#> 3929 Kansas Illinois 1967
#> 3930 Idaho California 1967
#> 3931 Massachusetts Virginia 1967
#> 3932 Minnesota Utah 1967
#> 3933 Iowa Utah 1967
#> 3934 Missouri Idaho 1967
#> 3935 Vermont Connecticut 1967
#> 3936 Iowa Arkansas 1967
#> 3937 Massachusetts Tennessee 1967
#> 3938 Alaska Massachusetts 1967
#> 3939 Arizona Alabama 1967
#> 3940 Wisconsin Alabama 1967
#> 3941 New Mexico Alabama 1967
#> 3942 Illinois New York 1967
#> 3943 Nebraska New York 1967
#> 3944 Louisiana New Mexico 1967
#> 3945 North Dakota Minnesota 1967
#> 3946 South Dakota Hawaii 1967
#> 3947 Wisconsin Hawaii 1967
#> 3948 Hawaii Delaware 1967
#> 3949 Utah Alaska 1967
#> 3950 Nebraska Alaska 1967
#> 3951 Michigan Indiana 1967
#> 3952 Texas Massachusetts 1967
#> 3953 Texas Maryland 1967
#> 3954 Rhode Island Connecticut 1967
#> 3955 Rhode Island Kentucky 1967
#> 3956 West Virginia Georgia 1967
#> 3957 Indiana West Virginia 1967
#> 3958 Washington New York 1967
#> 3959 Texas Missouri 1967
#> 3960 Vermont Oregon 1967
#> 3961 Colorado New Hampshire 1967
#> 3962 Minnesota Colorado 1967
#> 3963 Connecticut North Carolina 1967
#> 3964 Nevada Utah 1967
#> 3965 Indiana Nevada 1967
#> 3966 Maryland Pennsylvania 1967
#> 3967 Illinois Wyoming 1967
#> 3968 Vermont Kentucky 1967
#> 3969 Wisconsin New Jersey 1967
#> 3970 North Carolina Illinois 1967
#> 3971 Vermont Mississippi 1967
#> 3972 Pennsylvania Arkansas 1967
#> 3973 Wyoming North Carolina 1967
#> 3974 Missouri West Virginia 1967
#> 3975 Kentucky Ohio 1967
#> 3976 California Maryland 1967
#> 3977 Maine Iowa 1967
#> 3978 Georgia Montana 1967
#> 3979 South Carolina Utah 1967
#> 3980 Maine South Dakota 1967
#> 3981 Illinois Ohio 1967
#> 3982 Michigan North Carolina 1967
#> 3983 Arkansas Vermont 1967
#> 3984 Arizona Oklahoma 1967
#> 3985 Alaska Nebraska 1967
#> 3986 Nebraska Maine 1967
#> 3987 Tennessee Hawaii 1967
#> 3988 Maine Nevada 1967
#> 3989 Pennsylvania California 1967
#> 3990 Mississippi South Dakota 1967
#> 3991 North Carolina Maryland 1967
#> 3992 Mississippi South Carolina 1967
#> 3993 South Carolina Washington 1967
#> 3994 Mississippi Indiana 1967
#> 3995 Pennsylvania Minnesota 1967
#> 3996 Montana Michigan 1967
#> 3997 Washington Oklahoma 1967
#> 3998 Pennsylvania Connecticut 1967
#> 3999 Idaho Arkansas 1967
#> 4000 Tennessee Arkansas 1967
#> 4001 New York Pennsylvania 1968
#> 4002 New York Connecticut 1968
#> 4003 New York Michigan 1968
#> 4004 New York New Hampshire 1968
#> 4005 New York Oregon 1968
#> 4006 New York North Carolina 1968
#> 4007 New York Indiana 1968
#> 4008 New York Maine 1968
#> 4009 New York Rhode Island 1968
#> 4010 New York Nebraska 1968
#> 4011 New York Illinois 1968
#> 4012 Oregon Kentucky 1968
#> 4013 New York California 1968
#> 4014 Florida Mississippi 1968
#> 4015 New York Maryland 1968
#> 4016 New York Massachusetts 1968
#> 4017 New York Colorado 1968
#> 4018 New York Ohio 1968
#> 4019 New York Florida 1968
#> 4020 New York West Virginia 1968
#> 4021 New York Washington 1968
#> 4022 New Jersey Minnesota 1968
#> 4023 Washington Kansas 1968
#> 4024 Michigan Delaware 1968
#> 4025 New York Arkansas 1968
#> 4026 Washington Missouri 1968
#> 4027 New York Oklahoma 1968
#> 4028 Washington Wyoming 1968
#> 4029 Colorado Georgia 1968
#> 4030 Ohio Texas 1968
#> 4031 Connecticut New Jersey 1968
#> 4032 New Jersey South Carolina 1968
#> 4033 New York Vermont 1968
#> 4034 New York Idaho 1968
#> 4035 New York New Mexico 1968
#> 4036 New York Tennessee 1968
#> 4037 New York Nevada 1968
#> 4038 New Jersey Iowa 1968
#> 4039 Virginia Alabama 1968
#> 4040 Indiana Louisiana 1968
#> 4041 New York Montana 1968
#> 4042 North Carolina Virginia 1968
#> 4043 Oregon South Dakota 1968
#> 4044 Oregon Arizona 1968
#> 4045 New York Wisconsin 1968
#> 4046 Delaware North Dakota 1968
#> 4047 New Jersey New York 1968
#> 4048 New York Utah 1968
#> 4049 Alabama Florida 1968
#> 4050 Alabama Arkansas 1968
#> 4051 Arizona Indiana 1968
#> 4052 Alabama New Mexico 1968
#> 4053 New Mexico Rhode Island 1968
#> 4054 Alabama North Carolina 1968
#> 4055 Connecticut Kentucky 1968
#> 4056 Colorado Pennsylvania 1968
#> 4057 New Mexico Nevada 1968
#> 4058 North Dakota Idaho 1968
#> 4059 New Mexico Louisiana 1968
#> 4060 Colorado Vermont 1968
#> 4061 Connecticut New Hampshire 1968
#> 4062 Maryland Tennessee 1968
#> 4063 New York New Jersey 1968
#> 4064 New York Virginia 1968
#> 4065 Idaho Iowa 1968
#> 4066 Washington Colorado 1968
#> 4067 Alabama Arizona 1968
#> 4068 Louisiana Montana 1968
#> 4069 Connecticut New York 1968
#> 4070 Rhode Island Delaware 1968
#> 4071 Connecticut Alaska 1968
#> 4072 Washington Illinois 1968
#> 4073 Rhode Island Maryland 1968
#> 4074 North Dakota South Carolina 1968
#> 4075 Arizona West Virginia 1968
#> 4076 Arkansas Alabama 1968
#> 4077 Rhode Island Connecticut 1968
#> 4078 New York Hawaii 1968
#> 4079 Idaho Oklahoma 1968
#> 4080 New York Wyoming 1968
#> 4081 Washington Maine 1968
#> 4082 Idaho Texas 1968
#> 4083 Colorado Ohio 1968
#> 4084 Louisiana Kansas 1968
#> 4085 Tennessee Missouri 1968
#> 4086 Oregon Nebraska 1968
#> 4087 California Michigan 1968
#> 4088 North Dakota Washington 1968
#> 4089 Rhode Island Minnesota 1968
#> 4090 Alabama Utah 1968
#> 4091 Washington Wisconsin 1968
#> 4092 North Dakota South Dakota 1968
#> 4093 Colorado North Carolina 1968
#> 4094 Arizona Mississippi 1968
#> 4095 Tennessee Louisiana 1968
#> 4096 Connecticut Rhode Island 1968
#> 4097 New Jersey Oregon 1968
#> 4098 Michigan New York 1968
#> 4099 Michigan North Dakota 1968
#> 4100 Illinois Massachusetts 1968
#> 4101 Illinois Florida 1968
#> 4102 Arizona Georgia 1968
#> 4103 Idaho Maryland 1968
#> 4104 Maryland California 1968
#> 4105 Kentucky Arkansas 1968
#> 4106 Kentucky Montana 1968
#> 4107 Illinois Indiana 1968
#> 4108 Mississippi Texas 1968
#> 4109 Georgia Oklahoma 1968
#> 4110 Rhode Island Arizona 1968
#> 4111 California New Jersey 1968
#> 4112 Kentucky New Mexico 1968
#> 4113 California Pennsylvania 1968
#> 4114 Washington Vermont 1968
#> 4115 Nebraska Alabama 1968
#> 4116 New Mexico Delaware 1968
#> 4117 Illinois Rhode Island 1968
#> 4118 California Kentucky 1968
#> 4119 Minnesota Illinois 1968
#> 4120 Mississippi Wyoming 1968
#> 4121 Georgia South Carolina 1968
#> 4122 Rhode Island Washington 1968
#> 4123 Kentucky Colorado 1968
#> 4124 Alabama Virginia 1968
#> 4125 Maryland Utah 1968
#> 4126 Alabama California 1968
#> 4127 Arkansas Kansas 1968
#> 4128 Nebraska Tennessee 1968
#> 4129 Kentucky Ohio 1968
#> 4130 Kentucky North Carolina 1968
#> 4131 Virginia Michigan 1968
#> 4132 New Mexico Oregon 1968
#> 4133 West Virginia Nevada 1968
#> 4134 Rhode Island South Dakota 1968
#> 4135 Kentucky Maine 1968
#> 4136 Idaho Minnesota 1968
#> 4137 Rhode Island Louisiana 1968
#> 4138 California Rhode Island 1968
#> 4139 Oregon New York 1968
#> 4140 Arkansas North Dakota 1968
#> 4141 Idaho Georgia 1968
#> 4142 Florida South Dakota 1968
#> 4143 Delaware Nebraska 1968
#> 4144 Michigan West Virginia 1968
#> 4145 South Carolina Connecticut 1968
#> 4146 Minnesota Missouri 1968
#> 4147 Illinois Idaho 1968
#> 4148 Virginia Connecticut 1968
#> 4149 Ohio Massachusetts 1968
#> 4150 Massachusetts New Hampshire 1968
#> 4151 California Hawaii 1968
#> 4152 New Mexico Mississippi 1968
#> 4153 Mississippi Arizona 1968
#> 4154 West Virginia Maryland 1968
#> 4155 Nebraska Iowa 1968
#> 4156 South Carolina Arkansas 1968
#> 4157 Kentucky Alabama 1968
#> 4158 Kentucky Oklahoma 1968
#> 4159 Vermont Montana 1968
#> 4160 Wisconsin Utah 1968
#> 4161 Pennsylvania New York 1968
#> 4162 Virginia Texas 1968
#> 4163 Florida New Mexico 1968
#> 4164 Virginia Florida 1968
#> 4165 Minnesota Iowa 1968
#> 4166 Rhode Island North Carolina 1968
#> 4167 Tennessee Pennsylvania 1968
#> 4168 Missouri Kentucky 1968
#> 4169 Michigan New Jersey 1968
#> 4170 Georgia Tennessee 1968
#> 4171 California Alaska 1968
#> 4172 Arkansas New Hampshire 1968
#> 4173 Virginia Colorado 1968
#> 4174 Louisiana Wisconsin 1968
#> 4175 Wyoming Maine 1968
#> 4176 California New York 1968
#> 4177 Arkansas Nebraska 1968
#> 4178 California South Carolina 1968
#> 4179 Arkansas Florida 1968
#> 4180 Arkansas Rhode Island 1968
#> 4181 California Washington 1968
#> 4182 Kentucky Idaho 1968
#> 4183 Vermont New Hampshire 1968
#> 4184 North Carolina Georgia 1968
#> 4185 North Dakota New Jersey 1968
#> 4186 Minnesota California 1968
#> 4187 California Illinois 1968
#> 4188 Nevada Mississippi 1968
#> 4189 Virginia Indiana 1968
#> 4190 Connecticut Massachusetts 1968
#> 4191 Massachusetts Minnesota 1968
#> 4192 Iowa Louisiana 1968
#> 4193 Illinois Arkansas 1968
#> 4194 Illinois Arizona 1968
#> 4195 Florida North Carolina 1968
#> 4196 New Mexico North Dakota 1968
#> 4197 Maine Wyoming 1968
#> 4198 South Dakota Nevada 1968
#> 4199 New York Kansas 1968
#> 4200 Maryland Massachusetts 1968
#> 4201 Wyoming Oregon 1968
#> 4202 Ohio Indiana 1968
#> 4203 Arkansas Missouri 1968
#> 4204 Nebraska Colorado 1968
#> 4205 Oregon Connecticut 1968
#> 4206 Washington Arizona 1968
#> 4207 North Dakota Iowa 1968
#> 4208 Arkansas Mississippi 1968
#> 4209 Maryland South Carolina 1968
#> 4210 New York Kentucky 1968
#> 4211 Missouri Nebraska 1968
#> 4212 Arkansas Delaware 1968
#> 4213 Montana Washington 1968
#> 4214 Idaho Michigan 1968
#> 4215 Maryland Virginia 1968
#> 4216 South Carolina Nevada 1968
#> 4217 Delaware Tennessee 1968
#> 4218 South Carolina Idaho 1968
#> 4219 Louisiana Illinois 1968
#> 4220 Oregon Vermont 1968
#> 4221 California Ohio 1968
#> 4222 Wisconsin Kansas 1968
#> 4223 Vermont Iowa 1968
#> 4224 Wisconsin Idaho 1968
#> 4225 Maryland Kentucky 1968
#> 4226 Florida Wyoming 1968
#> 4227 Washington Pennsylvania 1968
#> 4228 New Jersey Wisconsin 1968
#> 4229 Montana Maine 1968
#> 4230 Louisiana New Mexico 1968
#> 4231 Alabama Maryland 1968
#> 4232 Kentucky Florida 1968
#> 4233 Arizona North Dakota 1968
#> 4234 Indiana Arkansas 1968
#> 4235 Minnesota Tennessee 1968
#> 4236 Oregon Virginia 1968
#> 4237 California Utah 1968
#> 4238 Tennessee Alabama 1968
#> 4239 New Mexico South Carolina 1968
#> 4240 Illinois Wisconsin 1968
#> 4241 Kansas New York 1968
#> 4242 Wisconsin Hawaii 1968
#> 4243 Florida Massachusetts 1968
#> 4244 Arkansas California 1968
#> 4245 New Jersey Connecticut 1968
#> 4246 Hawaii Oregon 1968
#> 4247 Massachusetts Michigan 1968
#> 4248 Virginia Utah 1968
#> 4249 Kentucky South Dakota 1968
#> 4250 Illinois Minnesota 1968
#> 4251 Ohio Illinois 1968
#> 4252 Pennsylvania Ohio 1968
#> 4253 Vermont New York 1968
#> 4254 Maine Michigan 1968
#> 4255 Mississippi Montana 1968
#> 4256 Louisiana Pennsylvania 1968
#> 4257 Washington North Dakota 1968
#> 4258 Oregon New Mexico 1968
#> 4259 Illinois California 1968
#> 4260 Delaware Arkansas 1968
#> 4261 South Dakota Arizona 1968
#> 4262 Virginia West Virginia 1968
#> 4263 Maine North Dakota 1968
#> 4264 Maine Vermont 1968
#> 4265 Mississippi California 1968
#> 4266 Pennsylvania Rhode Island 1968
#> 4267 Iowa Georgia 1968
#> 4268 Massachusetts Illinois 1968
#> 4269 Missouri Mississippi 1968
#> 4270 Washington New Mexico 1968
#> 4271 Wisconsin Connecticut 1968
#> 4272 New Hampshire New York 1968
#> 4273 Minnesota Virginia 1968
#> 4274 Minnesota New York 1968
#> 4275 Illinois New Hampshire 1968
#> 4276 Pennsylvania Alabama 1968
#> 4277 South Carolina Michigan 1968
#> 4278 California West Virginia 1968
#> 4279 Iowa Utah 1968
#> 4280 North Dakota Minnesota 1968
#> 4281 Colorado Oklahoma 1968
#> 4282 Montana Idaho 1968
#> 4283 New Jersey Delaware 1968
#> 4284 Idaho North Carolina 1968
#> 4285 Alaska Iowa 1968
#> 4286 Pennsylvania Colorado 1968
#> 4287 Maryland Washington 1968
#> 4288 Illinois New Jersey 1968
#> 4289 Delaware Wyoming 1968
#> 4290 Alabama Louisiana 1968
#> 4291 Missouri Nevada 1968
#> 4292 Kentucky Texas 1968
#> 4293 Michigan South Carolina 1968
#> 4294 Rhode Island Hawaii 1968
#> 4295 Mississippi Nebraska 1968
#> 4296 Tennessee Georgia 1968
#> 4297 Missouri Kansas 1968
#> 4298 Oklahoma Arkansas 1968
#> 4299 Utah New Mexico 1968
#> 4300 Connecticut Maryland 1968
#> 4301 California Indiana 1968
#> 4302 South Carolina Illinois 1968
#> 4303 Minnesota Washington 1968
#> 4304 Michigan North Carolina 1968
#> 4305 Washington Indiana 1968
#> 4306 Illinois Delaware 1968
#> 4307 North Carolina Connecticut 1968
#> 4308 Minnesota Maine 1968
#> 4309 Utah Georgia 1968
#> 4310 West Virginia Kentucky 1968
#> 4311 South Carolina Kentucky 1968
#> 4312 Idaho Oregon 1968
#> 4313 Wisconsin New Jersey 1968
#> 4314 West Virginia Missouri 1968
#> 4315 Louisiana Alaska 1968
#> 4316 Massachusetts Washington 1968
#> 4317 Illinois Colorado 1968
#> 4318 California Massachusetts 1968
#> 4319 Oregon Alabama 1968
#> 4320 Mississippi Idaho 1968
#> 4321 Virginia Wyoming 1968
#> 4322 Louisiana Tennessee 1968
#> 4323 New Jersey Rhode Island 1968
#> 4324 Louisiana Iowa 1968
#> 4325 Iowa Montana 1968
#> 4326 Nebraska Georgia 1968
#> 4327 Ohio Kansas 1968
#> 4328 New Jersey Pennsylvania 1968
#> 4329 Kansas Vermont 1968
#> 4330 Missouri New Mexico 1968
#> 4331 Nebraska Minnesota 1968
#> 4332 Texas Alaska 1968
#> 4333 Oregon Alaska 1968
#> 4334 Pennsylvania Arkansas 1968
#> 4335 New Mexico Colorado 1968
#> 4336 Georgia Missouri 1968
#> 4337 Ohio Alabama 1968
#> 4338 Indiana Wisconsin 1968
#> 4339 Mississippi New Mexico 1968
#> 4340 Pennsylvania Maine 1968
#> 4341 Maryland New Hampshire 1968
#> 4342 Maryland New Jersey 1968
#> 4343 New Jersey Florida 1968
#> 4344 Mississippi South Carolina 1968
#> 4345 South Carolina Missouri 1968
#> 4346 Oklahoma Louisiana 1968
#> 4347 Vermont Kentucky 1968
#> 4348 Illinois Oklahoma 1968
#> 4349 Nebraska Ohio 1968
#> 4350 Colorado Rhode Island 1968
#> 4351 Wisconsin Michigan 1968
#> 4352 South Carolina Maine 1968
#> 4353 Oklahoma Nevada 1968
#> 4354 Delaware Illinois 1968
#> 4355 Missouri Florida 1968
#> 4356 Iowa South Dakota 1968
#> 4357 New Hampshire Delaware 1968
#> 4358 Mississippi Washington 1968
#> 4359 Idaho Colorado 1968
#> 4360 Maine Nebraska 1968
#> 4361 Nebraska Idaho 1968
#> 4362 Mississippi North Carolina 1968
#> 4363 Illinois Louisiana 1968
#> 4364 Florida West Virginia 1968
#> 4365 Wisconsin Vermont 1968
#> 4366 New Hampshire Oregon 1968
#> 4367 Oregon Montana 1968
#> 4368 Michigan California 1968
#> 4369 Kentucky Nebraska 1968
#> 4370 South Carolina Arizona 1968
#> 4371 North Dakota Wyoming 1968
#> 4372 North Carolina South Carolina 1968
#> 4373 Virginia Pennsylvania 1968
#> 4374 Nebraska Louisiana 1968
#> 4375 Illinois Maine 1968
#> 4376 New York Delaware 1968
#> 4377 North Dakota Arkansas 1968
#> 4378 Pennsylvania Massachusetts 1968
#> 4379 Minnesota Massachusetts 1968
#> 4380 Nebraska Illinois 1968
#> 4381 New York Texas 1968
#> 4382 Virginia Kansas 1968
#> 4383 Kentucky Vermont 1968
#> 4384 New Mexico Oklahoma 1968
#> 4385 West Virginia Washington 1968
#> 4386 Delaware California 1968
#> 4387 Nebraska Virginia 1968
#> 4388 Rhode Island Ohio 1968
#> 4389 Kentucky Tennessee 1968
#> 4390 Iowa South Carolina 1968
#> 4391 North Dakota Alabama 1968
#> 4392 Nebraska Wisconsin 1968
#> 4393 Connecticut Vermont 1968
#> 4394 Arkansas New Mexico 1968
#> 4395 Delaware New Hampshire 1968
#> 4396 Idaho Nevada 1968
#> 4397 Georgia Montana 1968
#> 4398 Kansas Illinois 1968
#> 4399 Vermont Mississippi 1968
#> 4400 North Dakota California 1968
#> 4401 New Jersey Virginia 1968
#> 4402 Louisiana Utah 1968
#> 4403 Kentucky Utah 1968
#> 4404 North Carolina South Dakota 1968
#> 4405 Louisiana Ohio 1968
#> 4406 Delaware Idaho 1968
#> 4407 Alabama Wyoming 1968
#> 4408 North Dakota Indiana 1968
#> 4409 Arizona Alabama 1968
#> 4410 California Vermont 1968
#> 4411 North Carolina New York 1968
#> 4412 Wisconsin New York 1968
#> 4413 South Dakota Michigan 1968
#> 4414 Vermont Hawaii 1968
#> 4415 Vermont Delaware 1968
#> 4416 South Carolina New Hampshire 1968
#> 4417 Illinois Nebraska 1968
#> 4418 Virginia Tennessee 1968
#> 4419 Colorado Massachusetts 1968
#> 4420 Oregon Massachusetts 1968
#> 4421 Minnesota Indiana 1968
#> 4422 South Dakota Wisconsin 1968
#> 4423 Oregon Wisconsin 1968
#> 4424 Massachusetts New York 1968
#> 4425 Virginia Minnesota 1968
#> 4426 Delaware Montana 1968
#> 4427 Mississippi Colorado 1968
#> 4428 Tennessee South Carolina 1968
#> 4429 Louisiana Massachusetts 1968
#> 4430 Vermont Wisconsin 1968
#> 4431 Oregon West Virginia 1968
#> 4432 Massachusetts Oregon 1968
#> 4433 Virginia North Dakota 1968
#> 4434 Alabama North Dakota 1968
#> 4435 Virginia New York 1968
#> 4436 Nebraska California 1968
#> 4437 Oregon California 1968
#> 4438 Delaware Virginia 1968
#> 4439 Massachusetts Ohio 1968
#> 4440 North Dakota Nebraska 1968
#> 4441 Minnesota Arizona 1968
#> 4442 Massachusetts Tennessee 1968
#> 4443 Delaware Rhode Island 1968
#> 4444 Illinois New York 1968
#> 4445 Missouri Minnesota 1968
#> 4446 Vermont Oregon 1968
#> 4447 Pennsylvania Michigan 1968
#> 4448 West Virginia New Jersey 1968
#> 4449 Minnesota New Jersey 1968
#> 4450 Hawaii New Jersey 1968
#> 4451 Nebraska Montana 1968
#> 4452 Idaho California 1968
#> 4453 Massachusetts Virginia 1968
#> 4454 Minnesota Utah 1968
#> 4455 Vermont Connecticut 1968
#> 4456 Iowa Arkansas 1968
#> 4457 Arkansas North Carolina 1968
#> 4458 Wisconsin Massachusetts 1968
#> 4459 West Virginia Massachusetts 1968
#> 4460 New Mexico Alabama 1968
#> 4461 Alaska Oregon 1968
#> 4462 Nebraska New York 1968
#> 4463 Delaware New Mexico 1968
#> 4464 Florida Maine 1968
#> 4465 South Dakota Hawaii 1968
#> 4466 Hawaii Delaware 1968
#> 4467 Utah Alaska 1968
#> 4468 Nebraska Alaska 1968
#> 4469 Kansas Alaska 1968
#> 4470 Mississippi Oklahoma 1968
#> 4471 New Mexico Connecticut 1968
#> 4472 Maryland Pennsylvania 1968
#> 4473 Florida Texas 1968
#> 4474 California Maryland 1968
#> 4475 Washington New York 1968
#> 4476 Ohio Missouri 1968
#> 4477 Nevada Utah 1968
#> 4478 Michigan Indiana 1968
#> 4479 Illinois Wyoming 1968
#> 4480 Wyoming Arizona 1968
#> 4481 South Carolina Utah 1968
#> 4482 North Carolina Illinois 1968
#> 4483 Texas Maryland 1968
#> 4484 Maine South Dakota 1968
#> 4485 Vermont West Virginia 1968
#> 4486 California New Hampshire 1968
#> 4487 Delaware Texas 1968
#> 4488 Michigan Maryland 1968
#> 4489 Michigan Louisiana 1968
#> 4490 North Carolina Kentucky 1968
#> 4491 Florida Vermont 1968
#> 4492 Montana Michigan 1968
#> 4493 North Carolina Oklahoma 1968
#> 4494 Maine Texas 1968
#> 4495 Connecticut Georgia 1968
#> 4496 Texas Connecticut 1968
#> 4497 New Hampshire Indiana 1968
#> 4498 Wyoming Vermont 1968
#> 4499 Tennessee Hawaii 1968
#> 4500 Kansas Mississippi 1968
#> 4501 New York Pennsylvania 1969
#> 4502 New York Connecticut 1969
#> 4503 New York Michigan 1969
#> 4504 New York Oregon 1969
#> 4505 New York New Hampshire 1969
#> 4506 New York North Carolina 1969
#> 4507 New York Maryland 1969
#> 4508 New York Maine 1969
#> 4509 New York Indiana 1969
#> 4510 Rhode Island Kentucky 1969
#> 4511 Florida Mississippi 1969
#> 4512 New York Rhode Island 1969
#> 4513 New York Illinois 1969
#> 4514 New York Nebraska 1969
#> 4515 New York California 1969
#> 4516 New York Massachusetts 1969
#> 4517 New York Ohio 1969
#> 4518 Michigan Delaware 1969
#> 4519 New York Oklahoma 1969
#> 4520 New York Colorado 1969
#> 4521 New York Florida 1969
#> 4522 New York West Virginia 1969
#> 4523 Colorado Georgia 1969
#> 4524 Connecticut New Jersey 1969
#> 4525 New York Washington 1969
#> 4526 New York Minnesota 1969
#> 4527 Washington Kansas 1969
#> 4528 New York Vermont 1969
#> 4529 New York Arkansas 1969
#> 4530 Ohio Texas 1969
#> 4531 New York Idaho 1969
#> 4532 New Jersey South Carolina 1969
#> 4533 Washington Missouri 1969
#> 4534 Washington Wyoming 1969
#> 4535 Indiana Louisiana 1969
#> 4536 North Carolina Virginia 1969
#> 4537 New York New Mexico 1969
#> 4538 New York Tennessee 1969
#> 4539 New York Nevada 1969
#> 4540 Oregon South Dakota 1969
#> 4541 New Jersey Iowa 1969
#> 4542 New York Montana 1969
#> 4543 Oregon Arizona 1969
#> 4544 Virginia Alabama 1969
#> 4545 New York Wisconsin 1969
#> 4546 New Jersey New York 1969
#> 4547 Delaware North Dakota 1969
#> 4548 New York Utah 1969
#> 4549 Alabama Florida 1969
#> 4550 Alabama Arkansas 1969
#> 4551 Arizona Indiana 1969
#> 4552 Alabama New Mexico 1969
#> 4553 New Mexico Rhode Island 1969
#> 4554 Alabama North Carolina 1969
#> 4555 Oregon Kentucky 1969
#> 4556 Colorado Pennsylvania 1969
#> 4557 New York Virginia 1969
#> 4558 New Mexico Nevada 1969
#> 4559 North Dakota Idaho 1969
#> 4560 Oregon Louisiana 1969
#> 4561 Colorado Vermont 1969
#> 4562 Connecticut New York 1969
#> 4563 Colorado Maryland 1969
#> 4564 North Dakota South Carolina 1969
#> 4565 New Mexico Colorado 1969
#> 4566 Connecticut New Hampshire 1969
#> 4567 Maryland Tennessee 1969
#> 4568 New York New Jersey 1969
#> 4569 Alabama Arizona 1969
#> 4570 Louisiana Montana 1969
#> 4571 California Hawaii 1969
#> 4572 Rhode Island Delaware 1969
#> 4573 Connecticut Alaska 1969
#> 4574 Arizona West Virginia 1969
#> 4575 Arkansas Alabama 1969
#> 4576 Rhode Island Connecticut 1969
#> 4577 Colorado Missouri 1969
#> 4578 Idaho Iowa 1969
#> 4579 Idaho Oklahoma 1969
#> 4580 Rhode Island Washington 1969
#> 4581 New York Wyoming 1969
#> 4582 Idaho Texas 1969
#> 4583 Montana Maine 1969
#> 4584 Colorado Minnesota 1969
#> 4585 Colorado Ohio 1969
#> 4586 Louisiana Kansas 1969
#> 4587 Oregon Nebraska 1969
#> 4588 California Michigan 1969
#> 4589 Michigan Illinois 1969
#> 4590 Alabama Utah 1969
#> 4591 California Oregon 1969
#> 4592 North Dakota South Dakota 1969
#> 4593 Colorado North Carolina 1969
#> 4594 Maryland California 1969
#> 4595 Arizona Mississippi 1969
#> 4596 South Dakota Wisconsin 1969
#> 4597 Connecticut Rhode Island 1969
#> 4598 South Carolina Massachusetts 1969
#> 4599 Michigan New York 1969
#> 4600 Michigan North Dakota 1969
#> 4601 Illinois Florida 1969
#> 4602 Arizona Georgia 1969
#> 4603 North Dakota Washington 1969
#> 4604 Kentucky Arkansas 1969
#> 4605 Illinois Indiana 1969
#> 4606 Iowa Louisiana 1969
#> 4607 Rhode Island Arizona 1969
#> 4608 Kentucky Alabama 1969
#> 4609 California New Jersey 1969
#> 4610 Kentucky New Mexico 1969
#> 4611 Alabama Kentucky 1969
#> 4612 South Carolina Wyoming 1969
#> 4613 California Pennsylvania 1969
#> 4614 Washington Vermont 1969
#> 4615 Arkansas Texas 1969
#> 4616 New Mexico Delaware 1969
#> 4617 Illinois Rhode Island 1969
#> 4618 Kentucky Montana 1969
#> 4619 Georgia Oklahoma 1969
#> 4620 Wyoming Oregon 1969
#> 4621 Maryland Maine 1969
#> 4622 Alabama Virginia 1969
#> 4623 New Mexico Maryland 1969
#> 4624 Maryland Utah 1969
#> 4625 Alabama California 1969
#> 4626 Arkansas Kansas 1969
#> 4627 Nebraska Tennessee 1969
#> 4628 Illinois Wisconsin 1969
#> 4629 Rhode Island Louisiana 1969
#> 4630 Ohio Illinois 1969
#> 4631 Kentucky Ohio 1969
#> 4632 Wisconsin Colorado 1969
#> 4633 Rhode Island South Dakota 1969
#> 4634 Maryland North Carolina 1969
#> 4635 Georgia South Carolina 1969
#> 4636 Illinois Minnesota 1969
#> 4637 California Rhode Island 1969
#> 4638 Oregon New York 1969
#> 4639 Arkansas North Dakota 1969
#> 4640 Wisconsin Hawaii 1969
#> 4641 Washington Georgia 1969
#> 4642 Florida South Dakota 1969
#> 4643 Delaware Nebraska 1969
#> 4644 Michigan West Virginia 1969
#> 4645 South Carolina Connecticut 1969
#> 4646 Georgia Missouri 1969
#> 4647 Maryland Michigan 1969
#> 4648 Illinois Idaho 1969
#> 4649 Maryland Massachusetts 1969
#> 4650 Maryland New Hampshire 1969
#> 4651 Nebraska Alabama 1969
#> 4652 Kentucky Colorado 1969
#> 4653 Rhode Island Maryland 1969
#> 4654 West Virginia Nevada 1969
#> 4655 New Mexico Mississippi 1969
#> 4656 New York Kentucky 1969
#> 4657 Nebraska Iowa 1969
#> 4658 South Carolina Arkansas 1969
#> 4659 Kentucky Oklahoma 1969
#> 4660 Vermont Montana 1969
#> 4661 Wisconsin Utah 1969
#> 4662 Pennsylvania New York 1969
#> 4663 Florida New Mexico 1969
#> 4664 Washington Illinois 1969
#> 4665 Minnesota Iowa 1969
#> 4666 Arkansas Florida 1969
#> 4667 Tennessee Pennsylvania 1969
#> 4668 Michigan New Jersey 1969
#> 4669 Vermont Indiana 1969
#> 4670 Georgia Tennessee 1969
#> 4671 California Alaska 1969
#> 4672 Florida Massachusetts 1969
#> 4673 Virginia Texas 1969
#> 4674 Oregon Connecticut 1969
#> 4675 California New York 1969
#> 4676 Arkansas Nebraska 1969
#> 4677 Illinois New Hampshire 1969
#> 4678 New Jersey Minnesota 1969
#> 4679 California South Carolina 1969
#> 4680 Arkansas Rhode Island 1969
#> 4681 South Carolina Arizona 1969
#> 4682 California Washington 1969
#> 4683 Maine Wyoming 1969
#> 4684 Tennessee Georgia 1969
#> 4685 North Dakota New Jersey 1969
#> 4686 Connecticut Massachusetts 1969
#> 4687 Minnesota California 1969
#> 4688 West Virginia Maryland 1969
#> 4689 Nevada Mississippi 1969
#> 4690 New Mexico Louisiana 1969
#> 4691 South Carolina Illinois 1969
#> 4692 Florida North Carolina 1969
#> 4693 Illinois Arkansas 1969
#> 4694 Vermont Maine 1969
#> 4695 Minnesota Missouri 1969
#> 4696 New Mexico North Dakota 1969
#> 4697 Connecticut Vermont 1969
#> 4698 Arkansas Virginia 1969
#> 4699 South Dakota Nevada 1969
#> 4700 New York Kansas 1969
#> 4701 Maryland Kentucky 1969
#> 4702 Minnesota Arizona 1969
#> 4703 Oregon Michigan 1969
#> 4704 Maine Colorado 1969
#> 4705 South Carolina Idaho 1969
#> 4706 Idaho North Carolina 1969
#> 4707 North Dakota Iowa 1969
#> 4708 Arkansas Mississippi 1969
#> 4709 Maryland South Carolina 1969
#> 4710 New Jersey Oregon 1969
#> 4711 New Jersey Connecticut 1969
#> 4712 Missouri Nebraska 1969
#> 4713 Arkansas Delaware 1969
#> 4714 Montana Washington 1969
#> 4715 South Carolina Nevada 1969
#> 4716 Oregon Indiana 1969
#> 4717 Minnesota Tennessee 1969
#> 4718 Kentucky Florida 1969
#> 4719 Wisconsin Idaho 1969
#> 4720 Maryland Virginia 1969
#> 4721 Rhode Island Hawaii 1969
#> 4722 California Ohio 1969
#> 4723 Wisconsin Kansas 1969
#> 4724 New York Georgia 1969
#> 4725 Vermont Iowa 1969
#> 4726 North Dakota Kentucky 1969
#> 4727 Maine Michigan 1969
#> 4728 Washington Pennsylvania 1969
#> 4729 Michigan Minnesota 1969
#> 4730 Arkansas Missouri 1969
#> 4731 Arkansas New Hampshire 1969
#> 4732 Kentucky North Carolina 1969
#> 4733 New Mexico Arizona 1969
#> 4734 Louisiana New Mexico 1969
#> 4735 Arizona North Dakota 1969
#> 4736 Florida Wyoming 1969
#> 4737 Indiana Arkansas 1969
#> 4738 California Illinois 1969
#> 4739 Kansas Alaska 1969
#> 4740 California Utah 1969
#> 4741 Tennessee Alabama 1969
#> 4742 New York Delaware 1969
#> 4743 New Mexico South Carolina 1969
#> 4744 Oregon Vermont 1969
#> 4745 Kansas New York 1969
#> 4746 Arkansas California 1969
#> 4747 Kentucky South Dakota 1969
#> 4748 Virginia Utah 1969
#> 4749 Rhode Island Wisconsin 1969
#> 4750 Massachusetts Illinois 1969
#> 4751 Pennsylvania Ohio 1969
#> 4752 Vermont New York 1969
#> 4753 Mississippi Montana 1969
#> 4754 Kentucky Tennessee 1969
#> 4755 Louisiana Pennsylvania 1969
#> 4756 California Massachusetts 1969
#> 4757 Washington North Dakota 1969
#> 4758 Oregon New Mexico 1969
#> 4759 Illinois California 1969
#> 4760 Oregon Virginia 1969
#> 4761 Delaware Arkansas 1969
#> 4762 South Dakota Arizona 1969
#> 4763 South Dakota Louisiana 1969
#> 4764 Virginia West Virginia 1969
#> 4765 Maine North Dakota 1969
#> 4766 Mississippi California 1969
#> 4767 Pennsylvania Rhode Island 1969
#> 4768 Maine New Hampshire 1969
#> 4769 Louisiana Illinois 1969
#> 4770 Missouri Mississippi 1969
#> 4771 Wisconsin Connecticut 1969
#> 4772 Florida Maine 1969
#> 4773 Florida South Carolina 1969
#> 4774 New Hampshire New York 1969
#> 4775 Minnesota New York 1969
#> 4776 Pennsylvania Alabama 1969
#> 4777 Illinois Maine 1969
#> 4778 Kentucky Texas 1969
#> 4779 North Dakota Louisiana 1969
#> 4780 California West Virginia 1969
#> 4781 Alaska Oregon 1969
#> 4782 Iowa Utah 1969
#> 4783 Colorado Oklahoma 1969
#> 4784 Kentucky Idaho 1969
#> 4785 Montana Idaho 1969
#> 4786 Alaska Iowa 1969
#> 4787 New Jersey Delaware 1969
#> 4788 Idaho Maryland 1969
#> 4789 Mississippi Arizona 1969
#> 4790 Maryland Washington 1969
#> 4791 Illinois New Jersey 1969
#> 4792 Delaware Wyoming 1969
#> 4793 Kansas Vermont 1969
#> 4794 Virginia Colorado 1969
#> 4795 Missouri Nevada 1969
#> 4796 Louisiana Tennessee 1969
#> 4797 Michigan South Carolina 1969
#> 4798 Oregon Wisconsin 1969
#> 4799 Illinois Oregon 1969
#> 4800 Mississippi Nebraska 1969
#> 4801 Utah New Mexico 1969
#> 4802 Missouri Kansas 1969
#> 4803 Oklahoma Arkansas 1969
#> 4804 New Hampshire Oregon 1969
#> 4805 North Carolina Connecticut 1969
#> 4806 Wisconsin Michigan 1969
#> 4807 Minnesota Washington 1969
#> 4808 West Virginia Missouri 1969
#> 4809 Pennsylvania Wisconsin 1969
#> 4810 Wyoming Vermont 1969
#> 4811 Illinois Delaware 1969
#> 4812 Washington Indiana 1969
#> 4813 Rhode Island New Hampshire 1969
#> 4814 Wisconsin New Jersey 1969
#> 4815 Louisiana Alaska 1969
#> 4816 Massachusetts Washington 1969
#> 4817 Oregon Alabama 1969
#> 4818 Minnesota Maine 1969
#> 4819 South Carolina Maryland 1969
#> 4820 Mississippi Idaho 1969
#> 4821 California North Carolina 1969
#> 4822 New Jersey Rhode Island 1969
#> 4823 Louisiana Iowa 1969
#> 4824 Iowa Montana 1969
#> 4825 South Carolina Michigan 1969
#> 4826 Ohio Kansas 1969
#> 4827 South Dakota Georgia 1969
#> 4828 New Jersey Pennsylvania 1969
#> 4829 New Jersey Massachusetts 1969
#> 4830 Vermont Kentucky 1969
#> 4831 Missouri New Mexico 1969
#> 4832 Pennsylvania Michigan 1969
#> 4833 Oregon Alaska 1969
#> 4834 Pennsylvania Arkansas 1969
#> 4835 Louisiana Texas 1969
#> 4836 Ohio Alabama 1969
#> 4837 Mississippi New Mexico 1969
#> 4838 Alabama Hawaii 1969
#> 4839 Maryland New Jersey 1969
#> 4840 New Jersey Florida 1969
#> 4841 Illinois Colorado 1969
#> 4842 Nebraska Colorado 1969
#> 4843 Georgia Minnesota 1969
#> 4844 Illinois Oklahoma 1969
#> 4845 Nebraska Ohio 1969
#> 4846 Virginia Wyoming 1969
#> 4847 Colorado Rhode Island 1969
#> 4848 New Jersey Hawaii 1969
#> 4849 Oklahoma Kentucky 1969
#> 4850 Oklahoma Nevada 1969
#> 4851 Delaware Illinois 1969
#> 4852 Missouri Florida 1969
#> 4853 Iowa South Dakota 1969
#> 4854 Virginia Connecticut 1969
#> 4855 South Carolina Missouri 1969
#> 4856 Wisconsin Massachusetts 1969
#> 4857 New Hampshire Delaware 1969
#> 4858 Mississippi Washington 1969
#> 4859 Virginia Florida 1969
#> 4860 Maine Nebraska 1969
#> 4861 Alabama Maryland 1969
#> 4862 Nebraska Idaho 1969
#> 4863 Iowa Georgia 1969
#> 4864 Ohio Arizona 1969
#> 4865 Illinois Louisiana 1969
#> 4866 Minnesota Indiana 1969
#> 4867 Louisiana Wisconsin 1969
#> 4868 Florida West Virginia 1969
#> 4869 Pennsylvania Maine 1969
#> 4870 Minnesota Alaska 1969
#> 4871 Delaware New Hampshire 1969
#> 4872 Oregon Montana 1969
#> 4873 Michigan California 1969
#> 4874 Kentucky Nebraska 1969
#> 4875 North Dakota Wyoming 1969
#> 4876 North Carolina South Carolina 1969
#> 4877 Virginia Pennsylvania 1969
#> 4878 North Dakota Arkansas 1969
#> 4879 Pennsylvania Massachusetts 1969
#> 4880 California Wisconsin 1969
#> 4881 Kentucky Vermont 1969
#> 4882 New York Texas 1969
#> 4883 Virginia Kansas 1969
#> 4884 Delaware Massachusetts 1969
#> 4885 Rhode Island New York 1969
#> 4886 New Mexico Oklahoma 1969
#> 4887 West Virginia Washington 1969
#> 4888 Delaware California 1969
#> 4889 New Jersey Virginia 1969
#> 4890 Rhode Island Ohio 1969
#> 4891 Iowa South Carolina 1969
#> 4892 Mississippi North Carolina 1969
#> 4893 Colorado Massachusetts 1969
#> 4894 Michigan Kentucky 1969
#> 4895 North Dakota Alabama 1969
#> 4896 Arkansas New Mexico 1969
#> 4897 Missouri Minnesota 1969
#> 4898 Georgia Montana 1969
#> 4899 Nebraska Illinois 1969
#> 4900 Kansas Illinois 1969
#> 4901 Vermont Mississippi 1969
#> 4902 North Dakota California 1969
#> 4903 Minnesota Virginia 1969
#> 4904 Louisiana Utah 1969
#> 4905 Kentucky Utah 1969
#> 4906 North Carolina South Dakota 1969
#> 4907 Louisiana Ohio 1969
#> 4908 Delaware Idaho 1969
#> 4909 Illinois Massachusetts 1969
#> 4910 Arizona Alabama 1969
#> 4911 California Vermont 1969
#> 4912 Wisconsin Vermont 1969
#> 4913 North Carolina New York 1969
#> 4914 Wisconsin New York 1969
#> 4915 North Dakota Minnesota 1969
#> 4916 South Dakota Michigan 1969
#> 4917 Vermont Hawaii 1969
#> 4918 Vermont Delaware 1969
#> 4919 South Carolina New Hampshire 1969
#> 4920 Illinois Nebraska 1969
#> 4921 Alabama Wyoming 1969
#> 4922 Virginia Tennessee 1969
#> 4923 Minnesota Massachusetts 1969
#> 4924 North Dakota Indiana 1969
#> 4925 New Jersey Michigan 1969
#> 4926 Delaware Montana 1969
#> 4927 Mississippi Colorado 1969
#> 4928 Tennessee South Carolina 1969
#> 4929 Nebraska Wisconsin 1969
#> 4930 Oregon West Virginia 1969
#> 4931 Virginia North Dakota 1969
#> 4932 Alabama North Dakota 1969
#> 4933 Virginia New York 1969
#> 4934 Nebraska California 1969
#> 4935 Oregon California 1969
#> 4936 North Dakota Nebraska 1969
#> 4937 Massachusetts Tennessee 1969
#> 4938 Louisiana Massachusetts 1969
#> 4939 Oregon Massachusetts 1969
#> 4940 Delaware Rhode Island 1969
#> 4941 Illinois New York 1969
#> 4942 Massachusetts New York 1969
#> 4943 West Virginia New Jersey 1969
#> 4944 Minnesota New Jersey 1969
#> 4945 Hawaii New Jersey 1969
#> 4946 Nebraska Montana 1969
#> 4947 New Jersey Illinois 1969
#> 4948 Idaho California 1969
#> 4949 Massachusetts Virginia 1969
#> 4950 Minnesota Utah 1969
#> 4951 Idaho Georgia 1969
#> 4952 Vermont Connecticut 1969
#> 4953 Iowa Arkansas 1969
#> 4954 Arkansas North Carolina 1969
#> 4955 West Virginia Massachusetts 1969
#> 4956 Oklahoma Louisiana 1969
#> 4957 New Mexico Alabama 1969
#> 4958 Washington Wisconsin 1969
#> 4959 Nebraska New York 1969
#> 4960 South Carolina New York 1969
#> 4961 Delaware New Mexico 1969
#> 4962 South Dakota Hawaii 1969
#> 4963 Hawaii Delaware 1969
#> 4964 Utah Alaska 1969
#> 4965 Nebraska Alaska 1969
#> 4966 Mississippi Oklahoma 1969
#> 4967 New Mexico Connecticut 1969
#> 4968 Maryland Pennsylvania 1969
#> 4969 Washington New York 1969
#> 4970 North Carolina Minnesota 1969
#> 4971 Rhode Island Illinois 1969
#> 4972 Minnesota Colorado 1969
#> 4973 Nebraska Maine 1969
#> 4974 Nevada Utah 1969
#> 4975 California Maryland 1969
#> 4976 Maryland Missouri 1969
#> 4977 Idaho Michigan 1969
#> 4978 Vermont Wyoming 1969
#> 4979 Ohio Indiana 1969
#> 4980 South Carolina Utah 1969
#> 4981 Florida Texas 1969
#> 4982 Arizona Missouri 1969
#> 4983 Louisiana Maryland 1969
#> 4984 Connecticut Georgia 1969
#> 4985 Pennsylvania Minnesota 1969
#> 4986 Tennessee Oregon 1969
#> 4987 North Carolina Illinois 1969
#> 4988 Maine South Dakota 1969
#> 4989 Michigan Louisiana 1969
#> 4990 Vermont West Virginia 1969
#> 4991 Florida Vermont 1969
#> 4992 North Carolina Oklahoma 1969
#> 4993 Texas Connecticut 1969
#> 4994 Wyoming Maine 1969
#> 4995 Kansas Mississippi 1969
#> 4996 Delaware Texas 1969
#> 4997 Mississippi South Dakota 1969
#> 4998 Kansas Nebraska 1969
#> 4999 Kentucky Kansas 1969
#> 5000 West Virginia Georgia 1969
#> 5001 New York Pennsylvania 1970
#> 5002 New York Connecticut 1970
#> 5003 New York Michigan 1970
#> 5004 New York Oregon 1970
#> 5005 New York Maine 1970
#> 5006 New York New Hampshire 1970
#> 5007 New York North Carolina 1970
#> 5008 New York Rhode Island 1970
#> 5009 New York Indiana 1970
#> 5010 New York Maryland 1970
#> 5011 New York Illinois 1970
#> 5012 Rhode Island Kentucky 1970
#> 5013 New York Nebraska 1970
#> 5014 New York Colorado 1970
#> 5015 New York Ohio 1970
#> 5016 New York Massachusetts 1970
#> 5017 New York California 1970
#> 5018 New York Delaware 1970
#> 5019 New York New Jersey 1970
#> 5020 Florida Mississippi 1970
#> 5021 Massachusetts Minnesota 1970
#> 5022 New York Florida 1970
#> 5023 New York Washington 1970
#> 5024 New York West Virginia 1970
#> 5025 New York Oklahoma 1970
#> 5026 New York Vermont 1970
#> 5027 Washington Kansas 1970
#> 5028 New York New Mexico 1970
#> 5029 New York Arkansas 1970
#> 5030 Colorado Georgia 1970
#> 5031 New York Idaho 1970
#> 5032 Rhode Island Texas 1970
#> 5033 California Nevada 1970
#> 5034 New Jersey South Carolina 1970
#> 5035 Washington Missouri 1970
#> 5036 New York Virginia 1970
#> 5037 New York South Dakota 1970
#> 5038 Washington Wyoming 1970
#> 5039 New York Tennessee 1970
#> 5040 New Jersey Iowa 1970
#> 5041 New York Wisconsin 1970
#> 5042 New York Arizona 1970
#> 5043 Indiana Louisiana 1970
#> 5044 New York Montana 1970
#> 5045 Illinois Alabama 1970
#> 5046 Connecticut New York 1970
#> 5047 Delaware North Dakota 1970
#> 5048 New York Utah 1970
#> 5049 Alabama Arkansas 1970
#> 5050 Mississippi New Mexico 1970
#> 5051 North Carolina Virginia 1970
#> 5052 New Mexico Rhode Island 1970
#> 5053 New Mexico Colorado 1970
#> 5054 Connecticut New Jersey 1970
#> 5055 New Jersey New York 1970
#> 5056 Arkansas Alabama 1970
#> 5057 South Carolina Vermont 1970
#> 5058 Arizona Indiana 1970
#> 5059 New York Hawaii 1970
#> 5060 Arizona North Carolina 1970
#> 5061 Nebraska Florida 1970
#> 5062 Rhode Island Washington 1970
#> 5063 California Maryland 1970
#> 5064 Connecticut Alaska 1970
#> 5065 Alabama Kentucky 1970
#> 5066 Maryland Delaware 1970
#> 5067 Connecticut New Hampshire 1970
#> 5068 Colorado Pennsylvania 1970
#> 5069 Maryland Tennessee 1970
#> 5070 California Oregon 1970
#> 5071 Louisiana Montana 1970
#> 5072 New Mexico Louisiana 1970
#> 5073 North Dakota Idaho 1970
#> 5074 California Michigan 1970
#> 5075 Alabama Arizona 1970
#> 5076 Arizona West Virginia 1970
#> 5077 Louisiana South Carolina 1970
#> 5078 Colorado Missouri 1970
#> 5079 Rhode Island Connecticut 1970
#> 5080 New Mexico Nevada 1970
#> 5081 Washington Texas 1970
#> 5082 Texas Oklahoma 1970
#> 5083 New York Wyoming 1970
#> 5084 Pennsylvania Minnesota 1970
#> 5085 Montana Maine 1970
#> 5086 Louisiana Kansas 1970
#> 5087 Arizona Nebraska 1970
#> 5088 Maryland California 1970
#> 5089 Pennsylvania Georgia 1970
#> 5090 North Dakota South Dakota 1970
#> 5091 Kentucky Ohio 1970
#> 5092 Alabama Utah 1970
#> 5093 South Dakota Wisconsin 1970
#> 5094 South Carolina Illinois 1970
#> 5095 Maryland New Mexico 1970
#> 5096 New York Kentucky 1970
#> 5097 South Carolina Massachusetts 1970
#> 5098 Tennessee Iowa 1970
#> 5099 Michigan North Dakota 1970
#> 5100 Illinois Rhode Island 1970
#> 5101 Arkansas Mississippi 1970
#> 5102 Kentucky Arkansas 1970
#> 5103 Kentucky North Carolina 1970
#> 5104 Illinois Indiana 1970
#> 5105 California New Jersey 1970
#> 5106 Kentucky Montana 1970
#> 5107 Louisiana Maryland 1970
#> 5108 South Carolina Wyoming 1970
#> 5109 Tennessee Louisiana 1970
#> 5110 North Dakota Washington 1970
#> 5111 California Pennsylvania 1970
#> 5112 Michigan Delaware 1970
#> 5113 North Carolina Kansas 1970
#> 5114 New Mexico Florida 1970
#> 5115 Alabama California 1970
#> 5116 Kentucky Alabama 1970
#> 5117 Illinois Wisconsin 1970
#> 5118 California New York 1970
#> 5119 California Rhode Island 1970
#> 5120 Colorado Ohio 1970
#> 5121 Wyoming Oregon 1970
#> 5122 Maryland Maine 1970
#> 5123 Arkansas Virginia 1970
#> 5124 Georgia Arkansas 1970
#> 5125 Alabama North Carolina 1970
#> 5126 Georgia South Carolina 1970
#> 5127 Maryland Utah 1970
#> 5128 South Carolina Connecticut 1970
#> 5129 Wyoming Arizona 1970
#> 5130 Nebraska Tennessee 1970
#> 5131 Louisiana Texas 1970
#> 5132 Maryland Oklahoma 1970
#> 5133 Washington Illinois 1970
#> 5134 Illinois Idaho 1970
#> 5135 California Hawaii 1970
#> 5136 New York Nevada 1970
#> 5137 Utah New Mexico 1970
#> 5138 Rhode Island Minnesota 1970
#> 5139 Arkansas Colorado 1970
#> 5140 Arizona Georgia 1970
#> 5141 Illinois New Hampshire 1970
#> 5142 Delaware Nebraska 1970
#> 5143 Rhode Island Louisiana 1970
#> 5144 Colorado Vermont 1970
#> 5145 Arkansas North Dakota 1970
#> 5146 Georgia Missouri 1970
#> 5147 Florida South Dakota 1970
#> 5148 Connecticut Rhode Island 1970
#> 5149 Pennsylvania New York 1970
#> 5150 California Delaware 1970
#> 5151 Pennsylvania Kansas 1970
#> 5152 Vermont Montana 1970
#> 5153 Michigan Colorado 1970
#> 5154 Maryland Michigan 1970
#> 5155 North Dakota Iowa 1970
#> 5156 South Carolina Idaho 1970
#> 5157 Maryland Massachusetts 1970
#> 5158 Idaho Texas 1970
#> 5159 Nevada West Virginia 1970
#> 5160 Kentucky Vermont 1970
#> 5161 Nevada Mississippi 1970
#> 5162 Nebraska Alabama 1970
#> 5163 Maine Wyoming 1970
#> 5164 Colorado New Jersey 1970
#> 5165 California Arizona 1970
#> 5166 North Carolina Nevada 1970
#> 5167 North Dakota Maryland 1970
#> 5168 Minnesota New York 1970
#> 5169 New Mexico Oklahoma 1970
#> 5170 Tennessee Pennsylvania 1970
#> 5171 New Mexico Delaware 1970
#> 5172 Louisiana New Mexico 1970
#> 5173 Minnesota Mississippi 1970
#> 5174 Vermont Indiana 1970
#> 5175 New Mexico South Carolina 1970
#> 5176 Alabama Connecticut 1970
#> 5177 California Illinois 1970
#> 5178 Florida Massachusetts 1970
#> 5179 Arkansas Nebraska 1970
#> 5180 California Alaska 1970
#> 5181 West Virginia Kentucky 1970
#> 5182 New Mexico Utah 1970
#> 5183 Idaho Kansas 1970
#> 5184 South Carolina Tennessee 1970
#> 5185 Michigan Vermont 1970
#> 5186 Washington Florida 1970
#> 5187 Maryland New Hampshire 1970
#> 5188 Minnesota Missouri 1970
#> 5189 Nebraska Iowa 1970
#> 5190 Louisiana Rhode Island 1970
#> 5191 Kentucky South Dakota 1970
#> 5192 New Jersey Colorado 1970
#> 5193 Arkansas Minnesota 1970
#> 5194 California Washington 1970
#> 5195 Illinois Arkansas 1970
#> 5196 Rhode Island Iowa 1970
#> 5197 Alabama Maine 1970
#> 5198 Louisiana Illinois 1970
#> 5199 Connecticut Massachusetts 1970
#> 5200 North Carolina Georgia 1970
#> 5201 Illinois North Carolina 1970
#> 5202 Iowa Louisiana 1970
#> 5203 Oregon New Mexico 1970
#> 5204 Illinois California 1970
#> 5205 Georgia Florida 1970
#> 5206 New Mexico North Dakota 1970
#> 5207 Oregon New York 1970
#> 5208 Utah South Dakota 1970
#> 5209 Pennsylvania Alabama 1970
#> 5210 New Jersey Oregon 1970
#> 5211 Nebraska Colorado 1970
#> 5212 West Virginia Maryland 1970
#> 5213 Indiana New Jersey 1970
#> 5214 South Carolina Arkansas 1970
#> 5215 Maryland Nevada 1970
#> 5216 California Ohio 1970
#> 5217 Maryland South Carolina 1970
#> 5218 New Jersey Michigan 1970
#> 5219 Nebraska Texas 1970
#> 5220 North Dakota Kentucky 1970
#> 5221 Maryland Virginia 1970
#> 5222 Virginia Minnesota 1970
#> 5223 Maine Michigan 1970
#> 5224 Tennessee Oklahoma 1970
#> 5225 Minnesota Tennessee 1970
#> 5226 Arkansas Missouri 1970
#> 5227 Arkansas New Hampshire 1970
#> 5228 Mississippi Arizona 1970
#> 5229 Hawaii Montana 1970
#> 5230 Alabama West Virginia 1970
#> 5231 Arizona North Dakota 1970
#> 5232 Pennsylvania Delaware 1970
#> 5233 Florida Wyoming 1970
#> 5234 Arkansas Rhode Island 1970
#> 5235 Minnesota California 1970
#> 5236 Illinois New Jersey 1970
#> 5237 Kansas Alaska 1970
#> 5238 Ohio Illinois 1970
#> 5239 Wisconsin Utah 1970
#> 5240 New Jersey Connecticut 1970
#> 5241 Kansas New York 1970
#> 5242 Vermont Maine 1970
#> 5243 Wisconsin Hawaii 1970
#> 5244 Mississippi Nevada 1970
#> 5245 Louisiana Tennessee 1970
#> 5246 Virginia Utah 1970
#> 5247 New Mexico Arizona 1970
#> 5248 Tennessee North Carolina 1970
#> 5249 Rhode Island Wisconsin 1970
#> 5250 Massachusetts Illinois 1970
#> 5251 Mississippi California 1970
#> 5252 Pennsylvania Ohio 1970
#> 5253 Colorado Kentucky 1970
#> 5254 Nebraska Illinois 1970
#> 5255 Vermont New York 1970
#> 5256 North Dakota Minnesota 1970
#> 5257 Maryland Washington 1970
#> 5258 Montana Connecticut 1970
#> 5259 Louisiana Pennsylvania 1970
#> 5260 California Massachusetts 1970
#> 5261 Washington North Dakota 1970
#> 5262 Washington New York 1970
#> 5263 Alabama New Mexico 1970
#> 5264 Oregon Vermont 1970
#> 5265 Maine North Dakota 1970
#> 5266 North Carolina Mississippi 1970
#> 5267 Arkansas California 1970
#> 5268 New York Kansas 1970
#> 5269 California Indiana 1970
#> 5270 Maine New Hampshire 1970
#> 5271 Alabama Virginia 1970
#> 5272 Delaware Arkansas 1970
#> 5273 Louisiana North Carolina 1970
#> 5274 Louisiana Utah 1970
#> 5275 Kentucky Idaho 1970
#> 5276 Virginia Tennessee 1970
#> 5277 New Hampshire New York 1970
#> 5278 Massachusetts Florida 1970
#> 5279 Iowa Nebraska 1970
#> 5280 Indiana Arkansas 1970
#> 5281 Minnesota Arizona 1970
#> 5282 Arkansas North Carolina 1970
#> 5283 Illinois Maine 1970
#> 5284 South Carolina New Hampshire 1970
#> 5285 Arkansas Arizona 1970
#> 5286 Alaska Oregon 1970
#> 5287 Kentucky Pennsylvania 1970
#> 5288 Maryland New Jersey 1970
#> 5289 Iowa Utah 1970
#> 5290 Oregon Connecticut 1970
#> 5291 Alaska Iowa 1970
#> 5292 Virginia Florida 1970
#> 5293 Montana Idaho 1970
#> 5294 Pennsylvania Tennessee 1970
#> 5295 Colorado Oklahoma 1970
#> 5296 Colorado Nebraska 1970
#> 5297 Alaska West Virginia 1970
#> 5298 Wyoming North Carolina 1970
#> 5299 North Carolina Oregon 1970
#> 5300 Michigan South Carolina 1970
#> 5301 Kansas Vermont 1970
#> 5302 Colorado Rhode Island 1970
#> 5303 Minnesota Washington 1970
#> 5304 Alabama Louisiana 1970
#> 5305 Iowa Georgia 1970
#> 5306 Delaware Wyoming 1970
#> 5307 Pennsylvania Michigan 1970
#> 5308 Missouri Kansas 1970
#> 5309 New Mexico Hawaii 1970
#> 5310 Oregon Wisconsin 1970
#> 5311 Minnesota Colorado 1970
#> 5312 Maryland Kentucky 1970
#> 5313 Kentucky Texas 1970
#> 5314 Minnesota Iowa 1970
#> 5315 West Virginia Missouri 1970
#> 5316 Pennsylvania Wisconsin 1970
#> 5317 Arkansas Oregon 1970
#> 5318 South Carolina Michigan 1970
#> 5319 Wisconsin Idaho 1970
#> 5320 Virginia Colorado 1970
#> 5321 South Dakota Georgia 1970
#> 5322 California South Carolina 1970
#> 5323 California North Carolina 1970
#> 5324 Kentucky Washington 1970
#> 5325 Mississippi Nebraska 1970
#> 5326 New Hampshire Delaware 1970
#> 5327 Washington Indiana 1970
#> 5328 Mississippi Indiana 1970
#> 5329 Rhode Island New Hampshire 1970
#> 5330 Iowa Montana 1970
#> 5331 South Carolina Kentucky 1970
#> 5332 Vermont Iowa 1970
#> 5333 Louisiana Alaska 1970
#> 5334 South Carolina Utah 1970
#> 5335 Illinois Wyoming 1970
#> 5336 Kansas South Carolina 1970
#> 5337 Minnesota Maine 1970
#> 5338 South Carolina Maryland 1970
#> 5339 Mississippi Idaho 1970
#> 5340 Oregon Alabama 1970
#> 5341 New Jersey Rhode Island 1970
#> 5342 Kentucky Florida 1970
#> 5343 Louisiana West Virginia 1970
#> 5344 Minnesota New Jersey 1970
#> 5345 New Jersey Massachusetts 1970
#> 5346 Oregon Alaska 1970
#> 5347 Pennsylvania Nevada 1970
#> 5348 Massachusetts Washington 1970
#> 5349 Kentucky Louisiana 1970
#> 5350 Tennessee Alabama 1970
#> 5351 Nebraska Minnesota 1970
#> 5352 New Mexico Maryland 1970
#> 5353 Virginia Connecticut 1970
#> 5354 Montana Washington 1970
#> 5355 Nebraska Ohio 1970
#> 5356 Virginia Wyoming 1970
#> 5357 Nebraska Pennsylvania 1970
#> 5358 Louisiana Oregon 1970
#> 5359 Oklahoma Mississippi 1970
#> 5360 Iowa South Dakota 1970
#> 5361 Nebraska Idaho 1970
#> 5362 Alabama Georgia 1970
#> 5363 Wisconsin Massachusetts 1970
#> 5364 Massachusetts New Mexico 1970
#> 5365 Mississippi Washington 1970
#> 5366 Alabama Florida 1970
#> 5367 Maine Nebraska 1970
#> 5368 Georgia Tennessee 1970
#> 5369 Louisiana Wisconsin 1970
#> 5370 Wisconsin Vermont 1970
#> 5371 Minnesota Alaska 1970
#> 5372 South Dakota Delaware 1970
#> 5373 Delaware New Hampshire 1970
#> 5374 Mississippi Montana 1970
#> 5375 Oregon Montana 1970
#> 5376 Delaware Illinois 1970
#> 5377 Michigan California 1970
#> 5378 North Dakota Wyoming 1970
#> 5379 North Carolina South Carolina 1970
#> 5380 Wisconsin Michigan 1970
#> 5381 Indiana Illinois 1970
#> 5382 Ohio Colorado 1970
#> 5383 Louisiana Arkansas 1970
#> 5384 New Jersey Pennsylvania 1970
#> 5385 Washington Pennsylvania 1970
#> 5386 Pennsylvania Massachusetts 1970
#> 5387 California Wisconsin 1970
#> 5388 Wyoming New Mexico 1970
#> 5389 Maryland Iowa 1970
#> 5390 Indiana Hawaii 1970
#> 5391 Louisiana New Jersey 1970
#> 5392 Georgia Oklahoma 1970
#> 5393 Minnesota Virginia 1970
#> 5394 Kentucky Connecticut 1970
#> 5395 North Dakota Arkansas 1970
#> 5396 Mississippi North Carolina 1970
#> 5397 Delaware Massachusetts 1970
#> 5398 California Vermont 1970
#> 5399 Rhode Island New York 1970
#> 5400 Delaware California 1970
#> 5401 New Jersey Virginia 1970
#> 5402 New York Texas 1970
#> 5403 Rhode Island Ohio 1970
#> 5404 Kentucky Georgia 1970
#> 5405 Colorado Massachusetts 1970
#> 5406 North Dakota Alabama 1970
#> 5407 Illinois Minnesota 1970
#> 5408 Florida Maine 1970
#> 5409 Georgia Montana 1970
#> 5410 Kansas Illinois 1970
#> 5411 Vermont Mississippi 1970
#> 5412 North Dakota California 1970
#> 5413 Kentucky Utah 1970
#> 5414 Louisiana Ohio 1970
#> 5415 Delaware Idaho 1970
#> 5416 Virginia Pennsylvania 1970
#> 5417 Illinois Massachusetts 1970
#> 5418 Arizona Alabama 1970
#> 5419 Alabama North Dakota 1970
#> 5420 North Carolina New York 1970
#> 5421 Wisconsin New York 1970
#> 5422 South Dakota Michigan 1970
#> 5423 North Carolina South Dakota 1970
#> 5424 Alaska South Dakota 1970
#> 5425 Kansas Nebraska 1970
#> 5426 North Dakota Nebraska 1970
#> 5427 Minnesota Massachusetts 1970
#> 5428 Nebraska Louisiana 1970
#> 5429 Delaware Montana 1970
#> 5430 Illinois Mississippi 1970
#> 5431 New Mexico Mississippi 1970
#> 5432 Louisiana Florida 1970
#> 5433 Mississippi Colorado 1970
#> 5434 Maryland South Dakota 1970
#> 5435 Maryland Georgia 1970
#> 5436 Wisconsin Connecticut 1970
#> 5437 Kentucky Arizona 1970
#> 5438 Kentucky Tennessee 1970
#> 5439 Tennessee South Carolina 1970
#> 5440 South Carolina Louisiana 1970
#> 5441 North Dakota Indiana 1970
#> 5442 Nebraska Wisconsin 1970
#> 5443 Virginia North Dakota 1970
#> 5444 Virginia New York 1970
#> 5445 Missouri New Mexico 1970
#> 5446 Missouri Minnesota 1970
#> 5447 Pennsylvania Rhode Island 1970
#> 5448 Nebraska California 1970
#> 5449 Oregon California 1970
#> 5450 Virginia Kansas 1970
#> 5451 Tennessee Georgia 1970
#> 5452 Louisiana Arizona 1970
#> 5453 Louisiana Massachusetts 1970
#> 5454 Oregon Massachusetts 1970
#> 5455 Virginia West Virginia 1970
#> 5456 Delaware Rhode Island 1970
#> 5457 Illinois New York 1970
#> 5458 Massachusetts New York 1970
#> 5459 Delaware New Mexico 1970
#> 5460 Hawaii New Jersey 1970
#> 5461 Nebraska Montana 1970
#> 5462 New Jersey Illinois 1970
#> 5463 Idaho California 1970
#> 5464 Massachusetts Virginia 1970
#> 5465 Minnesota Utah 1970
#> 5466 Louisiana Idaho 1970
#> 5467 Vermont Connecticut 1970
#> 5468 Nevada Arkansas 1970
#> 5469 Iowa Arkansas 1970
#> 5470 Virginia Arizona 1970
#> 5471 Maryland Arizona 1970
#> 5472 Connecticut South Carolina 1970
#> 5473 Iowa South Carolina 1970
#> 5474 Virginia North Carolina 1970
#> 5475 New Mexico Alabama 1970
#> 5476 Washington Wisconsin 1970
#> 5477 Nebraska New York 1970
#> 5478 South Carolina New York 1970
#> 5479 South Dakota Hawaii 1970
#> 5480 Vermont Hawaii 1970
#> 5481 Hawaii Delaware 1970
#> 5482 Utah Alaska 1970
#> 5483 Nebraska Alaska 1970
#> 5484 Wisconsin Alaska 1970
#> 5485 Pennsylvania Maine 1970
#> 5486 Georgia Connecticut 1970
#> 5487 Oklahoma Kentucky 1970
#> 5488 Rhode Island Maryland 1970
#> 5489 Texas Missouri 1970
#> 5490 Michigan Louisiana 1970
#> 5491 New Jersey Minnesota 1970
#> 5492 Idaho Michigan 1970
#> 5493 Ohio Oklahoma 1970
#> 5494 Mississippi Arkansas 1970
#> 5495 Indiana Nevada 1970
#> 5496 Rhode Island Illinois 1970
#> 5497 Texas Maryland 1970
#> 5498 Wyoming Vermont 1970
#> 5499 Illinois Florida 1970
#> 5500 Nevada Utah 1970
#> 5501 New York Pennsylvania 1971
#> 5502 New York Oregon 1971
#> 5503 New York Connecticut 1971
#> 5504 New York Michigan 1971
#> 5505 New York New Hampshire 1971
#> 5506 New York Maine 1971
#> 5507 New York Maryland 1971
#> 5508 New York North Carolina 1971
#> 5509 Rhode Island Kentucky 1971
#> 5510 New York Indiana 1971
#> 5511 New York Rhode Island 1971
#> 5512 New York Illinois 1971
#> 5513 New York Nebraska 1971
#> 5514 Connecticut New Jersey 1971
#> 5515 New York California 1971
#> 5516 New York Colorado 1971
#> 5517 New York Delaware 1971
#> 5518 Massachusetts Minnesota 1971
#> 5519 New York Florida 1971
#> 5520 New York Ohio 1971
#> 5521 New York Massachusetts 1971
#> 5522 Florida Mississippi 1971
#> 5523 North Carolina Virginia 1971
#> 5524 New York Oklahoma 1971
#> 5525 New York Washington 1971
#> 5526 Washington Kansas 1971
#> 5527 New York Vermont 1971
#> 5528 New York West Virginia 1971
#> 5529 New York Arkansas 1971
#> 5530 Colorado Georgia 1971
#> 5531 New York New Mexico 1971
#> 5532 New York Idaho 1971
#> 5533 New Jersey South Carolina 1971
#> 5534 Rhode Island Texas 1971
#> 5535 New York Nevada 1971
#> 5536 Washington Missouri 1971
#> 5537 New Jersey Iowa 1971
#> 5538 New York South Dakota 1971
#> 5539 Washington Wyoming 1971
#> 5540 New York Wisconsin 1971
#> 5541 New York Tennessee 1971
#> 5542 Illinois Alabama 1971
#> 5543 Indiana Louisiana 1971
#> 5544 New York Arizona 1971
#> 5545 New York Montana 1971
#> 5546 New Jersey New York 1971
#> 5547 Delaware North Dakota 1971
#> 5548 New York Utah 1971
#> 5549 California Hawaii 1971
#> 5550 Alabama Arkansas 1971
#> 5551 New Mexico Nevada 1971
#> 5552 New York Virginia 1971
#> 5553 South Carolina Vermont 1971
#> 5554 Connecticut New York 1971
#> 5555 Connecticut Alaska 1971
#> 5556 California Maryland 1971
#> 5557 New York New Jersey 1971
#> 5558 California Colorado 1971
#> 5559 Arkansas Alabama 1971
#> 5560 Colorado Rhode Island 1971
#> 5561 California New Mexico 1971
#> 5562 Arizona Indiana 1971
#> 5563 Georgia South Carolina 1971
#> 5564 Arizona North Carolina 1971
#> 5565 California Washington 1971
#> 5566 Nebraska Florida 1971
#> 5567 Connecticut New Hampshire 1971
#> 5568 Alabama Kentucky 1971
#> 5569 California Delaware 1971
#> 5570 Colorado Pennsylvania 1971
#> 5571 California Oregon 1971
#> 5572 Washington Montana 1971
#> 5573 North Dakota Idaho 1971
#> 5574 North Carolina Texas 1971
#> 5575 California Michigan 1971
#> 5576 Alabama Arizona 1971
#> 5577 Colorado Louisiana 1971
#> 5578 South Dakota Nebraska 1971
#> 5579 Nebraska Tennessee 1971
#> 5580 Louisiana Oklahoma 1971
#> 5581 Arizona West Virginia 1971
#> 5582 Colorado Missouri 1971
#> 5583 Rhode Island Connecticut 1971
#> 5584 Pennsylvania Minnesota 1971
#> 5585 New Jersey Ohio 1971
#> 5586 Montana Maine 1971
#> 5587 Louisiana Kansas 1971
#> 5588 Louisiana Wisconsin 1971
#> 5589 California New York 1971
#> 5590 Tennessee South Dakota 1971
#> 5591 Pennsylvania Georgia 1971
#> 5592 Arizona Wyoming 1971
#> 5593 Idaho Iowa 1971
#> 5594 Pennsylvania California 1971
#> 5595 Illinois Massachusetts 1971
#> 5596 New Mexico Mississippi 1971
#> 5597 Michigan North Dakota 1971
#> 5598 South Carolina Illinois 1971
#> 5599 South Carolina Arkansas 1971
#> 5600 Alabama Utah 1971
#> 5601 Utah Rhode Island 1971
#> 5602 California New Jersey 1971
#> 5603 New York Kentucky 1971
#> 5604 Kentucky New Mexico 1971
#> 5605 Rhode Island Washington 1971
#> 5606 Michigan Delaware 1971
#> 5607 Arkansas Louisiana 1971
#> 5608 Illinois Indiana 1971
#> 5609 Louisiana Maryland 1971
#> 5610 California Pennsylvania 1971
#> 5611 New York Wyoming 1971
#> 5612 South Carolina Colorado 1971
#> 5613 New Mexico Florida 1971
#> 5614 North Carolina Kansas 1971
#> 5615 South Carolina Connecticut 1971
#> 5616 Kentucky North Carolina 1971
#> 5617 Kentucky Alabama 1971
#> 5618 Arizona Montana 1971
#> 5619 Louisiana Ohio 1971
#> 5620 South Carolina Tennessee 1971
#> 5621 Pennsylvania New York 1971
#> 5622 Arkansas Virginia 1971
#> 5623 New Mexico California 1971
#> 5624 Wyoming Oregon 1971
#> 5625 New York Hawaii 1971
#> 5626 Wyoming Arizona 1971
#> 5627 Illinois Rhode Island 1971
#> 5628 California Alaska 1971
#> 5629 Washington Illinois 1971
#> 5630 North Dakota South Dakota 1971
#> 5631 Delaware Nebraska 1971
#> 5632 Pennsylvania Oklahoma 1971
#> 5633 Illinois Idaho 1971
#> 5634 Kentucky Maine 1971
#> 5635 Illinois South Carolina 1971
#> 5636 Rhode Island Minnesota 1971
#> 5637 Arizona Georgia 1971
#> 5638 Illinois New Hampshire 1971
#> 5639 Kentucky Texas 1971
#> 5640 Maryland Michigan 1971
#> 5641 Ohio Massachusetts 1971
#> 5642 Pennsylvania Kansas 1971
#> 5643 Colorado Vermont 1971
#> 5644 Arkansas North Dakota 1971
#> 5645 Idaho New Mexico 1971
#> 5646 Virginia Colorado 1971
#> 5647 Florida Nevada 1971
#> 5648 Georgia Missouri 1971
#> 5649 New Mexico Delaware 1971
#> 5650 Alabama North Carolina 1971
#> 5651 Maryland California 1971
#> 5652 Maryland Utah 1971
#> 5653 Louisiana New Mexico 1971
#> 5654 Kentucky Arkansas 1971
#> 5655 North Dakota Washington 1971
#> 5656 South Carolina Idaho 1971
#> 5657 Nevada West Virginia 1971
#> 5658 Arkansas Nebraska 1971
#> 5659 California Wisconsin 1971
#> 5660 Florida Wyoming 1971
#> 5661 Nebraska Iowa 1971
#> 5662 Kentucky Vermont 1971
#> 5663 Colorado New Jersey 1971
#> 5664 California Arizona 1971
#> 5665 Nebraska Alabama 1971
#> 5666 Colorado Arkansas 1971
#> 5667 Tennessee Mississippi 1971
#> 5668 California Utah 1971
#> 5669 Minnesota Iowa 1971
#> 5670 Oregon Montana 1971
#> 5671 North Dakota Maryland 1971
#> 5672 Mississippi Montana 1971
#> 5673 New Jersey Rhode Island 1971
#> 5674 Minnesota New York 1971
#> 5675 Kansas Colorado 1971
#> 5676 Tennessee Pennsylvania 1971
#> 5677 Rhode Island Louisiana 1971
#> 5678 Vermont Indiana 1971
#> 5679 Alabama Connecticut 1971
#> 5680 California Illinois 1971
#> 5681 West Virginia Kentucky 1971
#> 5682 Idaho North Carolina 1971
#> 5683 Idaho Kansas 1971
#> 5684 Michigan Vermont 1971
#> 5685 Maryland Oklahoma 1971
#> 5686 Washington Florida 1971
#> 5687 Minnesota Missouri 1971
#> 5688 Maine New Hampshire 1971
#> 5689 Alaska New York 1971
#> 5690 Arkansas Delaware 1971
#> 5691 California Tennessee 1971
#> 5692 Arkansas Minnesota 1971
#> 5693 Illinois Texas 1971
#> 5694 Missouri Mississippi 1971
#> 5695 Florida South Carolina 1971
#> 5696 Kansas Alaska 1971
#> 5697 Louisiana Illinois 1971
#> 5698 North Carolina Georgia 1971
#> 5699 Kentucky Tennessee 1971
#> 5700 California Rhode Island 1971
#> 5701 Connecticut Massachusetts 1971
#> 5702 Wyoming Maine 1971
#> 5703 South Carolina Kentucky 1971
#> 5704 Alabama Louisiana 1971
#> 5705 Kansas Hawaii 1971
#> 5706 Georgia Florida 1971
#> 5707 New Mexico North Dakota 1971
#> 5708 California Ohio 1971
#> 5709 Rhode Island Mississippi 1971
#> 5710 Maryland Massachusetts 1971
#> 5711 Hawaii Vermont 1971
#> 5712 Kansas Iowa 1971
#> 5713 Colorado Utah 1971
#> 5714 Illinois Wisconsin 1971
#> 5715 Arkansas North Carolina 1971
#> 5716 Illinois Maine 1971
#> 5717 Maine Arkansas 1971
#> 5718 New Jersey Oregon 1971
#> 5719 Washington North Dakota 1971
#> 5720 Pennsylvania Alabama 1971
#> 5721 Illinois West Virginia 1971
#> 5722 North Dakota Iowa 1971
#> 5723 Montana Idaho 1971
#> 5724 Delaware Wyoming 1971
#> 5725 West Virginia Maryland 1971
#> 5726 Indiana New Jersey 1971
#> 5727 Maryland Nevada 1971
#> 5728 Wisconsin Michigan 1971
#> 5729 Louisiana Texas 1971
#> 5730 Arkansas South Dakota 1971
#> 5731 Iowa Louisiana 1971
#> 5732 Mississippi Nebraska 1971
#> 5733 Maine Wyoming 1971
#> 5734 Maryland Virginia 1971
#> 5735 Delaware Montana 1971
#> 5736 Pennsylvania Colorado 1971
#> 5737 Maine Michigan 1971
#> 5738 Pennsylvania Wisconsin 1971
#> 5739 Missouri Kansas 1971
#> 5740 Kentucky South Dakota 1971
#> 5741 Arkansas Missouri 1971
#> 5742 Mississippi Arizona 1971
#> 5743 Maine Nevada 1971
#> 5744 New Mexico Oklahoma 1971
#> 5745 Maryland South Carolina 1971
#> 5746 Arizona North Dakota 1971
#> 5747 Kansas New York 1971
#> 5748 Arkansas New Mexico 1971
#> 5749 Arkansas New Hampshire 1971
#> 5750 Illinois New Jersey 1971
#> 5751 Florida Massachusetts 1971
#> 5752 Ohio Illinois 1971
#> 5753 New Jersey Colorado 1971
#> 5754 New Jersey Connecticut 1971
#> 5755 California Kentucky 1971
#> 5756 Mississippi California 1971
#> 5757 Arkansas Rhode Island 1971
#> 5758 Massachusetts Illinois 1971
#> 5759 Maryland Washington 1971
#> 5760 New York Texas 1971
#> 5761 Vermont New York 1971
#> 5762 Louisiana Tennessee 1971
#> 5763 Rhode Island Ohio 1971
#> 5764 Nebraska Arizona 1971
#> 5765 North Dakota Minnesota 1971
#> 5766 Nebraska California 1971
#> 5767 Montana Connecticut 1971
#> 5768 Louisiana Pennsylvania 1971
#> 5769 Washington New York 1971
#> 5770 Minnesota Delaware 1971
#> 5771 Maryland Kentucky 1971
#> 5772 Kansas Nebraska 1971
#> 5773 Maine North Dakota 1971
#> 5774 New York Kansas 1971
#> 5775 Minnesota Arizona 1971
#> 5776 California Indiana 1971
#> 5777 Alabama Virginia 1971
#> 5778 Delaware Arkansas 1971
#> 5779 California Maine 1971
#> 5780 New Hampshire New York 1971
#> 5781 Massachusetts Florida 1971
#> 5782 Kentucky Idaho 1971
#> 5783 Rhode Island Wisconsin 1971
#> 5784 Washington New Hampshire 1971
#> 5785 South Carolina New Hampshire 1971
#> 5786 Wisconsin Nevada 1971
#> 5787 Arkansas Colorado 1971
#> 5788 Iowa South Carolina 1971
#> 5789 Alaska Oregon 1971
#> 5790 Virginia Florida 1971
#> 5791 Maryland New Jersey 1971
#> 5792 Oregon Connecticut 1971
#> 5793 Arizona Oklahoma 1971
#> 5794 Pennsylvania Tennessee 1971
#> 5795 South Carolina Michigan 1971
#> 5796 Kansas Vermont 1971
#> 5797 Pennsylvania Rhode Island 1971
#> 5798 North Carolina Oregon 1971
#> 5799 North Dakota New York 1971
#> 5800 Nevada Hawaii 1971
#> 5801 Minnesota Washington 1971
#> 5802 Arkansas Mississippi 1971
#> 5803 Iowa Georgia 1971
#> 5804 Pennsylvania Michigan 1971
#> 5805 North Carolina Nevada 1971
#> 5806 Michigan South Carolina 1971
#> 5807 Vermont Iowa 1971
#> 5808 Nebraska Ohio 1971
#> 5809 New Jersey Pennsylvania 1971
#> 5810 New Mexico Rhode Island 1971
#> 5811 Alabama West Virginia 1971
#> 5812 Nebraska Texas 1971
#> 5813 West Virginia Missouri 1971
#> 5814 Arkansas Oregon 1971
#> 5815 Wisconsin Idaho 1971
#> 5816 Minnesota Colorado 1971
#> 5817 South Dakota Georgia 1971
#> 5818 California North Carolina 1971
#> 5819 Vermont Kentucky 1971
#> 5820 New Hampshire Delaware 1971
#> 5821 Maine Maryland 1971
#> 5822 Minnesota California 1971
#> 5823 South Carolina Utah 1971
#> 5824 Wyoming North Carolina 1971
#> 5825 Washington Indiana 1971
#> 5826 Oregon Wisconsin 1971
#> 5827 Utah New Mexico 1971
#> 5828 Illinois Montana 1971
#> 5829 Louisiana Alaska 1971
#> 5830 Montana Washington 1971
#> 5831 Massachusetts Washington 1971
#> 5832 Rhode Island Colorado 1971
#> 5833 Nevada Utah 1971
#> 5834 Minnesota Ohio 1971
#> 5835 Arizona Arkansas 1971
#> 5836 Illinois Wyoming 1971
#> 5837 California Massachusetts 1971
#> 5838 Oregon Alabama 1971
#> 5839 New Jersey Minnesota 1971
#> 5840 Texas Oklahoma 1971
#> 5841 Mississippi Idaho 1971
#> 5842 Maine Indiana 1971
#> 5843 Louisiana Iowa 1971
#> 5844 Tennessee Alabama 1971
#> 5845 New Mexico Vermont 1971
#> 5846 Minnesota New Jersey 1971
#> 5847 Iowa Oklahoma 1971
#> 5848 South Carolina Maryland 1971
#> 5849 Pennsylvania Maine 1971
#> 5850 Wisconsin Hawaii 1971
#> 5851 Oregon Alaska 1971
#> 5852 Nebraska Idaho 1971
#> 5853 Virginia Connecticut 1971
#> 5854 California South Carolina 1971
#> 5855 Missouri New Mexico 1971
#> 5856 Oklahoma Minnesota 1971
#> 5857 Minnesota Maine 1971
#> 5858 Indiana Illinois 1971
#> 5859 Alabama Florida 1971
#> 5860 North Carolina California 1971
#> 5861 Washington Arkansas 1971
#> 5862 North Dakota Wyoming 1971
#> 5863 Nebraska Pennsylvania 1971
#> 5864 Louisiana Oregon 1971
#> 5865 Nebraska Minnesota 1971
#> 5866 Delaware Illinois 1971
#> 5867 New Jersey Massachusetts 1971
#> 5868 Rhode Island New York 1971
#> 5869 Mississippi Washington 1971
#> 5870 Florida Ohio 1971
#> 5871 Virginia Wyoming 1971
#> 5872 Minnesota Tennessee 1971
#> 5873 Tennessee North Carolina 1971
#> 5874 Wisconsin Vermont 1971
#> 5875 South Carolina Maine 1971
#> 5876 New Hampshire Hawaii 1971
#> 5877 Minnesota Alaska 1971
#> 5878 Nevada Mississippi 1971
#> 5879 Minnesota Virginia 1971
#> 5880 Oklahoma Nebraska 1971
#> 5881 North Carolina South Carolina 1971
#> 5882 Virginia Pennsylvania 1971
#> 5883 Rhode Island North Carolina 1971
#> 5884 Mississippi New Mexico 1971
#> 5885 Rhode Island South Dakota 1971
#> 5886 Washington Pennsylvania 1971
#> 5887 Pennsylvania Massachusetts 1971
#> 5888 Florida West Virginia 1971
#> 5889 Connecticut Rhode Island 1971
#> 5890 Rhode Island Michigan 1971
#> 5891 Maryland Delaware 1971
#> 5892 Michigan California 1971
#> 5893 Kentucky Utah 1971
#> 5894 Illinois Georgia 1971
#> 5895 Mississippi North Carolina 1971
#> 5896 Virginia North Carolina 1971
#> 5897 California Vermont 1971
#> 5898 Massachusetts New Mexico 1971
#> 5899 Delaware California 1971
#> 5900 New Jersey Virginia 1971
#> 5901 Kentucky Nebraska 1971
#> 5902 Tennessee South Carolina 1971
#> 5903 Colorado Massachusetts 1971
#> 5904 New Mexico Indiana 1971
#> 5905 North Dakota Alabama 1971
#> 5906 Missouri Wisconsin 1971
#> 5907 Oregon West Virginia 1971
#> 5908 Illinois Minnesota 1971
#> 5909 Delaware New Hampshire 1971
#> 5910 Louisiana Nevada 1971
#> 5911 Iowa Montana 1971
#> 5912 Nebraska Illinois 1971
#> 5913 Kansas Illinois 1971
#> 5914 Nebraska Mississippi 1971
#> 5915 Alabama California 1971
#> 5916 Louisiana Utah 1971
#> 5917 Massachusetts Kansas 1971
#> 5918 Delaware Idaho 1971
#> 5919 Wisconsin Connecticut 1971
#> 5920 Arizona Alabama 1971
#> 5921 Alabama North Dakota 1971
#> 5922 Wisconsin New York 1971
#> 5923 Oregon New Mexico 1971
#> 5924 South Dakota Michigan 1971
#> 5925 Alaska South Dakota 1971
#> 5926 Utah Arizona 1971
#> 5927 Nevada Massachusetts 1971
#> 5928 Rhode Island Massachusetts 1971
#> 5929 Oregon Massachusetts 1971
#> 5930 Minnesota Massachusetts 1971
#> 5931 South Carolina Louisiana 1971
#> 5932 North Dakota Indiana 1971
#> 5933 Oregon Iowa 1971
#> 5934 Nebraska Montana 1971
#> 5935 Louisiana Montana 1971
#> 5936 Vermont Mississippi 1971
#> 5937 Washington California 1971
#> 5938 Virginia Utah 1971
#> 5939 South Carolina Georgia 1971
#> 5940 Virginia Tennessee 1971
#> 5941 Missouri North Carolina 1971
#> 5942 South Dakota Wisconsin 1971
#> 5943 Nebraska Wisconsin 1971
#> 5944 Virginia North Dakota 1971
#> 5945 Louisiana North Dakota 1971
#> 5946 Virginia New York 1971
#> 5947 Missouri Minnesota 1971
#> 5948 Vermont Hawaii 1971
#> 5949 Alaska Delaware 1971
#> 5950 Georgia Oklahoma 1971
#> 5951 Oregon California 1971
#> 5952 South Carolina South Dakota 1971
#> 5953 North Dakota Nebraska 1971
#> 5954 Virginia Kansas 1971
#> 5955 Nevada Arkansas 1971
#> 5956 Louisiana Massachusetts 1971
#> 5957 Delaware Rhode Island 1971
#> 5958 Illinois New York 1971
#> 5959 Massachusetts New York 1971
#> 5960 Maine New Mexico 1971
#> 5961 Delaware New Mexico 1971
#> 5962 California Minnesota 1971
#> 5963 Hawaii New Jersey 1971
#> 5964 New Jersey Illinois 1971
#> 5965 Wyoming Illinois 1971
#> 5966 Hawaii Oklahoma 1971
#> 5967 Arkansas Florida 1971
#> 5968 Mississippi Colorado 1971
#> 5969 Idaho California 1971
#> 5970 Massachusetts Virginia 1971
#> 5971 Minnesota Utah 1971
#> 5972 Iowa Utah 1971
#> 5973 North Carolina South Dakota 1971
#> 5974 Iowa South Dakota 1971
#> 5975 Louisiana Idaho 1971
#> 5976 Vermont Connecticut 1971
#> 5977 North Dakota Arkansas 1971
#> 5978 Iowa Arkansas 1971
#> 5979 Connecticut South Carolina 1971
#> 5980 South Carolina Massachusetts 1971
#> 5981 Wisconsin Massachusetts 1971
#> 5982 Nebraska Louisiana 1971
#> 5983 New Mexico Alabama 1971
#> 5984 Washington Wisconsin 1971
#> 5985 California North Dakota 1971
#> 5986 South Carolina New York 1971
#> 5987 Florida Maine 1971
#> 5988 South Dakota Hawaii 1971
#> 5989 Utah Alaska 1971
#> 5990 Nebraska Alaska 1971
#> 5991 Wisconsin Alaska 1971
#> 5992 Rhode Island Maryland 1971
#> 5993 Tennessee Hawaii 1971
#> 5994 Oklahoma Kentucky 1971
#> 5995 Florida Texas 1971
#> 5996 Georgia Connecticut 1971
#> 5997 Mississippi Nevada 1971
#> 5998 Utah Texas 1971
#> 5999 Illinois Florida 1971
#> 6000 New Mexico Maryland 1971
#> 6001 New York Pennsylvania 1972
#> 6002 New York Oregon 1972
#> 6003 New York New Hampshire 1972
#> 6004 New York Connecticut 1972
#> 6005 New York Michigan 1972
#> 6006 New York Maine 1972
#> 6007 New York New Jersey 1972
#> 6008 New York Indiana 1972
#> 6009 Rhode Island Kentucky 1972
#> 6010 New York Illinois 1972
#> 6011 New York Rhode Island 1972
#> 6012 New York Maryland 1972
#> 6013 New York North Carolina 1972
#> 6014 New York Nebraska 1972
#> 6015 New York Florida 1972
#> 6016 New York California 1972
#> 6017 New York West Virginia 1972
#> 6018 New York Delaware 1972
#> 6019 New York Massachusetts 1972
#> 6020 New York Washington 1972
#> 6021 Massachusetts Minnesota 1972
#> 6022 New York Colorado 1972
#> 6023 New York Ohio 1972
#> 6024 Florida Mississippi 1972
#> 6025 North Carolina Virginia 1972
#> 6026 California Nevada 1972
#> 6027 New York Oklahoma 1972
#> 6028 Washington Kansas 1972
#> 6029 Rhode Island Vermont 1972
#> 6030 Colorado Georgia 1972
#> 6031 New York New Mexico 1972
#> 6032 New York Idaho 1972
#> 6033 New York Arkansas 1972
#> 6034 Rhode Island Texas 1972
#> 6035 California South Carolina 1972
#> 6036 New York South Dakota 1972
#> 6037 California Missouri 1972
#> 6038 New York Tennessee 1972
#> 6039 New York Wisconsin 1972
#> 6040 Washington Wyoming 1972
#> 6041 New Jersey Iowa 1972
#> 6042 Colorado Montana 1972
#> 6043 Colorado Louisiana 1972
#> 6044 New York Arizona 1972
#> 6045 Delaware North Dakota 1972
#> 6046 Virginia Alabama 1972
#> 6047 California New York 1972
#> 6048 New York Utah 1972
#> 6049 California Hawaii 1972
#> 6050 Connecticut New York 1972
#> 6051 Alabama Arkansas 1972
#> 6052 Connecticut Alaska 1972
#> 6053 California Washington 1972
#> 6054 Idaho Colorado 1972
#> 6055 Mississippi New Mexico 1972
#> 6056 Colorado Maryland 1972
#> 6057 Colorado Rhode Island 1972
#> 6058 South Carolina Idaho 1972
#> 6059 Colorado New Jersey 1972
#> 6060 Connecticut New Hampshire 1972
#> 6061 Mississippi Arizona 1972
#> 6062 Colorado Pennsylvania 1972
#> 6063 New York Virginia 1972
#> 6064 Arkansas Louisiana 1972
#> 6065 Rhode Island Connecticut 1972
#> 6066 California Delaware 1972
#> 6067 California North Carolina 1972
#> 6068 California Oregon 1972
#> 6069 Alabama Kentucky 1972
#> 6070 Illinois Montana 1972
#> 6071 Idaho Kansas 1972
#> 6072 Illinois Florida 1972
#> 6073 California Indiana 1972
#> 6074 Nevada Nebraska 1972
#> 6075 Kentucky Missouri 1972
#> 6076 California Michigan 1972
#> 6077 Arkansas Alabama 1972
#> 6078 California Tennessee 1972
#> 6079 Colorado Ohio 1972
#> 6080 Rhode Island Wyoming 1972
#> 6081 Texas Oklahoma 1972
#> 6082 South Carolina Vermont 1972
#> 6083 Illinois Massachusetts 1972
#> 6084 Idaho Iowa 1972
#> 6085 Alabama Utah 1972
#> 6086 North Dakota South Dakota 1972
#> 6087 Colorado Maine 1972
#> 6088 Florida South Carolina 1972
#> 6089 New Mexico Nevada 1972
#> 6090 Washington Texas 1972
#> 6091 Mississippi West Virginia 1972
#> 6092 New Mexico Mississippi 1972
#> 6093 Pennsylvania Minnesota 1972
#> 6094 Pennsylvania Georgia 1972
#> 6095 Washington North Dakota 1972
#> 6096 South Carolina Arkansas 1972
#> 6097 Louisiana Wisconsin 1972
#> 6098 Kentucky Colorado 1972
#> 6099 Kentucky North Carolina 1972
#> 6100 Minnesota Illinois 1972
#> 6101 California New Jersey 1972
#> 6102 Rhode Island Washington 1972
#> 6103 California New Mexico 1972
#> 6104 New York Hawaii 1972
#> 6105 Pennsylvania California 1972
#> 6106 Kentucky Alabama 1972
#> 6107 South Carolina Wyoming 1972
#> 6108 Michigan Delaware 1972
#> 6109 Alabama Florida 1972
#> 6110 California Rhode Island 1972
#> 6111 Vermont Indiana 1972
#> 6112 Colorado Vermont 1972
#> 6113 California Arizona 1972
#> 6114 Georgia Kansas 1972
#> 6115 New Mexico Maryland 1972
#> 6116 Kentucky Tennessee 1972
#> 6117 Wyoming North Carolina 1972
#> 6118 New York Kentucky 1972
#> 6119 Pennsylvania New York 1972
#> 6120 California Pennsylvania 1972
#> 6121 Utah Minnesota 1972
#> 6122 South Carolina Texas 1972
#> 6123 New Jersey South Carolina 1972
#> 6124 North Carolina Louisiana 1972
#> 6125 New Jersey Montana 1972
#> 6126 California Ohio 1972
#> 6127 Illinois Idaho 1972
#> 6128 Connecticut Rhode Island 1972
#> 6129 Arkansas Virginia 1972
#> 6130 New Mexico New Hampshire 1972
#> 6131 South Dakota Nebraska 1972
#> 6132 Arizona North Dakota 1972
#> 6133 Louisiana New Mexico 1972
#> 6134 Illinois Rhode Island 1972
#> 6135 California Alaska 1972
#> 6136 Alabama Connecticut 1972
#> 6137 Mississippi Maine 1972
#> 6138 Idaho Montana 1972
#> 6139 New York Nevada 1972
#> 6140 Rhode Island Oregon 1972
#> 6141 New Jersey New York 1972
#> 6142 Wisconsin Colorado 1972
#> 6143 California Wisconsin 1972
#> 6144 Kentucky Delaware 1972
#> 6145 Alabama South Dakota 1972
#> 6146 Pennsylvania Kansas 1972
#> 6147 Washington Illinois 1972
#> 6148 Ohio Massachusetts 1972
#> 6149 Colorado West Virginia 1972
#> 6150 Maryland California 1972
#> 6151 Idaho Oklahoma 1972
#> 6152 Arkansas Iowa 1972
#> 6153 New Mexico California 1972
#> 6154 Utah North Dakota 1972
#> 6155 South Carolina Tennessee 1972
#> 6156 Tennessee Missouri 1972
#> 6157 Kentucky Arkansas 1972
#> 6158 North Dakota Washington 1972
#> 6159 New Jersey Michigan 1972
#> 6160 Connecticut New Jersey 1972
#> 6161 Alaska New York 1972
#> 6162 Arizona Georgia 1972
#> 6163 Idaho New Mexico 1972
#> 6164 Illinois Indiana 1972
#> 6165 Louisiana Illinois 1972
#> 6166 California Arkansas 1972
#> 6167 Rhode Island Maryland 1972
#> 6168 Connecticut Louisiana 1972
#> 6169 Arkansas New Hampshire 1972
#> 6170 Kentucky Florida 1972
#> 6171 Nevada Utah 1972
#> 6172 Alabama North Carolina 1972
#> 6173 Illinois Maine 1972
#> 6174 Washington Vermont 1972
#> 6175 Nebraska Minnesota 1972
#> 6176 Delaware Alabama 1972
#> 6177 Minnesota New York 1972
#> 6178 South Carolina Mississippi 1972
#> 6179 New York Kansas 1972
#> 6180 Alaska Connecticut 1972
#> 6181 Illinois Wyoming 1972
#> 6182 Maine North Dakota 1972
#> 6183 Maryland New Mexico 1972
#> 6184 Maine Iowa 1972
#> 6185 South Carolina Utah 1972
#> 6186 Minnesota Colorado 1972
#> 6187 South Carolina Nevada 1972
#> 6188 Nebraska Idaho 1972
#> 6189 Florida Nebraska 1972
#> 6190 Oklahoma Kentucky 1972
#> 6191 Maryland Virginia 1972
#> 6192 Kentucky Ohio 1972
#> 6193 Idaho Texas 1972
#> 6194 New Mexico Rhode Island 1972
#> 6195 South Carolina Georgia 1972
#> 6196 New Hampshire Delaware 1972
#> 6197 Kentucky Oklahoma 1972
#> 6198 New Jersey Massachusetts 1972
#> 6199 South Dakota Tennessee 1972
#> 6200 Kansas New York 1972
#> 6201 Kansas Alaska 1972
#> 6202 Connecticut Colorado 1972
#> 6203 Colorado Florida 1972
#> 6204 Arkansas Arizona 1972
#> 6205 Tennessee Pennsylvania 1972
#> 6206 Connecticut Massachusetts 1972
#> 6207 Missouri Mississippi 1972
#> 6208 Illinois West Virginia 1972
#> 6209 Illinois Alabama 1972
#> 6210 Arizona Nevada 1972
#> 6211 Kansas Hawaii 1972
#> 6212 South Carolina New Hampshire 1972
#> 6213 Kansas Arkansas 1972
#> 6214 Mississippi Indiana 1972
#> 6215 Rhode Island Mississippi 1972
#> 6216 Mississippi California 1972
#> 6217 California Kentucky 1972
#> 6218 South Dakota Wisconsin 1972
#> 6219 Arkansas Montana 1972
#> 6220 Michigan South Carolina 1972
#> 6221 Hawaii Vermont 1972
#> 6222 California Illinois 1972
#> 6223 New Jersey Oregon 1972
#> 6224 New Mexico Massachusetts 1972
#> 6225 Illinois Wisconsin 1972
#> 6226 Missouri South Carolina 1972
#> 6227 Maine Michigan 1972
#> 6228 Arkansas North Carolina 1972
#> 6229 Virginia North Dakota 1972
#> 6230 Illinois California 1972
#> 6231 New York Georgia 1972
#> 6232 Alaska Iowa 1972
#> 6233 South Carolina Connecticut 1972
#> 6234 Indiana New Jersey 1972
#> 6235 Delaware Nebraska 1972
#> 6236 Kentucky Pennsylvania 1972
#> 6237 Kentucky South Dakota 1972
#> 6238 Delaware Wyoming 1972
#> 6239 Minnesota Missouri 1972
#> 6240 Illinois Vermont 1972
#> 6241 Wyoming Oklahoma 1972
#> 6242 Wyoming Arizona 1972
#> 6243 Illinois Michigan 1972
#> 6244 Maryland Kentucky 1972
#> 6245 Illinois Louisiana 1972
#> 6246 Pennsylvania Rhode Island 1972
#> 6247 New Mexico Iowa 1972
#> 6248 Arkansas Delaware 1972
#> 6249 Iowa Nebraska 1972
#> 6250 Maine Nevada 1972
#> 6251 Virginia Colorado 1972
#> 6252 Missouri Kansas 1972
#> 6253 Maine Wyoming 1972
#> 6254 Maryland Maine 1972
#> 6255 Colorado Missouri 1972
#> 6256 North Dakota Wyoming 1972
#> 6257 California Utah 1972
#> 6258 Florida Vermont 1972
#> 6259 Kentucky Utah 1972
#> 6260 Louisiana Texas 1972
#> 6261 Illinois Minnesota 1972
#> 6262 Illinois New Jersey 1972
#> 6263 Montana Maine 1972
#> 6264 West Virginia Maryland 1972
#> 6265 New Jersey Connecticut 1972
#> 6266 Arkansas Rhode Island 1972
#> 6267 Arizona Idaho 1972
#> 6268 Mississippi Montana 1972
#> 6269 Maryland Oklahoma 1972
#> 6270 Nebraska Ohio 1972
#> 6271 Virginia Wyoming 1972
#> 6272 Florida South Dakota 1972
#> 6273 Tennessee North Carolina 1972
#> 6274 Vermont New York 1972
#> 6275 New Jersey Pennsylvania 1972
#> 6276 Washington Pennsylvania 1972
#> 6277 Arizona West Virginia 1972
#> 6278 Oklahoma Colorado 1972
#> 6279 New York Texas 1972
#> 6280 Delaware Arkansas 1972
#> 6281 Washington New York 1972
#> 6282 Colorado Utah 1972
#> 6283 South Carolina South Dakota 1972
#> 6284 Rhode Island Wisconsin 1972
#> 6285 Missouri Florida 1972
#> 6286 Wisconsin Kansas 1972
#> 6287 Minnesota Arizona 1972
#> 6288 South Carolina Delaware 1972
#> 6289 Massachusetts New Hampshire 1972
#> 6290 Pennsylvania Michigan 1972
#> 6291 Massachusetts Illinois 1972
#> 6292 Alabama Virginia 1972
#> 6293 South Carolina Ohio 1972
#> 6294 Louisiana Pennsylvania 1972
#> 6295 New Hampshire New York 1972
#> 6296 Virginia Utah 1972
#> 6297 Maryland Idaho 1972
#> 6298 Pennsylvania Tennessee 1972
#> 6299 South Carolina Kentucky 1972
#> 6300 Alabama North Dakota 1972
#> 6301 California Minnesota 1972
#> 6302 North Dakota Minnesota 1972
#> 6303 Hawaii New Jersey 1972
#> 6304 Kentucky Rhode Island 1972
#> 6305 Maine New Mexico 1972
#> 6306 Nebraska Arkansas 1972
#> 6307 Alaska Nevada 1972
#> 6308 Vermont Connecticut 1972
#> 6309 Illinois Colorado 1972
#> 6310 Alaska Oregon 1972
#> 6311 Maryland New Jersey 1972
#> 6312 North Dakota Iowa 1972
#> 6313 Nevada Hawaii 1972
#> 6314 Nevada Arkansas 1972
#> 6315 Montana Washington 1972
#> 6316 Arkansas Mississippi 1972
#> 6317 North Dakota New York 1972
#> 6318 South Carolina Illinois 1972
#> 6319 Vermont Tennessee 1972
#> 6320 Oregon Alabama 1972
#> 6321 Nevada West Virginia 1972
#> 6322 Minnesota Washington 1972
#> 6323 Maryland South Carolina 1972
#> 6324 Vermont Oregon 1972
#> 6325 Illinois New Hampshire 1972
#> 6326 Minnesota California 1972
#> 6327 West Virginia Missouri 1972
#> 6328 Vermont Kentucky 1972
#> 6329 Maryland Indiana 1972
#> 6330 Massachusetts Washington 1972
#> 6331 North Dakota Maryland 1972
#> 6332 South Carolina Maryland 1972
#> 6333 California Massachusetts 1972
#> 6334 New Hampshire Oregon 1972
#> 6335 Delaware Idaho 1972
#> 6336 Kentucky Nevada 1972
#> 6337 Washington Wisconsin 1972
#> 6338 Utah New Mexico 1972
#> 6339 Oregon Alaska 1972
#> 6340 Mississippi Nebraska 1972
#> 6341 Nebraska Georgia 1972
#> 6342 Wisconsin Michigan 1972
#> 6343 Louisiana Alaska 1972
#> 6344 Maryland New Hampshire 1972
#> 6345 Nebraska Texas 1972
#> 6346 Maine South Dakota 1972
#> 6347 Pennsylvania Maine 1972
#> 6348 West Virginia Illinois 1972
#> 6349 Georgia South Carolina 1972
#> 6350 Virginia Louisiana 1972
#> 6351 Mississippi Alabama 1972
#> 6352 Texas Massachusetts 1972
#> 6353 South Dakota North Carolina 1972
#> 6354 Minnesota New Jersey 1972
#> 6355 Massachusetts Connecticut 1972
#> 6356 Wisconsin Hawaii 1972
#> 6357 Maine Indiana 1972
#> 6358 Nevada Mississippi 1972
#> 6359 New Jersey Florida 1972
#> 6360 Illinois Georgia 1972
#> 6361 Virginia Connecticut 1972
#> 6362 North Dakota Arkansas 1972
#> 6363 Rhode Island North Carolina 1972
#> 6364 South Carolina Oregon 1972
#> 6365 Minnesota Maine 1972
#> 6366 Louisiana Montana 1972
#> 6367 Oregon Montana 1972
#> 6368 Nebraska Arizona 1972
#> 6369 Kentucky West Virginia 1972
#> 6370 Oregon Vermont 1972
#> 6371 Montana Minnesota 1972
#> 6372 New Hampshire Hawaii 1972
#> 6373 Maryland Washington 1972
#> 6374 South Dakota Mississippi 1972
#> 6375 Utah Florida 1972
#> 6376 Mississippi Idaho 1972
#> 6377 Hawaii Wisconsin 1972
#> 6378 Rhode Island New York 1972
#> 6379 Oregon New Mexico 1972
#> 6380 South Carolina Michigan 1972
#> 6381 California Maine 1972
#> 6382 California Iowa 1972
#> 6383 Minnesota New Hampshire 1972
#> 6384 Mississippi Washington 1972
#> 6385 North Carolina California 1972
#> 6386 Florida Ohio 1972
#> 6387 Kansas Nebraska 1972
#> 6388 Minnesota Tennessee 1972
#> 6389 Colorado Massachusetts 1972
#> 6390 Pennsylvania Wisconsin 1972
#> 6391 Minnesota Alaska 1972
#> 6392 Delaware Illinois 1972
#> 6393 Colorado Oklahoma 1972
#> 6394 Louisiana Oklahoma 1972
#> 6395 Kansas Colorado 1972
#> 6396 Minnesota Virginia 1972
#> 6397 Louisiana South Dakota 1972
#> 6398 Arizona Louisiana 1972
#> 6399 New York Vermont 1972
#> 6400 Montana Idaho 1972
#> 6401 Pennsylvania Massachusetts 1972
#> 6402 Michigan Kentucky 1972
#> 6403 California North Dakota 1972
#> 6404 Massachusetts New Mexico 1972
#> 6405 South Dakota Iowa 1972
#> 6406 Delaware New Hampshire 1972
#> 6407 Nebraska Montana 1972
#> 6408 Michigan California 1972
#> 6409 Kentucky Nebraska 1972
#> 6410 Tennessee South Carolina 1972
#> 6411 Virginia North Carolina 1972
#> 6412 Missouri Minnesota 1972
#> 6413 Delaware California 1972
#> 6414 New Jersey Virginia 1972
#> 6415 Rhode Island Ohio 1972
#> 6416 Illinois Connecticut 1972
#> 6417 Oregon Arizona 1972
#> 6418 Oklahoma Indiana 1972
#> 6419 Nebraska Illinois 1972
#> 6420 Kansas Illinois 1972
#> 6421 Nebraska California 1972
#> 6422 Virginia Texas 1972
#> 6423 Virginia Kansas 1972
#> 6424 Massachusetts Kansas 1972
#> 6425 Virginia Pennsylvania 1972
#> 6426 Rhode Island Massachusetts 1972
#> 6427 South Carolina Louisiana 1972
#> 6428 North Dakota Indiana 1972
#> 6429 South Dakota Alabama 1972
#> 6430 New Mexico Alabama 1972
#> 6431 Alabama Wisconsin 1972
#> 6432 California Vermont 1972
#> 6433 Massachusetts Oregon 1972
#> 6434 Wisconsin New York 1972
#> 6435 South Dakota Michigan 1972
#> 6436 Louisiana Nevada 1972
#> 6437 Georgia Montana 1972
#> 6438 Alaska Illinois 1972
#> 6439 South Carolina Washington 1972
#> 6440 Louisiana Utah 1972
#> 6441 Alaska South Dakota 1972
#> 6442 Virginia Tennessee 1972
#> 6443 Mississippi North Carolina 1972
#> 6444 Minnesota Massachusetts 1972
#> 6445 North Dakota Louisiana 1972
#> 6446 Georgia Indiana 1972
#> 6447 Oregon West Virginia 1972
#> 6448 Kentucky Vermont 1972
#> 6449 New Jersey Illinois 1972
#> 6450 New Mexico Oklahoma 1972
#> 6451 Mississippi Colorado 1972
#> 6452 Utah Idaho 1972
#> 6453 North Dakota Idaho 1972
#> 6454 Oklahoma Wyoming 1972
#> 6455 New York Wyoming 1972
#> 6456 Missouri North Carolina 1972
#> 6457 Louisiana Massachusetts 1972
#> 6458 Nebraska Wisconsin 1972
#> 6459 Wisconsin Vermont 1972
#> 6460 Kansas Oregon 1972
#> 6461 Louisiana North Dakota 1972
#> 6462 Virginia New York 1972
#> 6463 Tennessee Iowa 1972
#> 6464 Vermont Hawaii 1972
#> 6465 Hawaii Delaware 1972
#> 6466 Indiana Florida 1972
#> 6467 Oregon California 1972
#> 6468 North Dakota Nebraska 1972
#> 6469 Louisiana Idaho 1972
#> 6470 Wisconsin Connecticut 1972
#> 6471 Maryland Massachusetts 1972
#> 6472 Delaware Rhode Island 1972
#> 6473 Illinois New York 1972
#> 6474 Massachusetts New York 1972
#> 6475 Minnesota Iowa 1972
#> 6476 Utah Alaska 1972
#> 6477 California Montana 1972
#> 6478 Delaware Montana 1972
#> 6479 Wyoming Illinois 1972
#> 6480 Hawaii Oklahoma 1972
#> 6481 Illinois Mississippi 1972
#> 6482 Idaho California 1972
#> 6483 North Dakota California 1972
#> 6484 Massachusetts Virginia 1972
#> 6485 Minnesota Utah 1972
#> 6486 Oregon Connecticut 1972
#> 6487 Alabama Arizona 1972
#> 6488 South Carolina Massachusetts 1972
#> 6489 Wisconsin Massachusetts 1972
#> 6490 Alaska Massachusetts 1972
#> 6491 Arizona Alabama 1972
#> 6492 South Dakota West Virginia 1972
#> 6493 South Carolina New York 1972
#> 6494 Delaware New Mexico 1972
#> 6495 Florida Maine 1972
#> 6496 South Carolina Maine 1972
#> 6497 South Dakota Hawaii 1972
#> 6498 Nebraska Alaska 1972
#> 6499 Wisconsin Alaska 1972
#> 6500 Tennessee Hawaii 1972
#> 6501 New York Pennsylvania 1973
#> 6502 New York Oregon 1973
#> 6503 New York Michigan 1973
#> 6504 New York New Hampshire 1973
#> 6505 New York Connecticut 1973
#> 6506 New York Maine 1973
#> 6507 Rhode Island Kentucky 1973
#> 6508 New York New Jersey 1973
#> 6509 New York Rhode Island 1973
#> 6510 New York Florida 1973
#> 6511 New York Nebraska 1973
#> 6512 New York Indiana 1973
#> 6513 New York Illinois 1973
#> 6514 New York Massachusetts 1973
#> 6515 New York West Virginia 1973
#> 6516 New York Maryland 1973
#> 6517 New York North Carolina 1973
#> 6518 New York California 1973
#> 6519 Idaho Kansas 1973
#> 6520 Colorado Georgia 1973
#> 6521 New York Delaware 1973
#> 6522 Massachusetts Minnesota 1973
#> 6523 New York Colorado 1973
#> 6524 New York Ohio 1973
#> 6525 Florida Mississippi 1973
#> 6526 North Carolina Virginia 1973
#> 6527 New York Washington 1973
#> 6528 New York Oklahoma 1973
#> 6529 Rhode Island Vermont 1973
#> 6530 California Nevada 1973
#> 6531 New York Idaho 1973
#> 6532 New York New Mexico 1973
#> 6533 Maine South Dakota 1973
#> 6534 Rhode Island Texas 1973
#> 6535 California South Carolina 1973
#> 6536 New York Arkansas 1973
#> 6537 Rhode Island Missouri 1973
#> 6538 Colorado Montana 1973
#> 6539 New York Tennessee 1973
#> 6540 New York Wisconsin 1973
#> 6541 New Jersey Iowa 1973
#> 6542 Washington Wyoming 1973
#> 6543 Colorado Arizona 1973
#> 6544 Colorado Louisiana 1973
#> 6545 Illinois Alabama 1973
#> 6546 Delaware North Dakota 1973
#> 6547 New Jersey New York 1973
#> 6548 New York Alaska 1973
#> 6549 New York Utah 1973
#> 6550 New York Hawaii 1973
#> 6551 Alabama Arkansas 1973
#> 6552 New York Kansas 1973
#> 6553 Colorado Maryland 1973
#> 6554 California Washington 1973
#> 6555 Colorado Pennsylvania 1973
#> 6556 Idaho Colorado 1973
#> 6557 Colorado New Hampshire 1973
#> 6558 Mississippi New Mexico 1973
#> 6559 Colorado Rhode Island 1973
#> 6560 Connecticut New York 1973
#> 6561 California Kentucky 1973
#> 6562 Colorado Ohio 1973
#> 6563 Colorado New Jersey 1973
#> 6564 Illinois Montana 1973
#> 6565 Illinois Florida 1973
#> 6566 Nevada Nebraska 1973
#> 6567 South Dakota North Carolina 1973
#> 6568 Arkansas Louisiana 1973
#> 6569 Rhode Island Connecticut 1973
#> 6570 California Oregon 1973
#> 6571 South Carolina Idaho 1973
#> 6572 California Indiana 1973
#> 6573 Arkansas Alabama 1973
#> 6574 California Delaware 1973
#> 6575 New York Virginia 1973
#> 6576 Illinois Massachusetts 1973
#> 6577 Nebraska Tennessee 1973
#> 6578 Rhode Island Wyoming 1973
#> 6579 Arkansas Arizona 1973
#> 6580 California Michigan 1973
#> 6581 Texas Oklahoma 1973
#> 6582 Washington Texas 1973
#> 6583 New Mexico Nevada 1973
#> 6584 Colorado Maine 1973
#> 6585 Washington Missouri 1973
#> 6586 New Jersey South Carolina 1973
#> 6587 Idaho Iowa 1973
#> 6588 Alabama Utah 1973
#> 6589 Colorado Vermont 1973
#> 6590 Louisiana Wisconsin 1973
#> 6591 Nevada West Virginia 1973
#> 6592 California New York 1973
#> 6593 New Mexico Mississippi 1973
#> 6594 Pennsylvania Minnesota 1973
#> 6595 Washington North Dakota 1973
#> 6596 New York South Dakota 1973
#> 6597 Michigan Delaware 1973
#> 6598 New Jersey Montana 1973
#> 6599 Pennsylvania Georgia 1973
#> 6600 California Hawaii 1973
#> 6601 Kentucky Colorado 1973
#> 6602 California North Carolina 1973
#> 6603 Minnesota Illinois 1973
#> 6604 Washington Vermont 1973
#> 6605 Rhode Island Washington 1973
#> 6606 California New Mexico 1973
#> 6607 Vermont Indiana 1973
#> 6608 Pennsylvania California 1973
#> 6609 Alabama Florida 1973
#> 6610 Delaware Rhode Island 1973
#> 6611 Kentucky Alabama 1973
#> 6612 Georgia Kansas 1973
#> 6613 New Mexico Maryland 1973
#> 6614 Oklahoma Kentucky 1973
#> 6615 California New Jersey 1973
#> 6616 New York Louisiana 1973
#> 6617 Mississippi Arizona 1973
#> 6618 California Pennsylvania 1973
#> 6619 Utah Minnesota 1973
#> 6620 New Mexico New Hampshire 1973
#> 6621 Florida South Carolina 1973
#> 6622 Kentucky Arkansas 1973
#> 6623 Kentucky Tennessee 1973
#> 6624 Kentucky North Carolina 1973
#> 6625 California Ohio 1973
#> 6626 Florida Virginia 1973
#> 6627 Illinois Idaho 1973
#> 6628 South Dakota Nebraska 1973
#> 6629 Arizona North Dakota 1973
#> 6630 Louisiana New Mexico 1973
#> 6631 New Jersey Michigan 1973
#> 6632 North Dakota Washington 1973
#> 6633 Louisiana Texas 1973
#> 6634 South Carolina Wyoming 1973
#> 6635 Arkansas Alaska 1973
#> 6636 Pennsylvania Kansas 1973
#> 6637 Arkansas Iowa 1973
#> 6638 Idaho Montana 1973
#> 6639 Illinois West Virginia 1973
#> 6640 Alabama Connecticut 1973
#> 6641 Idaho New Mexico 1973
#> 6642 Rhode Island Oregon 1973
#> 6643 Wisconsin Colorado 1973
#> 6644 New Jersey Rhode Island 1973
#> 6645 California Wisconsin 1973
#> 6646 Rhode Island Arizona 1973
#> 6647 Kentucky Delaware 1973
#> 6648 Washington Illinois 1973
#> 6649 Florida South Dakota 1973
#> 6650 Ohio Massachusetts 1973
#> 6651 Oregon Vermont 1973
#> 6652 Pennsylvania New York 1973
#> 6653 Georgia Arkansas 1973
#> 6654 New Mexico California 1973
#> 6655 Delaware Alabama 1973
#> 6656 Idaho Oklahoma 1973
#> 6657 Kentucky Maine 1973
#> 6658 Utah North Dakota 1973
#> 6659 Wyoming North Carolina 1973
#> 6660 Oklahoma Florida 1973
#> 6661 New Hampshire Tennessee 1973
#> 6662 Connecticut New Jersey 1973
#> 6663 Alaska New York 1973
#> 6664 Vermont Nevada 1973
#> 6665 Arizona Georgia 1973
#> 6666 Idaho Texas 1973
#> 6667 Minnesota Missouri 1973
#> 6668 New Mexico Rhode Island 1973
#> 6669 Illinois Indiana 1973
#> 6670 Louisiana Illinois 1973
#> 6671 New Jersey Idaho 1973
#> 6672 Maine Iowa 1973
#> 6673 Rhode Island Maryland 1973
#> 6674 North Carolina Louisiana 1973
#> 6675 Maryland New Mexico 1973
#> 6676 Oregon Alabama 1973
#> 6677 Nevada Utah 1973
#> 6678 Illinois Maine 1973
#> 6679 Nebraska Minnesota 1973
#> 6680 Vermont Wyoming 1973
#> 6681 Maryland California 1973
#> 6682 Illinois New York 1973
#> 6683 Arkansas New Hampshire 1973
#> 6684 Minnesota New York 1973
#> 6685 Alaska Connecticut 1973
#> 6686 Maine North Dakota 1973
#> 6687 Arkansas Mississippi 1973
#> 6688 Minnesota Colorado 1973
#> 6689 New Hampshire Kentucky 1973
#> 6690 Illinois Colorado 1973
#> 6691 Alaska Iowa 1973
#> 6692 Florida Nebraska 1973
#> 6693 South Carolina Arkansas 1973
#> 6694 Washington Hawaii 1973
#> 6695 Minnesota Tennessee 1973
#> 6696 Arkansas Delaware 1973
#> 6697 New Jersey Massachusetts 1973
#> 6698 Kentucky Ohio 1973
#> 6699 Arkansas Rhode Island 1973
#> 6700 Illinois New Jersey 1973
#> 6701 Oregon Georgia 1973
#> 6702 Massachusetts Florida 1973
#> 6703 Maine Missouri 1973
#> 6704 Ohio West Virginia 1973
#> 6705 Oregon Idaho 1973
#> 6706 New Mexico Arkansas 1973
#> 6707 New Hampshire Delaware 1973
#> 6708 Maryland Kentucky 1973
#> 6709 Nevada Mississippi 1973
#> 6710 Tennessee Pennsylvania 1973
#> 6711 New Jersey Wisconsin 1973
#> 6712 California Rhode Island 1973
#> 6713 Connecticut Massachusetts 1973
#> 6714 Alabama North Carolina 1973
#> 6715 California Utah 1973
#> 6716 Minnesota Arizona 1973
#> 6717 Missouri Mississippi 1973
#> 6718 Mississippi California 1973
#> 6719 Arkansas Montana 1973
#> 6720 New York Vermont 1973
#> 6721 Michigan South Carolina 1973
#> 6722 California Illinois 1973
#> 6723 North Dakota Wyoming 1973
#> 6724 South Carolina Wisconsin 1973
#> 6725 New Jersey Oregon 1973
#> 6726 Arizona Nevada 1973
#> 6727 Delaware Wyoming 1973
#> 6728 New Mexico Massachusetts 1973
#> 6729 Nevada Hawaii 1973
#> 6730 Missouri South Carolina 1973
#> 6731 Maine Michigan 1973
#> 6732 New Mexico Alabama 1973
#> 6733 Illinois California 1973
#> 6734 Connecticut Virginia 1973
#> 6735 Louisiana Alaska 1973
#> 6736 Wyoming Maine 1973
#> 6737 Pennsylvania Rhode Island 1973
#> 6738 Delaware Nebraska 1973
#> 6739 Kentucky South Dakota 1973
#> 6740 Indiana New Jersey 1973
#> 6741 New Mexico Iowa 1973
#> 6742 Wyoming Oklahoma 1973
#> 6743 Maryland Virginia 1973
#> 6744 Illinois Michigan 1973
#> 6745 Pennsylvania Alaska 1973
#> 6746 Washington Pennsylvania 1973
#> 6747 Florida Vermont 1973
#> 6748 Iowa Nebraska 1973
#> 6749 Colorado Missouri 1973
#> 6750 Missouri Kansas 1973
#> 6751 Virginia Utah 1973
#> 6752 Kentucky Oklahoma 1973
#> 6753 Oregon Louisiana 1973
#> 6754 Maine Indiana 1973
#> 6755 Florida Georgia 1973
#> 6756 Illinois Minnesota 1973
#> 6757 New York Texas 1973
#> 6758 West Virginia Maryland 1973
#> 6759 Illinois Rhode Island 1973
#> 6760 Wisconsin Hawaii 1973
#> 6761 New Jersey Connecticut 1973
#> 6762 Delaware Arkansas 1973
#> 6763 Mississippi Montana 1973
#> 6764 Wisconsin Kansas 1973
#> 6765 Oklahoma Georgia 1973
#> 6766 Nebraska Ohio 1973
#> 6767 South Dakota Tennessee 1973
#> 6768 Oregon West Virginia 1973
#> 6769 Kansas Alaska 1973
#> 6770 North Dakota South Dakota 1973
#> 6771 New York Nevada 1973
#> 6772 Tennessee North Carolina 1973
#> 6773 Indiana Wisconsin 1973
#> 6774 Hawaii Vermont 1973
#> 6775 Nevada Washington 1973
#> 6776 Vermont New York 1973
#> 6777 Oklahoma Colorado 1973
#> 6778 Louisiana Pennsylvania 1973
#> 6779 Kentucky Utah 1973
#> 6780 New York Wyoming 1973
#> 6781 Texas Kentucky 1973
#> 6782 Oklahoma Indiana 1973
#> 6783 California Vermont 1973
#> 6784 Michigan North Dakota 1973
#> 6785 New Hampshire New York 1973
#> 6786 Pennsylvania Michigan 1973
#> 6787 Massachusetts Illinois 1973
#> 6788 Rhode Island Mississippi 1973
#> 6789 Kentucky Florida 1973
#> 6790 Iowa Colorado 1973
#> 6791 Colorado Utah 1973
#> 6792 South Carolina Ohio 1973
#> 6793 New Hampshire Arkansas 1973
#> 6794 Wisconsin Arizona 1973
#> 6795 Wisconsin Massachusetts 1973
#> 6796 Illinois Connecticut 1973
#> 6797 Vermont New Hampshire 1973
#> 6798 Alaska Nevada 1973
#> 6799 Vermont Connecticut 1973
#> 6800 California Minnesota 1973
#> 6801 North Dakota Minnesota 1973
#> 6802 Hawaii New Jersey 1973
#> 6803 Virginia North Carolina 1973
#> 6804 Maine New Mexico 1973
#> 6805 Nevada Arkansas 1973
#> 6806 North Carolina Indiana 1973
#> 6807 Washington New York 1973
#> 6808 Alaska Oregon 1973
#> 6809 Maryland New Jersey 1973
#> 6810 New Mexico South Dakota 1973
#> 6811 North Dakota Iowa 1973
#> 6812 South Dakota Connecticut 1973
#> 6813 Indiana Florida 1973
#> 6814 Maine Nevada 1973
#> 6815 South Carolina Washington 1973
#> 6816 North Dakota New York 1973
#> 6817 Montana Maine 1973
#> 6818 Maryland Pennsylvania 1973
#> 6819 Washington Wisconsin 1973
#> 6820 New Mexico Hawaii 1973
#> 6821 New Jersey New Hampshire 1973
#> 6822 Kentucky Texas 1973
#> 6823 Washington Maryland 1973
#> 6824 Wisconsin Idaho 1973
#> 6825 South Carolina Illinois 1973
#> 6826 South Carolina Nevada 1973
#> 6827 Connecticut Colorado 1973
#> 6828 Maryland South Carolina 1973
#> 6829 Vermont Oregon 1973
#> 6830 Oregon Alaska 1973
#> 6831 Minnesota California 1973
#> 6832 Oregon Ohio 1973
#> 6833 Rhode Island New York 1973
#> 6834 Massachusetts Washington 1973
#> 6835 Arkansas Missouri 1973
#> 6836 Illinois Oklahoma 1973
#> 6837 New York Kentucky 1973
#> 6838 New Hampshire Oregon 1973
#> 6839 Wyoming Arizona 1973
#> 6840 Kansas Vermont 1973
#> 6841 Utah New Mexico 1973
#> 6842 Delaware New Hampshire 1973
#> 6843 Mississippi Nebraska 1973
#> 6844 North Dakota Maryland 1973
#> 6845 Illinois Georgia 1973
#> 6846 Wisconsin Michigan 1973
#> 6847 New Hampshire Hawaii 1973
#> 6848 Pennsylvania Virginia 1973
#> 6849 California Massachusetts 1973
#> 6850 Iowa Louisiana 1973
#> 6851 Pennsylvania Maine 1973
#> 6852 West Virginia Illinois 1973
#> 6853 Minnesota Washington 1973
#> 6854 Nebraska Texas 1973
#> 6855 South Carolina Maryland 1973
#> 6856 Missouri Wisconsin 1973
#> 6857 Kentucky West Virginia 1973
#> 6858 Texas Massachusetts 1973
#> 6859 Virginia Florida 1973
#> 6860 New Jersey Wyoming 1973
#> 6861 Minnesota New Jersey 1973
#> 6862 Massachusetts Kansas 1973
#> 6863 Vermont Kentucky 1973
#> 6864 Minnesota Maine 1973
#> 6865 Oregon Montana 1973
#> 6866 South Dakota Mississippi 1973
#> 6867 Mississippi Idaho 1973
#> 6868 Tennessee South Carolina 1973
#> 6869 New Jersey Pennsylvania 1973
#> 6870 Rhode Island North Carolina 1973
#> 6871 Washington Indiana 1973
#> 6872 Oregon New Mexico 1973
#> 6873 Louisiana Montana 1973
#> 6874 Virginia Connecticut 1973
#> 6875 Arizona Arkansas 1973
#> 6876 Connecticut Oregon 1973
#> 6877 Montana Minnesota 1973
#> 6878 Maryland Washington 1973
#> 6879 North Dakota Idaho 1973
#> 6880 South Dakota Wisconsin 1973
#> 6881 South Carolina Michigan 1973
#> 6882 South Carolina Maine 1973
#> 6883 California Iowa 1973
#> 6884 North Carolina California 1973
#> 6885 Florida Ohio 1973
#> 6886 Kansas Nebraska 1973
#> 6887 West Virginia Missouri 1973
#> 6888 Colorado Massachusetts 1973
#> 6889 Michigan Kentucky 1973
#> 6890 Mississippi West Virginia 1973
#> 6891 Minnesota Delaware 1973
#> 6892 Delaware Illinois 1973
#> 6893 Louisiana Oklahoma 1973
#> 6894 North Carolina Florida 1973
#> 6895 South Carolina Utah 1973
#> 6896 Pennsylvania New Mexico 1973
#> 6897 Colorado Michigan 1973
#> 6898 Colorado Oklahoma 1973
#> 6899 Kentucky Nebraska 1973
#> 6900 Pennsylvania Massachusetts 1973
#> 6901 Pennsylvania Alabama 1973
#> 6902 Kansas New York 1973
#> 6903 Massachusetts New Mexico 1973
#> 6904 South Dakota Iowa 1973
#> 6905 New Mexico Louisiana 1973
#> 6906 Illinois New Hampshire 1973
#> 6907 Nebraska Montana 1973
#> 6908 Michigan California 1973
#> 6909 New Mexico Kansas 1973
#> 6910 Delaware Idaho 1973
#> 6911 South Carolina Georgia 1973
#> 6912 Missouri Minnesota 1973
#> 6913 Kansas Hawaii 1973
#> 6914 Delaware California 1973
#> 6915 Rhode Island Ohio 1973
#> 6916 Oregon Wisconsin 1973
#> 6917 Connecticut Rhode Island 1973
#> 6918 Connecticut New Hampshire 1973
#> 6919 Nebraska Illinois 1973
#> 6920 Kansas Illinois 1973
#> 6921 Montana Washington 1973
#> 6922 Vermont Mississippi 1973
#> 6923 Nebraska California 1973
#> 6924 North Carolina South Dakota 1973
#> 6925 Virginia Kansas 1973
#> 6926 Iowa Idaho 1973
#> 6927 North Dakota Arkansas 1973
#> 6928 Rhode Island Massachusetts 1973
#> 6929 Arizona Alabama 1973
#> 6930 Rhode Island Wisconsin 1973
#> 6931 Indiana West Virginia 1973
#> 6932 Alabama North Dakota 1973
#> 6933 Wisconsin New York 1973
#> 6934 South Dakota Michigan 1973
#> 6935 Louisiana Nevada 1973
#> 6936 Georgia Montana 1973
#> 6937 Alaska Illinois 1973
#> 6938 Hawaii Oklahoma 1973
#> 6939 Louisiana Utah 1973
#> 6940 Alaska South Dakota 1973
#> 6941 West Virginia Georgia 1973
#> 6942 Oregon Arizona 1973
#> 6943 Mississippi North Carolina 1973
#> 6944 Minnesota Massachusetts 1973
#> 6945 North Dakota Indiana 1973
#> 6946 Kentucky Vermont 1973
#> 6947 New Jersey Illinois 1973
#> 6948 New Mexico Oklahoma 1973
#> 6949 Nevada Virginia 1973
#> 6950 Utah Idaho 1973
#> 6951 South Carolina Connecticut 1973
#> 6952 Missouri North Carolina 1973
#> 6953 Nebraska Wisconsin 1973
#> 6954 South Carolina Vermont 1973
#> 6955 Wisconsin Vermont 1973
#> 6956 Kansas Oregon 1973
#> 6957 Massachusetts Oregon 1973
#> 6958 California North Dakota 1973
#> 6959 Louisiana North Dakota 1973
#> 6960 Virginia New York 1973
#> 6961 Tennessee Iowa 1973
#> 6962 Vermont Hawaii 1973
#> 6963 Alaska Delaware 1973
#> 6964 Idaho Alaska 1973
#> 6965 Mississippi Colorado 1973
#> 6966 Oregon California 1973
#> 6967 North Dakota Virginia 1973
#> 6968 Georgia Utah 1973
#> 6969 South Carolina South Dakota 1973
#> 6970 North Dakota Nebraska 1973
#> 6971 Georgia Idaho 1973
#> 6972 Louisiana Idaho 1973
#> 6973 Wisconsin Connecticut 1973
#> 6974 Alabama Arizona 1973
#> 6975 South Carolina Tennessee 1973
#> 6976 Massachusetts Tennessee 1973
#> 6977 Maryland Massachusetts 1973
#> 6978 Louisiana Massachusetts 1973
#> 6979 South Dakota West Virginia 1973
#> 6980 Massachusetts New York 1973
#> 6981 Minnesota Iowa 1973
#> 6982 Utah Alaska 1973
#> 6983 South Carolina New Hampshire 1973
#> 6984 California Montana 1973
#> 6985 Delaware Montana 1973
#> 6986 Wyoming Illinois 1973
#> 6987 Illinois Mississippi 1973
#> 6988 Idaho California 1973
#> 6989 Minnesota Utah 1973
#> 6990 Oregon Connecticut 1973
#> 6991 Oklahoma Wyoming 1973
#> 6992 Arkansas North Carolina 1973
#> 6993 South Carolina Massachusetts 1973
#> 6994 Alaska Massachusetts 1973
#> 6995 Nebraska Louisiana 1973
#> 6996 Nevada Wisconsin 1973
#> 6997 South Carolina New York 1973
#> 6998 Delaware New Mexico 1973
#> 6999 Florida Maine 1973
#> 7000 South Dakota Hawaii 1973
#> 7001 New York Oregon 1974
#> 7002 New York Pennsylvania 1974
#> 7003 New York Connecticut 1974
#> 7004 New York Michigan 1974
#> 7005 New York New Hampshire 1974
#> 7006 New York Maine 1974
#> 7007 New York New Jersey 1974
#> 7008 New York Nebraska 1974
#> 7009 New York Maryland 1974
#> 7010 New York Minnesota 1974
#> 7011 New York Illinois 1974
#> 7012 New York Florida 1974
#> 7013 New York Indiana 1974
#> 7014 New York Rhode Island 1974
#> 7015 New York Massachusetts 1974
#> 7016 Rhode Island Kentucky 1974
#> 7017 New York Washington 1974
#> 7018 New York North Carolina 1974
#> 7019 New York Delaware 1974
#> 7020 New York California 1974
#> 7021 New York West Virginia 1974
#> 7022 Colorado Kansas 1974
#> 7023 North Carolina Virginia 1974
#> 7024 New York Colorado 1974
#> 7025 New York Oklahoma 1974
#> 7026 Colorado Georgia 1974
#> 7027 New York New Mexico 1974
#> 7028 New York Ohio 1974
#> 7029 New York Nevada 1974
#> 7030 New York Vermont 1974
#> 7031 Florida Mississippi 1974
#> 7032 New York Idaho 1974
#> 7033 New York South Dakota 1974
#> 7034 New York Montana 1974
#> 7035 Ohio Texas 1974
#> 7036 Kentucky Arkansas 1974
#> 7037 California South Carolina 1974
#> 7038 Washington Wyoming 1974
#> 7039 New Jersey Iowa 1974
#> 7040 New York Tennessee 1974
#> 7041 Washington Missouri 1974
#> 7042 New York Wisconsin 1974
#> 7043 New York Arizona 1974
#> 7044 Delaware North Dakota 1974
#> 7045 Illinois Alabama 1974
#> 7046 Indiana Louisiana 1974
#> 7047 New Jersey New York 1974
#> 7048 New York Alaska 1974
#> 7049 California Hawaii 1974
#> 7050 New York Utah 1974
#> 7051 Washington Arkansas 1974
#> 7052 California Washington 1974
#> 7053 Idaho Colorado 1974
#> 7054 California Maryland 1974
#> 7055 Utah Montana 1974
#> 7056 Mississippi New Mexico 1974
#> 7057 Colorado Pennsylvania 1974
#> 7058 New Mexico New Hampshire 1974
#> 7059 Wisconsin Rhode Island 1974
#> 7060 South Dakota North Carolina 1974
#> 7061 California Oregon 1974
#> 7062 Connecticut New York 1974
#> 7063 California Kentucky 1974
#> 7064 New York Kansas 1974
#> 7065 New Mexico North Dakota 1974
#> 7066 Mississippi Arizona 1974
#> 7067 Colorado Florida 1974
#> 7068 Arkansas Alabama 1974
#> 7069 Arkansas Texas 1974
#> 7070 South Carolina Idaho 1974
#> 7071 Colorado Minnesota 1974
#> 7072 Rhode Island Wyoming 1974
#> 7073 California Indiana 1974
#> 7074 California Delaware 1974
#> 7075 Iowa Nebraska 1974
#> 7076 New York Virginia 1974
#> 7077 Illinois Massachusetts 1974
#> 7078 Rhode Island Connecticut 1974
#> 7079 Colorado New Jersey 1974
#> 7080 Nebraska Georgia 1974
#> 7081 New Mexico Nevada 1974
#> 7082 Wisconsin Vermont 1974
#> 7083 Florida Louisiana 1974
#> 7084 Nebraska Tennessee 1974
#> 7085 New Mexico Iowa 1974
#> 7086 Louisiana Wisconsin 1974
#> 7087 Louisiana Oklahoma 1974
#> 7088 Colorado Ohio 1974
#> 7089 Arkansas Kansas 1974
#> 7090 California Michigan 1974
#> 7091 Rhode Island Missouri 1974
#> 7092 California North Carolina 1974
#> 7093 New Jersey South Carolina 1974
#> 7094 Kentucky Maine 1974
#> 7095 California New Mexico 1974
#> 7096 New Mexico Mississippi 1974
#> 7097 Maine South Dakota 1974
#> 7098 Michigan Delaware 1974
#> 7099 New York Hawaii 1974
#> 7100 California New York 1974
#> 7101 Minnesota Illinois 1974
#> 7102 Kentucky Colorado 1974
#> 7103 California Arizona 1974
#> 7104 Arkansas California 1974
#> 7105 New York Texas 1974
#> 7106 Rhode Island Washington 1974
#> 7107 Arizona West Virginia 1974
#> 7108 Vermont Indiana 1974
#> 7109 Ohio Rhode Island 1974
#> 7110 Illinois Montana 1974
#> 7111 Nevada Utah 1974
#> 7112 Kentucky Alabama 1974
#> 7113 Alabama Florida 1974
#> 7114 Colorado Maryland 1974
#> 7115 Rhode Island Louisiana 1974
#> 7116 Connecticut Vermont 1974
#> 7117 Kentucky Tennessee 1974
#> 7118 Arizona North Dakota 1974
#> 7119 Delaware Iowa 1974
#> 7120 South Dakota Nebraska 1974
#> 7121 California Pennsylvania 1974
#> 7122 Connecticut Virginia 1974
#> 7123 Florida Arkansas 1974
#> 7124 Oregon Montana 1974
#> 7125 Wisconsin Colorado 1974
#> 7126 Kentucky North Carolina 1974
#> 7127 New Mexico Oklahoma 1974
#> 7128 Illinois Minnesota 1974
#> 7129 Illinois New Jersey 1974
#> 7130 Oklahoma Kentucky 1974
#> 7131 Wisconsin Maine 1974
#> 7132 Vermont Illinois 1974
#> 7133 Illinois California 1974
#> 7134 Louisiana New Mexico 1974
#> 7135 New Jersey Rhode Island 1974
#> 7136 Arkansas Connecticut 1974
#> 7137 New Mexico Kansas 1974
#> 7138 Arkansas Alaska 1974
#> 7139 Florida Wyoming 1974
#> 7140 Arkansas New Hampshire 1974
#> 7141 Florida Nevada 1974
#> 7142 Florida South Carolina 1974
#> 7143 New Jersey Idaho 1974
#> 7144 Rhode Island Oregon 1974
#> 7145 Connecticut New Jersey 1974
#> 7146 Kentucky Ohio 1974
#> 7147 Arkansas Louisiana 1974
#> 7148 Illinois Florida 1974
#> 7149 California Arkansas 1974
#> 7150 Kentucky Delaware 1974
#> 7151 Florida South Dakota 1974
#> 7152 Nevada West Virginia 1974
#> 7153 Ohio Massachusetts 1974
#> 7154 South Carolina Utah 1974
#> 7155 Pennsylvania New York 1974
#> 7156 California Georgia 1974
#> 7157 Kentucky Florida 1974
#> 7158 Washington New Mexico 1974
#> 7159 Nevada Washington 1974
#> 7160 Delaware Alabama 1974
#> 7161 New Jersey Michigan 1974
#> 7162 Alaska Connecticut 1974
#> 7163 Illinois North Carolina 1974
#> 7164 Vermont Wyoming 1974
#> 7165 Connecticut New Hampshire 1974
#> 7166 Arkansas Montana 1974
#> 7167 Alaska New York 1974
#> 7168 Maine Iowa 1974
#> 7169 Florida Nebraska 1974
#> 7170 Minnesota Missouri 1974
#> 7171 Oregon Delaware 1974
#> 7172 Illinois Indiana 1974
#> 7173 Minnesota California 1974
#> 7174 Kentucky Texas 1974
#> 7175 New Jersey Minnesota 1974
#> 7176 Oregon Alabama 1974
#> 7177 Minnesota Tennessee 1974
#> 7178 Oregon Vermont 1974
#> 7179 California New Jersey 1974
#> 7180 Illinois West Virginia 1974
#> 7181 Florida Arizona 1974
#> 7182 Michigan North Dakota 1974
#> 7183 Illinois Idaho 1974
#> 7184 Vermont Connecticut 1974
#> 7185 Kentucky Vermont 1974
#> 7186 Kentucky Utah 1974
#> 7187 Illinois New York 1974
#> 7188 California Utah 1974
#> 7189 Utah New Mexico 1974
#> 7190 Missouri Ohio 1974
#> 7191 New Jersey Oregon 1974
#> 7192 Minnesota New York 1974
#> 7193 Kentucky Maryland 1974
#> 7194 New Mexico Hawaii 1974
#> 7195 Illinois Wisconsin 1974
#> 7196 Arkansas Mississippi 1974
#> 7197 Minnesota Colorado 1974
#> 7198 New Hampshire Kentucky 1974
#> 7199 Michigan South Carolina 1974
#> 7200 Illinois Colorado 1974
#> 7201 Tennessee Georgia 1974
#> 7202 Wisconsin Nevada 1974
#> 7203 Louisiana Texas 1974
#> 7204 Illinois Hawaii 1974
#> 7205 New Jersey Massachusetts 1974
#> 7206 Arkansas Rhode Island 1974
#> 7207 Indiana Arkansas 1974
#> 7208 Rhode Island California 1974
#> 7209 Minnesota New Jersey 1974
#> 7210 Washington Illinois 1974
#> 7211 Florida Virginia 1974
#> 7212 Maryland Kentucky 1974
#> 7213 Wyoming Maine 1974
#> 7214 Nevada Mississippi 1974
#> 7215 Hawaii Oregon 1974
#> 7216 Arkansas Iowa 1974
#> 7217 Maryland Oklahoma 1974
#> 7218 Arkansas Idaho 1974
#> 7219 Connecticut Massachusetts 1974
#> 7220 Vermont West Virginia 1974
#> 7221 Wisconsin Kansas 1974
#> 7222 Arkansas Delaware 1974
#> 7223 New Hampshire Tennessee 1974
#> 7224 Louisiana Alaska 1974
#> 7225 Missouri Mississippi 1974
#> 7226 Washington Pennsylvania 1974
#> 7227 Oklahoma South Dakota 1974
#> 7228 Missouri Michigan 1974
#> 7229 Mississippi Montana 1974
#> 7230 Nevada Nebraska 1974
#> 7231 South Dakota Wisconsin 1974
#> 7232 Florida Washington 1974
#> 7233 Idaho Maryland 1974
#> 7234 Louisiana Pennsylvania 1974
#> 7235 Alaska Colorado 1974
#> 7236 Alabama North Carolina 1974
#> 7237 New Mexico Massachusetts 1974
#> 7238 New Mexico Alabama 1974
#> 7239 Washington North Dakota 1974
#> 7240 Wisconsin New Mexico 1974
#> 7241 Missouri South Carolina 1974
#> 7242 Mississippi Oklahoma 1974
#> 7243 Arkansas Missouri 1974
#> 7244 New Jersey Connecticut 1974
#> 7245 Maine Michigan 1974
#> 7246 Wisconsin Illinois 1974
#> 7247 Iowa Indiana 1974
#> 7248 Delaware Wyoming 1974
#> 7249 Idaho Minnesota 1974
#> 7250 Washington Wisconsin 1974
#> 7251 Missouri Minnesota 1974
#> 7252 Louisiana Illinois 1974
#> 7253 Delaware Nebraska 1974
#> 7254 West Virginia Maryland 1974
#> 7255 Pennsylvania Alaska 1974
#> 7256 Missouri Vermont 1974
#> 7257 North Carolina Maine 1974
#> 7258 Kentucky South Dakota 1974
#> 7259 Illinois New Hampshire 1974
#> 7260 California Ohio 1974
#> 7261 Maryland Virginia 1974
#> 7262 New Mexico Rhode Island 1974
#> 7263 North Carolina Minnesota 1974
#> 7264 Missouri Kansas 1974
#> 7265 Pennsylvania Texas 1974
#> 7266 Maine Nevada 1974
#> 7267 Arizona Idaho 1974
#> 7268 California Rhode Island 1974
#> 7269 Illinois Vermont 1974
#> 7270 Oregon Ohio 1974
#> 7271 Tennessee Arkansas 1974
#> 7272 Maryland New Jersey 1974
#> 7273 Kentucky Georgia 1974
#> 7274 Louisiana Tennessee 1974
#> 7275 West Virginia Missouri 1974
#> 7276 New York Louisiana 1974
#> 7277 Delaware Arkansas 1974
#> 7278 North Dakota Wyoming 1974
#> 7279 Indiana Wisconsin 1974
#> 7280 Virginia Oregon 1974
#> 7281 Maine New Mexico 1974
#> 7282 Idaho Kansas 1974
#> 7283 Rhode Island New York 1974
#> 7284 Tennessee North Carolina 1974
#> 7285 South Carolina Michigan 1974
#> 7286 Wisconsin Hawaii 1974
#> 7287 Nevada Rhode Island 1974
#> 7288 Kansas Alaska 1974
#> 7289 New Mexico Connecticut 1974
#> 7290 Minnesota Arizona 1974
#> 7291 Texas Arkansas 1974
#> 7292 Rhode Island Wisconsin 1974
#> 7293 Illinois Rhode Island 1974
#> 7294 Kansas Washington 1974
#> 7295 Missouri Florida 1974
#> 7296 Oklahoma Colorado 1974
#> 7297 California Vermont 1974
#> 7298 Massachusetts Illinois 1974
#> 7299 Colorado Utah 1974
#> 7300 Wisconsin Indiana 1974
#> 7301 Maine North Dakota 1974
#> 7302 Mississippi California 1974
#> 7303 New York Wyoming 1974
#> 7304 Pennsylvania Rhode Island 1974
#> 7305 New Hampshire New York 1974
#> 7306 Illinois Maine 1974
#> 7307 Wisconsin Massachusetts 1974
#> 7308 Delaware Massachusetts 1974
#> 7309 Missouri Wisconsin 1974
#> 7310 Vermont New York 1974
#> 7311 Maine Idaho 1974
#> 7312 Massachusetts Michigan 1974
#> 7313 Massachusetts Florida 1974
#> 7314 Virginia Utah 1974
#> 7315 South Carolina Maine 1974
#> 7316 Michigan Washington 1974
#> 7317 Kansas Ohio 1974
#> 7318 North Dakota Minnesota 1974
#> 7319 Colorado Oklahoma 1974
#> 7320 Hawaii New Jersey 1974
#> 7321 Delaware California 1974
#> 7322 Hawaii Vermont 1974
#> 7323 Washington New York 1974
#> 7324 Idaho Arizona 1974
#> 7325 Arkansas North Dakota 1974
#> 7326 Alaska Iowa 1974
#> 7327 North Dakota Iowa 1974
#> 7328 Massachusetts New Hampshire 1974
#> 7329 Arkansas Colorado 1974
#> 7330 Wisconsin Georgia 1974
#> 7331 North Dakota New York 1974
#> 7332 Nevada Hawaii 1974
#> 7333 North Carolina Nevada 1974
#> 7334 Illinois Georgia 1974
#> 7335 Colorado Vermont 1974
#> 7336 Florida Texas 1974
#> 7337 Oklahoma Georgia 1974
#> 7338 Maryland Pennsylvania 1974
#> 7339 Florida Oklahoma 1974
#> 7340 Missouri Nebraska 1974
#> 7341 South Carolina Nevada 1974
#> 7342 Florida Connecticut 1974
#> 7343 Maryland Indiana 1974
#> 7344 Maryland South Carolina 1974
#> 7345 Oregon Alaska 1974
#> 7346 Tennessee Illinois 1974
#> 7347 New Hampshire Delaware 1974
#> 7348 New Hampshire Hawaii 1974
#> 7349 Maryland Washington 1974
#> 7350 South Carolina Wyoming 1974
#> 7351 Wyoming Vermont 1974
#> 7352 Pennsylvania Oklahoma 1974
#> 7353 Maryland California 1974
#> 7354 New York Kentucky 1974
#> 7355 New Mexico Maine 1974
#> 7356 Delaware Idaho 1974
#> 7357 North Carolina Georgia 1974
#> 7358 Maryland New Hampshire 1974
#> 7359 California Illinois 1974
#> 7360 Pennsylvania Virginia 1974
#> 7361 Mississippi Nebraska 1974
#> 7362 California Massachusetts 1974
#> 7363 Wisconsin Michigan 1974
#> 7364 Louisiana Montana 1974
#> 7365 Massachusetts Washington 1974
#> 7366 Illinois Ohio 1974
#> 7367 Pennsylvania Maryland 1974
#> 7368 Rhode Island North Carolina 1974
#> 7369 Vermont Kentucky 1974
#> 7370 New Hampshire Oregon 1974
#> 7371 Texas Massachusetts 1974
#> 7372 Massachusetts Connecticut 1974
#> 7373 New Hampshire Louisiana 1974
#> 7374 Oregon Wisconsin 1974
#> 7375 Oregon North Dakota 1974
#> 7376 Montana New Mexico 1974
#> 7377 Kentucky Minnesota 1974
#> 7378 Minnesota Maine 1974
#> 7379 South Dakota Mississippi 1974
#> 7380 Florida Georgia 1974
#> 7381 Virginia Connecticut 1974
#> 7382 Arizona Arkansas 1974
#> 7383 Michigan Arizona 1974
#> 7384 New Jersey Wyoming 1974
#> 7385 Florida Indiana 1974
#> 7386 Massachusetts Kansas 1974
#> 7387 Tennessee South Carolina 1974
#> 7388 New Hampshire Pennsylvania 1974
#> 7389 New Jersey Montana 1974
#> 7390 Louisiana South Dakota 1974
#> 7391 Virginia Kansas 1974
#> 7392 Kentucky West Virginia 1974
#> 7393 Georgia Vermont 1974
#> 7394 Connecticut Oregon 1974
#> 7395 Colorado Michigan 1974
#> 7396 Kansas Illinois 1974
#> 7397 Utah Florida 1974
#> 7398 North Dakota Maryland 1974
#> 7399 Alaska North Carolina 1974
#> 7400 Arizona Louisiana 1974
#> 7401 Maine Indiana 1974
#> 7402 Oregon West Virginia 1974
#> 7403 California Iowa 1974
#> 7404 New Jersey Hawaii 1974
#> 7405 Minnesota New Hampshire 1974
#> 7406 Wisconsin New Jersey 1974
#> 7407 Colorado Massachusetts 1974
#> 7408 Michigan Kentucky 1974
#> 7409 Florida West Virginia 1974
#> 7410 Oregon Minnesota 1974
#> 7411 Minnesota Delaware 1974
#> 7412 Delaware Illinois 1974
#> 7413 North Dakota Colorado 1974
#> 7414 Michigan California 1974
#> 7415 Ohio Utah 1974
#> 7416 Ohio Kansas 1974
#> 7417 Kentucky Kansas 1974
#> 7418 New Jersey Pennsylvania 1974
#> 7419 Virginia New Mexico 1974
#> 7420 Rhode Island Maryland 1974
#> 7421 Michigan Illinois 1974
#> 7422 Minnesota Washington 1974
#> 7423 Kentucky Nebraska 1974
#> 7424 Nevada Idaho 1974
#> 7425 New Jersey Arizona 1974
#> 7426 Tennessee Missouri 1974
#> 7427 Pennsylvania Massachusetts 1974
#> 7428 Pennsylvania Alabama 1974
#> 7429 Kansas New York 1974
#> 7430 South Dakota Iowa 1974
#> 7431 Delaware New Hampshire 1974
#> 7432 Oregon Connecticut 1974
#> 7433 Oregon New Mexico 1974
#> 7434 Louisiana Utah 1974
#> 7435 Rhode Island Ohio 1974
#> 7436 Nebraska Kentucky 1974
#> 7437 Louisiana Nevada 1974
#> 7438 Hawaii Oklahoma 1974
#> 7439 Vermont Mississippi 1974
#> 7440 Hawaii Florida 1974
#> 7441 Mississippi Colorado 1974
#> 7442 New Mexico California 1974
#> 7443 New Jersey South Dakota 1974
#> 7444 Wisconsin Idaho 1974
#> 7445 South Dakota Louisiana 1974
#> 7446 Arizona Alabama 1974
#> 7447 Delaware Rhode Island 1974
#> 7448 Alabama North Dakota 1974
#> 7449 Wisconsin New York 1974
#> 7450 South Dakota Michigan 1974
#> 7451 Kansas Hawaii 1974
#> 7452 Georgia Montana 1974
#> 7453 Delaware Montana 1974
#> 7454 Alaska South Dakota 1974
#> 7455 Alabama Arkansas 1974
#> 7456 North Dakota Arkansas 1974
#> 7457 Arkansas Tennessee 1974
#> 7458 Mississippi North Carolina 1974
#> 7459 Arkansas North Carolina 1974
#> 7460 Minnesota Massachusetts 1974
#> 7461 North Dakota Indiana 1974
#> 7462 Alaska North Dakota 1974
#> 7463 Missouri Iowa 1974
#> 7464 Nevada Montana 1974
#> 7465 New Jersey Illinois 1974
#> 7466 Wyoming Illinois 1974
#> 7467 Indiana Florida 1974
#> 7468 Connecticut Utah 1974
#> 7469 North Dakota Nebraska 1974
#> 7470 South Carolina Maryland 1974
#> 7471 Florida Idaho 1974
#> 7472 Louisiana Idaho 1974
#> 7473 North Dakota Idaho 1974
#> 7474 North Carolina Arizona 1974
#> 7475 Missouri North Carolina 1974
#> 7476 Maryland Massachusetts 1974
#> 7477 Oklahoma Indiana 1974
#> 7478 Vermont Wisconsin 1974
#> 7479 South Dakota West Virginia 1974
#> 7480 California North Dakota 1974
#> 7481 Louisiana North Dakota 1974
#> 7482 Virginia New York 1974
#> 7483 Vermont Hawaii 1974
#> 7484 Idaho Alaska 1974
#> 7485 Oregon California 1974
#> 7486 North Dakota Virginia 1974
#> 7487 Florida Utah 1974
#> 7488 South Carolina South Dakota 1974
#> 7489 North Carolina South Dakota 1974
#> 7490 Illinois Connecticut 1974
#> 7491 Wisconsin Connecticut 1974
#> 7492 Alabama Arizona 1974
#> 7493 South Carolina Tennessee 1974
#> 7494 Massachusetts Tennessee 1974
#> 7495 Louisiana Massachusetts 1974
#> 7496 Nebraska Louisiana 1974
#> 7497 Montana Indiana 1974
#> 7498 Massachusetts New York 1974
#> 7499 California Minnesota 1974
#> 7500 Minnesota Iowa 1974
#> 7501 New York Oregon 1975
#> 7502 New York Pennsylvania 1975
#> 7503 New York Connecticut 1975
#> 7504 New York Michigan 1975
#> 7505 New York Maine 1975
#> 7506 New York New Hampshire 1975
#> 7507 Massachusetts Minnesota 1975
#> 7508 New York Illinois 1975
#> 7509 Oregon Kentucky 1975
#> 7510 New York Rhode Island 1975
#> 7511 New York Nebraska 1975
#> 7512 New York New Jersey 1975
#> 7513 New York Florida 1975
#> 7514 New York Maryland 1975
#> 7515 New York Indiana 1975
#> 7516 New York Ohio 1975
#> 7517 New York California 1975
#> 7518 New York Massachusetts 1975
#> 7519 New York Delaware 1975
#> 7520 New York Washington 1975
#> 7521 New York North Carolina 1975
#> 7522 New York Oklahoma 1975
#> 7523 Washington Kansas 1975
#> 7524 New York West Virginia 1975
#> 7525 New York Colorado 1975
#> 7526 North Carolina Virginia 1975
#> 7527 Florida Mississippi 1975
#> 7528 New York Vermont 1975
#> 7529 New York Nevada 1975
#> 7530 New York Montana 1975
#> 7531 Colorado Georgia 1975
#> 7532 New York Idaho 1975
#> 7533 New York New Mexico 1975
#> 7534 New York South Dakota 1975
#> 7535 Ohio Texas 1975
#> 7536 New Jersey Iowa 1975
#> 7537 New York Tennessee 1975
#> 7538 California Arkansas 1975
#> 7539 California South Carolina 1975
#> 7540 Washington Wyoming 1975
#> 7541 Washington Missouri 1975
#> 7542 New York Wisconsin 1975
#> 7543 New York Arizona 1975
#> 7544 Colorado Louisiana 1975
#> 7545 Delaware North Dakota 1975
#> 7546 Massachusetts New York 1975
#> 7547 Illinois Alabama 1975
#> 7548 California Hawaii 1975
#> 7549 New York Alaska 1975
#> 7550 New York Utah 1975
#> 7551 Utah Montana 1975
#> 7552 New Mexico New Hampshire 1975
#> 7553 California Maryland 1975
#> 7554 Wisconsin Rhode Island 1975
#> 7555 California Washington 1975
#> 7556 Colorado Pennsylvania 1975
#> 7557 Idaho Colorado 1975
#> 7558 Kentucky Arkansas 1975
#> 7559 California New Mexico 1975
#> 7560 Indiana Kentucky 1975
#> 7561 South Dakota North Carolina 1975
#> 7562 California New York 1975
#> 7563 Rhode Island Minnesota 1975
#> 7564 California Oregon 1975
#> 7565 Colorado Kansas 1975
#> 7566 Iowa Nebraska 1975
#> 7567 New Mexico North Dakota 1975
#> 7568 Colorado Florida 1975
#> 7569 Colorado New Jersey 1975
#> 7570 North Carolina Indiana 1975
#> 7571 Rhode Island Wyoming 1975
#> 7572 Florida Virginia 1975
#> 7573 New Mexico Texas 1975
#> 7574 California Delaware 1975
#> 7575 Mississippi Arizona 1975
#> 7576 Nebraska Tennessee 1975
#> 7577 Illinois Massachusetts 1975
#> 7578 Arkansas Alabama 1975
#> 7579 Arkansas Louisiana 1975
#> 7580 Rhode Island Connecticut 1975
#> 7581 New Mexico Iowa 1975
#> 7582 Nebraska Georgia 1975
#> 7583 South Carolina Idaho 1975
#> 7584 Colorado Ohio 1975
#> 7585 New Mexico Nevada 1975
#> 7586 Wisconsin Vermont 1975
#> 7587 Florida South Carolina 1975
#> 7588 Florida Arkansas 1975
#> 7589 Minnesota Illinois 1975
#> 7590 New Mexico Oklahoma 1975
#> 7591 California Michigan 1975
#> 7592 Rhode Island Missouri 1975
#> 7593 New York Hawaii 1975
#> 7594 California North Carolina 1975
#> 7595 New Jersey New York 1975
#> 7596 New Mexico Mississippi 1975
#> 7597 Maine South Dakota 1975
#> 7598 Montana Maine 1975
#> 7599 Illinois Montana 1975
#> 7600 Michigan Delaware 1975
#> 7601 Mississippi New Mexico 1975
#> 7602 Maine Iowa 1975
#> 7603 California Arizona 1975
#> 7604 Arkansas California 1975
#> 7605 Rhode Island Washington 1975
#> 7606 Arizona West Virginia 1975
#> 7607 Illinois Wisconsin 1975
#> 7608 Ohio Rhode Island 1975
#> 7609 California Pennsylvania 1975
#> 7610 Idaho Texas 1975
#> 7611 Wisconsin Colorado 1975
#> 7612 Nevada Utah 1975
#> 7613 Vermont Kentucky 1975
#> 7614 California Virginia 1975
#> 7615 Idaho Minnesota 1975
#> 7616 Alabama Florida 1975
#> 7617 Colorado Maryland 1975
#> 7618 Nevada Montana 1975
#> 7619 Connecticut Vermont 1975
#> 7620 North Carolina Louisiana 1975
#> 7621 Arizona North Dakota 1975
#> 7622 Alaska Connecticut 1975
#> 7623 Illinois North Carolina 1975
#> 7624 California Indiana 1975
#> 7625 Idaho Kansas 1975
#> 7626 South Dakota Nebraska 1975
#> 7627 Louisiana Oklahoma 1975
#> 7628 Michigan South Carolina 1975
#> 7629 Kentucky Alabama 1975
#> 7630 Utah New Mexico 1975
#> 7631 Illinois New Jersey 1975
#> 7632 Connecticut Massachusetts 1975
#> 7633 Vermont Oregon 1975
#> 7634 New Jersey Rhode Island 1975
#> 7635 Vermont Illinois 1975
#> 7636 Illinois Tennessee 1975
#> 7637 Illinois California 1975
#> 7638 Florida Nevada 1975
#> 7639 Illinois Arkansas 1975
#> 7640 Colorado Maine 1975
#> 7641 Arkansas Iowa 1975
#> 7642 Arkansas Delaware 1975
#> 7643 Arkansas Alaska 1975
#> 7644 Texas Kentucky 1975
#> 7645 Florida Wyoming 1975
#> 7646 Alabama Connecticut 1975
#> 7647 New York Kansas 1975
#> 7648 California Ohio 1975
#> 7649 Florida Nebraska 1975
#> 7650 Connecticut New Hampshire 1975
#> 7651 Connecticut New Jersey 1975
#> 7652 Indiana New York 1975
#> 7653 South Dakota Wisconsin 1975
#> 7654 Vermont Indiana 1975
#> 7655 Kentucky Colorado 1975
#> 7656 Colorado South Dakota 1975
#> 7657 Illinois Florida 1975
#> 7658 New Hampshire Delaware 1975
#> 7659 Wisconsin Idaho 1975
#> 7660 Vermont West Virginia 1975
#> 7661 Illinois Minnesota 1975
#> 7662 Florida Arizona 1975
#> 7663 California Georgia 1975
#> 7664 Nevada Washington 1975
#> 7665 Delaware Alabama 1975
#> 7666 Virginia Utah 1975
#> 7667 New Jersey Michigan 1975
#> 7668 Alabama Montana 1975
#> 7669 Washington New Mexico 1975
#> 7670 Vermont Wyoming 1975
#> 7671 Minnesota California 1975
#> 7672 Minnesota Colorado 1975
#> 7673 Pennsylvania Texas 1975
#> 7674 Washington Wisconsin 1975
#> 7675 Alaska New York 1975
#> 7676 New York Louisiana 1975
#> 7677 Minnesota Missouri 1975
#> 7678 Tennessee Arkansas 1975
#> 7679 Nevada Mississippi 1975
#> 7680 Connecticut New York 1975
#> 7681 New Mexico Kansas 1975
#> 7682 Connecticut Ohio 1975
#> 7683 New Mexico West Virginia 1975
#> 7684 Oregon Vermont 1975
#> 7685 Florida Massachusetts 1975
#> 7686 New Jersey Idaho 1975
#> 7687 Oregon Alabama 1975
#> 7688 Kentucky Tennessee 1975
#> 7689 Maryland Kentucky 1975
#> 7690 California New Jersey 1975
#> 7691 Rhode Island Maryland 1975
#> 7692 Wisconsin South Carolina 1975
#> 7693 Michigan North Dakota 1975
#> 7694 Louisiana Pennsylvania 1975
#> 7695 California Utah 1975
#> 7696 New Mexico Hawaii 1975
#> 7697 Louisiana New Mexico 1975
#> 7698 New Mexico Rhode Island 1975
#> 7699 Arkansas New Hampshire 1975
#> 7700 Wisconsin New Mexico 1975
#> 7701 Alaska Iowa 1975
#> 7702 Illinois Colorado 1975
#> 7703 Connecticut Virginia 1975
#> 7704 Tennessee Georgia 1975
#> 7705 Mississippi Maine 1975
#> 7706 Wisconsin Nevada 1975
#> 7707 Illinois Hawaii 1975
#> 7708 New Jersey Oregon 1975
#> 7709 Rhode Island California 1975
#> 7710 Florida Vermont 1975
#> 7711 Wisconsin North Carolina 1975
#> 7712 Minnesota New Jersey 1975
#> 7713 New Jersey Maine 1975
#> 7714 Idaho Nebraska 1975
#> 7715 Washington Illinois 1975
#> 7716 Washington Oklahoma 1975
#> 7717 Mississippi Texas 1975
#> 7718 Oregon Montana 1975
#> 7719 North Carolina Minnesota 1975
#> 7720 Alabama Maryland 1975
#> 7721 North Dakota Idaho 1975
#> 7722 New Jersey Massachusetts 1975
#> 7723 Missouri Mississippi 1975
#> 7724 Georgia Connecticut 1975
#> 7725 Illinois Indiana 1975
#> 7726 Kentucky North Carolina 1975
#> 7727 Delaware Massachusetts 1975
#> 7728 Vermont New York 1975
#> 7729 New Jersey Minnesota 1975
#> 7730 Illinois Idaho 1975
#> 7731 New Mexico Oregon 1975
#> 7732 Illinois New York 1975
#> 7733 Kentucky Texas 1975
#> 7734 Missouri Florida 1975
#> 7735 Missouri South Carolina 1975
#> 7736 Washington Pennsylvania 1975
#> 7737 Connecticut Tennessee 1975
#> 7738 Kentucky Michigan 1975
#> 7739 Wisconsin Massachusetts 1975
#> 7740 Florida Washington 1975
#> 7741 Alaska Colorado 1975
#> 7742 Nevada Arkansas 1975
#> 7743 New Mexico Alabama 1975
#> 7744 Washington North Dakota 1975
#> 7745 Washington New York 1975
#> 7746 Oregon Ohio 1975
#> 7747 Oregon Alaska 1975
#> 7748 North Dakota Kansas 1975
#> 7749 Colorado Rhode Island 1975
#> 7750 Wisconsin Illinois 1975
#> 7751 Oklahoma South Dakota 1975
#> 7752 New Jersey South Carolina 1975
#> 7753 Delaware Wyoming 1975
#> 7754 Arkansas Mississippi 1975
#> 7755 Connecticut Louisiana 1975
#> 7756 Kansas Utah 1975
#> 7757 Louisiana Illinois 1975
#> 7758 Washington South Dakota 1975
#> 7759 Texas Oklahoma 1975
#> 7760 Illinois Rhode Island 1975
#> 7761 Minnesota Tennessee 1975
#> 7762 Illinois New Hampshire 1975
#> 7763 New Jersey Florida 1975
#> 7764 South Dakota Missouri 1975
#> 7765 Utah Alaska 1975
#> 7766 California Rhode Island 1975
#> 7767 Maine Nevada 1975
#> 7768 Mississippi Nebraska 1975
#> 7769 Kansas Kentucky 1975
#> 7770 Kentucky Minnesota 1975
#> 7771 Illinois Vermont 1975
#> 7772 Hawaii Oregon 1975
#> 7773 Maryland New Jersey 1975
#> 7774 Illinois Michigan 1975
#> 7775 West Virginia Missouri 1975
#> 7776 Indiana Wisconsin 1975
#> 7777 Massachusetts Illinois 1975
#> 7778 Wisconsin Kansas 1975
#> 7779 Wyoming Maryland 1975
#> 7780 Maryland Indiana 1975
#> 7781 New Jersey Connecticut 1975
#> 7782 Kansas Alaska 1975
#> 7783 North Dakota Wyoming 1975
#> 7784 Maine New Mexico 1975
#> 7785 Wisconsin Hawaii 1975
#> 7786 Delaware Nebraska 1975
#> 7787 Pennsylvania Ohio 1975
#> 7788 Maryland Virginia 1975
#> 7789 New York Texas 1975
#> 7790 Mississippi California 1975
#> 7791 Minnesota Arizona 1975
#> 7792 Rhode Island Wisconsin 1975
#> 7793 Georgia Delaware 1975
#> 7794 Kentucky Ohio 1975
#> 7795 Illinois West Virginia 1975
#> 7796 Arizona Montana 1975
#> 7797 Kansas Washington 1975
#> 7798 Oklahoma Colorado 1975
#> 7799 Florida South Dakota 1975
#> 7800 California Vermont 1975
#> 7801 Oregon Delaware 1975
#> 7802 Delaware Arkansas 1975
#> 7803 Kentucky Vermont 1975
#> 7804 Maine North Dakota 1975
#> 7805 Arkansas Idaho 1975
#> 7806 New York Wyoming 1975
#> 7807 Colorado Vermont 1975
#> 7808 New Hampshire New York 1975
#> 7809 California Iowa 1975
#> 7810 Kentucky Utah 1975
#> 7811 Maryland Massachusetts 1975
#> 7812 Vermont Connecticut 1975
#> 7813 Oklahoma Georgia 1975
#> 7814 Ohio Vermont 1975
#> 7815 Delaware Rhode Island 1975
#> 7816 Ohio Oklahoma 1975
#> 7817 Florida Michigan 1975
#> 7818 Michigan Washington 1975
#> 7819 Oklahoma Indiana 1975
#> 7820 Hawaii New Jersey 1975
#> 7821 Delaware California 1975
#> 7822 Maine Idaho 1975
#> 7823 North Dakota Arkansas 1975
#> 7824 Colorado North Carolina 1975
#> 7825 North Dakota Louisiana 1975
#> 7826 Wisconsin Indiana 1975
#> 7827 Hawaii Vermont 1975
#> 7828 Arkansas Oregon 1975
#> 7829 South Dakota Hawaii 1975
#> 7830 Rhode Island New York 1975
#> 7831 Idaho Arizona 1975
#> 7832 Alaska North Dakota 1975
#> 7833 North Dakota Minnesota 1975
#> 7834 Kansas Ohio 1975
#> 7835 California Kentucky 1975
#> 7836 North Dakota Iowa 1975
#> 7837 Connecticut Colorado 1975
#> 7838 South Dakota Connecticut 1975
#> 7839 Massachusetts New Hampshire 1975
#> 7840 Arkansas Missouri 1975
#> 7841 New Mexico Florida 1975
#> 7842 Maryland Pennsylvania 1975
#> 7843 North Dakota New York 1975
#> 7844 North Dakota Maine 1975
#> 7845 Nevada Hawaii 1975
#> 7846 Maryland California 1975
#> 7847 Illinois Georgia 1975
#> 7848 North Carolina Nevada 1975
#> 7849 Pennsylvania Michigan 1975
#> 7850 Louisiana Alaska 1975
#> 7851 Maryland Kansas 1975
#> 7852 West Virginia Maryland 1975
#> 7853 Florida Louisiana 1975
#> 7854 Pennsylvania Rhode Island 1975
#> 7855 New Jersey Hawaii 1975
#> 7856 South Carolina Nevada 1975
#> 7857 Louisiana Tennessee 1975
#> 7858 Pennsylvania Maine 1975
#> 7859 Florida Connecticut 1975
#> 7860 Kentucky Maryland 1975
#> 7861 Tennessee Illinois 1975
#> 7862 Florida Utah 1975
#> 7863 Maryland Washington 1975
#> 7864 South Carolina Wyoming 1975
#> 7865 West Virginia Kentucky 1975
#> 7866 Oregon Minnesota 1975
#> 7867 Connecticut Michigan 1975
#> 7868 Virginia Colorado 1975
#> 7869 New Hampshire Hawaii 1975
#> 7870 North Carolina Georgia 1975
#> 7871 Mississippi West Virginia 1975
#> 7872 Kansas Mississippi 1975
#> 7873 Arkansas Vermont 1975
#> 7874 Montana Michigan 1975
#> 7875 Maryland New Hampshire 1975
#> 7876 California Illinois 1975
#> 7877 Pennsylvania Virginia 1975
#> 7878 North Carolina South Carolina 1975
#> 7879 Massachusetts Washington 1975
#> 7880 Pennsylvania Maryland 1975
#> 7881 Oregon Wisconsin 1975
#> 7882 Wisconsin New York 1975
#> 7883 Minnesota Kansas 1975
#> 7884 New Hampshire North Carolina 1975
#> 7885 Tennessee Alabama 1975
#> 7886 Montana New Mexico 1975
#> 7887 Wisconsin Michigan 1975
#> 7888 Ohio Utah 1975
#> 7889 Mississippi Idaho 1975
#> 7890 New Jersey Pennsylvania 1975
#> 7891 California Massachusetts 1975
#> 7892 Oregon North Dakota 1975
#> 7893 Oregon Iowa 1975
#> 7894 New Jersey Montana 1975
#> 7895 Florida Oklahoma 1975
#> 7896 Florida Georgia 1975
#> 7897 Michigan Arizona 1975
#> 7898 New Jersey Wyoming 1975
#> 7899 Pennsylvania Massachusetts 1975
#> 7900 Minnesota Maine 1975
#> 7901 Kentucky South Dakota 1975
#> 7902 Missouri Kansas 1975
#> 7903 Arkansas Pennsylvania 1975
#> 7904 Florida Indiana 1975
#> 7905 Illinois Oklahoma 1975
#> 7906 Virginia Connecticut 1975
#> 7907 Mississippi North Carolina 1975
#> 7908 Connecticut Oregon 1975
#> 7909 Mississippi Montana 1975
#> 7910 Kansas Illinois 1975
#> 7911 North Dakota Colorado 1975
#> 7912 Arkansas Rhode Island 1975
#> 7913 Pennsylvania Alaska 1975
#> 7914 Florida Texas 1975
#> 7915 Minnesota New Hampshire 1975
#> 7916 Wisconsin New Jersey 1975
#> 7917 Rhode Island North Carolina 1975
#> 7918 Missouri Wisconsin 1975
#> 7919 Delaware Illinois 1975
#> 7920 Utah Florida 1975
#> 7921 Colorado California 1975
#> 7922 Michigan California 1975
#> 7923 New York Virginia 1975
#> 7924 South Carolina Utah 1975
#> 7925 Kansas Nebraska 1975
#> 7926 Ohio Kansas 1975
#> 7927 Tennessee South Carolina 1975
#> 7928 Arizona Louisiana 1975
#> 7929 Virginia New Mexico 1975
#> 7930 Colorado Minnesota 1975
#> 7931 South Dakota Iowa 1975
#> 7932 Minnesota Delaware 1975
#> 7933 Michigan Illinois 1975
#> 7934 Minnesota Washington 1975
#> 7935 South Dakota Mississippi 1975
#> 7936 Kentucky Nebraska 1975
#> 7937 Pennsylvania Alabama 1975
#> 7938 Kansas New York 1975
#> 7939 Alaska Delaware 1975
#> 7940 Delaware New Hampshire 1975
#> 7941 Delaware Idaho 1975
#> 7942 Oregon Connecticut 1975
#> 7943 Alaska North Carolina 1975
#> 7944 Colorado Massachusetts 1975
#> 7945 Oregon New Mexico 1975
#> 7946 Kentucky Delaware 1975
#> 7947 Michigan Louisiana 1975
#> 7948 Nebraska Oklahoma 1975
#> 7949 North Dakota Virginia 1975
#> 7950 Rhode Island South Dakota 1975
#> 7951 Virginia Kansas 1975
#> 7952 Alabama Arkansas 1975
#> 7953 South Dakota Arizona 1975
#> 7954 Massachusetts Tennessee 1975
#> 7955 Oregon Massachusetts 1975
#> 7956 North Dakota Indiana 1975
#> 7957 Louisiana Nevada 1975
#> 7958 Illinois Mississippi 1975
#> 7959 Vermont Mississippi 1975
#> 7960 New Mexico California 1975
#> 7961 Alabama Utah 1975
#> 7962 Nebraska Idaho 1975
#> 7963 Tennessee North Carolina 1975
#> 7964 Arizona Alabama 1975
#> 7965 Louisiana Wisconsin 1975
#> 7966 Oregon West Virginia 1975
#> 7967 South Dakota Oregon 1975
#> 7968 Alabama North Dakota 1975
#> 7969 Kansas Hawaii 1975
#> 7970 Utah New Jersey 1975
#> 7971 Hawaii Oklahoma 1975
#> 7972 Indiana Florida 1975
#> 7973 Alaska South Dakota 1975
#> 7974 North Dakota Nebraska 1975
#> 7975 South Carolina Maryland 1975
#> 7976 Arkansas North Carolina 1975
#> 7977 Minnesota Massachusetts 1975
#> 7978 South Dakota West Virginia 1975
#> 7979 Kansas Oregon 1975
#> 7980 California Minnesota 1975
#> 7981 Louisiana Montana 1975
#> 7982 New Jersey Illinois 1975
#> 7983 Wyoming Illinois 1975
#> 7984 Hawaii Florida 1975
#> 7985 Mississippi Colorado 1975
#> 7986 Montana Ohio 1975
#> 7987 Florida Idaho 1975
#> 7988 Nevada Georgia 1975
#> 7989 North Carolina Arizona 1975
#> 7990 South Carolina Tennessee 1975
#> 7991 Maine Indiana 1975
#> 7992 Vermont Wisconsin 1975
#> 7993 California North Dakota 1975
#> 7994 Louisiana North Dakota 1975
#> 7995 Virginia New York 1975
#> 7996 South Carolina Michigan 1975
#> 7997 Minnesota Iowa 1975
#> 7998 Vermont Hawaii 1975
#> 7999 Idaho Alaska 1975
#> 8000 Oregon California 1975
#> 8001 New York Oregon 1976
#> 8002 New York Pennsylvania 1976
#> 8003 New York Maine 1976
#> 8004 New York Connecticut 1976
#> 8005 New York Michigan 1976
#> 8006 New York New Hampshire 1976
#> 8007 New York Minnesota 1976
#> 8008 New York Rhode Island 1976
#> 8009 New York Illinois 1976
#> 8010 Oregon Kentucky 1976
#> 8011 New York Indiana 1976
#> 8012 New York Nebraska 1976
#> 8013 New York New Jersey 1976
#> 8014 New York Maryland 1976
#> 8015 New York Ohio 1976
#> 8016 New York Florida 1976
#> 8017 New York Delaware 1976
#> 8018 North Carolina Virginia 1976
#> 8019 New York Washington 1976
#> 8020 New York California 1976
#> 8021 New York Massachusetts 1976
#> 8022 Washington Kansas 1976
#> 8023 New York West Virginia 1976
#> 8024 New York North Carolina 1976
#> 8025 New York Oklahoma 1976
#> 8026 New York Colorado 1976
#> 8027 New York Montana 1976
#> 8028 Colorado Georgia 1976
#> 8029 New York South Dakota 1976
#> 8030 New York Idaho 1976
#> 8031 Kentucky Arkansas 1976
#> 8032 New York Vermont 1976
#> 8033 New York New Mexico 1976
#> 8034 New York Nevada 1976
#> 8035 New York Texas 1976
#> 8036 Florida Mississippi 1976
#> 8037 New Jersey Iowa 1976
#> 8038 Washington Missouri 1976
#> 8039 New York Tennessee 1976
#> 8040 California South Carolina 1976
#> 8041 Delaware North Dakota 1976
#> 8042 Washington Wyoming 1976
#> 8043 New York Wisconsin 1976
#> 8044 Illinois Alabama 1976
#> 8045 New York Arizona 1976
#> 8046 Colorado Louisiana 1976
#> 8047 Massachusetts New York 1976
#> 8048 New Jersey Hawaii 1976
#> 8049 New York Alaska 1976
#> 8050 New York Utah 1976
#> 8051 Washington Arkansas 1976
#> 8052 California Maryland 1976
#> 8053 California Washington 1976
#> 8054 Idaho Colorado 1976
#> 8055 Washington Montana 1976
#> 8056 New Mexico New Hampshire 1976
#> 8057 California New Mexico 1976
#> 8058 Connecticut Kentucky 1976
#> 8059 Colorado Pennsylvania 1976
#> 8060 California New York 1976
#> 8061 Montana Maine 1976
#> 8062 California North Carolina 1976
#> 8063 Florida Virginia 1976
#> 8064 Colorado Kansas 1976
#> 8065 Wisconsin Rhode Island 1976
#> 8066 Idaho Minnesota 1976
#> 8067 California Oregon 1976
#> 8068 Colorado New Jersey 1976
#> 8069 Iowa Nebraska 1976
#> 8070 Illinois Massachusetts 1976
#> 8071 Nebraska Tennessee 1976
#> 8072 Ohio Texas 1976
#> 8073 Colorado Florida 1976
#> 8074 Idaho Alabama 1976
#> 8075 New York North Dakota 1976
#> 8076 California Indiana 1976
#> 8077 Maryland Delaware 1976
#> 8078 Mississippi Arizona 1976
#> 8079 South Carolina Idaho 1976
#> 8080 Arkansas Louisiana 1976
#> 8081 Rhode Island Connecticut 1976
#> 8082 Kentucky New Mexico 1976
#> 8083 Nebraska Georgia 1976
#> 8084 Rhode Island Wyoming 1976
#> 8085 Idaho Iowa 1976
#> 8086 California Nevada 1976
#> 8087 California Hawaii 1976
#> 8088 Ohio Vermont 1976
#> 8089 New Jersey South Carolina 1976
#> 8090 Colorado Ohio 1976
#> 8091 Nevada Montana 1976
#> 8092 California Michigan 1976
#> 8093 Texas Oklahoma 1976
#> 8094 New Jersey New York 1976
#> 8095 Tennessee Missouri 1976
#> 8096 New Mexico Mississippi 1976
#> 8097 Louisiana Maryland 1976
#> 8098 New York Virginia 1976
#> 8099 Arkansas North Carolina 1976
#> 8100 Utah Texas 1976
#> 8101 Florida South Dakota 1976
#> 8102 Maryland California 1976
#> 8103 California Arizona 1976
#> 8104 Nevada Washington 1976
#> 8105 Michigan Delaware 1976
#> 8106 Illinois Wisconsin 1976
#> 8107 Kentucky Colorado 1976
#> 8108 Vermont Indiana 1976
#> 8109 Michigan West Virginia 1976
#> 8110 Alaska Connecticut 1976
#> 8111 Ohio Rhode Island 1976
#> 8112 California Pennsylvania 1976
#> 8113 Nevada Utah 1976
#> 8114 Minnesota Illinois 1976
#> 8115 Ohio New Hampshire 1976
#> 8116 Vermont Kentucky 1976
#> 8117 Ohio Montana 1976
#> 8118 Alabama Florida 1976
#> 8119 Rhode Island Washington 1976
#> 8120 Connecticut Massachusetts 1976
#> 8121 Vermont Oregon 1976
#> 8122 Oregon Vermont 1976
#> 8123 Delaware Alabama 1976
#> 8124 New Mexico North Dakota 1976
#> 8125 Idaho Kansas 1976
#> 8126 Florida Arkansas 1976
#> 8127 New York Louisiana 1976
#> 8128 Washington New Mexico 1976
#> 8129 Arkansas Iowa 1976
#> 8130 Massachusetts Minnesota 1976
#> 8131 Wisconsin Colorado 1976
#> 8132 Nevada Nebraska 1976
#> 8133 California Alaska 1976
#> 8134 Iowa Kansas 1976
#> 8135 New Jersey Rhode Island 1976
#> 8136 Illinois North Carolina 1976
#> 8137 Mississippi Alabama 1976
#> 8138 California New Jersey 1976
#> 8139 Vermont Illinois 1976
#> 8140 Montana Idaho 1976
#> 8141 South Carolina Wyoming 1976
#> 8142 Illinois Tennessee 1976
#> 8143 California Georgia 1976
#> 8144 Montana Minnesota 1976
#> 8145 Oregon Ohio 1976
#> 8146 Alabama Connecticut 1976
#> 8147 Kansas Iowa 1976
#> 8148 Florida Nebraska 1976
#> 8149 New Jersey Maine 1976
#> 8150 Indiana New York 1976
#> 8151 Nebraska South Carolina 1976
#> 8152 Michigan Vermont 1976
#> 8153 Illinois Florida 1976
#> 8154 California Arkansas 1976
#> 8155 Maine Maryland 1976
#> 8156 Nevada Mississippi 1976
#> 8157 Maine South Dakota 1976
#> 8158 Mississippi Texas 1976
#> 8159 Washington Wisconsin 1976
#> 8160 Oregon Hawaii 1976
#> 8161 Wisconsin New Jersey 1976
#> 8162 Florida Arizona 1976
#> 8163 California Delaware 1976
#> 8164 Pennsylvania Oklahoma 1976
#> 8165 Virginia Utah 1976
#> 8166 Colorado Michigan 1976
#> 8167 New Mexico Nevada 1976
#> 8168 Utah Montana 1976
#> 8169 Wisconsin New Mexico 1976
#> 8170 Colorado Maine 1976
#> 8171 Arizona North Dakota 1976
#> 8172 Ohio West Virginia 1976
#> 8173 Vermont Wyoming 1976
#> 8174 Alabama California 1976
#> 8175 New York Kansas 1976
#> 8176 Colorado Nebraska 1976
#> 8177 Maryland Kentucky 1976
#> 8178 New Jersey Massachusetts 1976
#> 8179 Pennsylvania Ohio 1976
#> 8180 Alaska New York 1976
#> 8181 Connecticut New York 1976
#> 8182 Illinois Minnesota 1976
#> 8183 Nevada Idaho 1976
#> 8184 Oregon Delaware 1976
#> 8185 Kansas Kentucky 1976
#> 8186 Virginia Colorado 1976
#> 8187 Kentucky Tennessee 1976
#> 8188 Wisconsin North Carolina 1976
#> 8189 Florida Massachusetts 1976
#> 8190 Maryland Illinois 1976
#> 8191 Idaho Missouri 1976
#> 8192 Hawaii Alaska 1976
#> 8193 Kansas Arkansas 1976
#> 8194 Georgia Louisiana 1976
#> 8195 Alaska Utah 1976
#> 8196 Washington Pennsylvania 1976
#> 8197 Mississippi California 1976
#> 8198 Tennessee Indiana 1976
#> 8199 Louisiana Pennsylvania 1976
#> 8200 New Mexico Rhode Island 1976
#> 8201 Montana Virginia 1976
#> 8202 South Dakota Wisconsin 1976
#> 8203 Arizona Montana 1976
#> 8204 Florida Nevada 1976
#> 8205 Maryland Michigan 1976
#> 8206 Connecticut New Hampshire 1976
#> 8207 Colorado Minnesota 1976
#> 8208 Tennessee Georgia 1976
#> 8209 Mississippi Maine 1976
#> 8210 New Jersey Oregon 1976
#> 8211 Oregon Alabama 1976
#> 8212 New Jersey Idaho 1976
#> 8213 Connecticut New Jersey 1976
#> 8214 Kentucky Texas 1976
#> 8215 Colorado South Dakota 1976
#> 8216 Wisconsin South Carolina 1976
#> 8217 Maine Iowa 1976
#> 8218 Kentucky North Carolina 1976
#> 8219 Minnesota California 1976
#> 8220 Wisconsin Nevada 1976
#> 8221 Louisiana Illinois 1976
#> 8222 Kansas Hawaii 1976
#> 8223 Louisiana New Mexico 1976
#> 8224 Kansas Colorado 1976
#> 8225 Rhode Island Kansas 1976
#> 8226 Colorado Vermont 1976
#> 8227 Mississippi Oklahoma 1976
#> 8228 Georgia Connecticut 1976
#> 8229 Indiana Kentucky 1976
#> 8230 Arkansas New Hampshire 1976
#> 8231 Connecticut Ohio 1976
#> 8232 Delaware Massachusetts 1976
#> 8233 New Mexico West Virginia 1976
#> 8234 Mississippi South Carolina 1976
#> 8235 Vermont New York 1976
#> 8236 North Carolina Minnesota 1976
#> 8237 Illinois California 1976
#> 8238 Illinois Idaho 1976
#> 8239 Illinois New York 1976
#> 8240 Minnesota Colorado 1976
#> 8241 Kentucky Florida 1976
#> 8242 Tennessee Arkansas 1976
#> 8243 New Mexico Delaware 1976
#> 8244 Colorado New Mexico 1976
#> 8245 North Dakota Wyoming 1976
#> 8246 North Carolina Tennessee 1976
#> 8247 Wisconsin Massachusetts 1976
#> 8248 North Dakota Idaho 1976
#> 8249 Washington North Dakota 1976
#> 8250 New Jersey Virginia 1976
#> 8251 Mississippi Ohio 1976
#> 8252 New York Hawaii 1976
#> 8253 Delaware Wyoming 1976
#> 8254 Washington New York 1976
#> 8255 Delaware Montana 1976
#> 8256 California Utah 1976
#> 8257 Kansas North Dakota 1976
#> 8258 Utah New Mexico 1976
#> 8259 Colorado Rhode Island 1976
#> 8260 Illinois Colorado 1976
#> 8261 Iowa Louisiana 1976
#> 8262 Wisconsin Illinois 1976
#> 8263 Michigan South Carolina 1976
#> 8264 Oklahoma South Dakota 1976
#> 8265 Maryland Indiana 1976
#> 8266 South Carolina Washington 1976
#> 8267 Wyoming Michigan 1976
#> 8268 Massachusetts Connecticut 1976
#> 8269 Colorado Oklahoma 1976
#> 8270 Illinois Rhode Island 1976
#> 8271 Arkansas Oregon 1976
#> 8272 Illinois Texas 1976
#> 8273 Kentucky Maryland 1976
#> 8274 Kentucky Missouri 1976
#> 8275 Oregon Alaska 1976
#> 8276 Wisconsin Idaho 1976
#> 8277 New Jersey Vermont 1976
#> 8278 Rhode Island Minnesota 1976
#> 8279 California Rhode Island 1976
#> 8280 South Carolina Michigan 1976
#> 8281 Mississippi Arkansas 1976
#> 8282 Arizona Kentucky 1976
#> 8283 Kentucky Alabama 1976
#> 8284 Montana Georgia 1976
#> 8285 Minnesota New Jersey 1976
#> 8286 Maine Nevada 1976
#> 8287 Florida Colorado 1976
#> 8288 North Dakota Maryland 1976
#> 8289 Maryland New Jersey 1976
#> 8290 Mississippi Nebraska 1976
#> 8291 South Dakota North Carolina 1976
#> 8292 Indiana Wisconsin 1976
#> 8293 South Carolina Nevada 1976
#> 8294 Washington South Dakota 1976
#> 8295 Wisconsin Kansas 1976
#> 8296 New Mexico Oklahoma 1976
#> 8297 Delaware Nebraska 1976
#> 8298 Pennsylvania Maine 1976
#> 8299 Missouri Mississippi 1976
#> 8300 Mississippi New Mexico 1976
#> 8301 Maine New Mexico 1976
#> 8302 Louisiana Alaska 1976
#> 8303 Virginia Connecticut 1976
#> 8304 Oregon Iowa 1976
#> 8305 Washington Illinois 1976
#> 8306 Louisiana Oklahoma 1976
#> 8307 Rhode Island Wisconsin 1976
#> 8308 Georgia Vermont 1976
#> 8309 Rhode Island Oregon 1976
#> 8310 Arizona West Virginia 1976
#> 8311 New Mexico Alabama 1976
#> 8312 Oregon North Dakota 1976
#> 8313 Arkansas Delaware 1976
#> 8314 Kansas Washington 1976
#> 8315 Hawaii Vermont 1976
#> 8316 Arkansas California 1976
#> 8317 New York Wyoming 1976
#> 8318 North Carolina South Carolina 1976
#> 8319 New Hampshire New York 1976
#> 8320 Michigan Washington 1976
#> 8321 Kentucky Utah 1976
#> 8322 Delaware Arkansas 1976
#> 8323 Idaho Arizona 1976
#> 8324 Maryland Massachusetts 1976
#> 8325 California Wisconsin 1976
#> 8326 California Vermont 1976
#> 8327 Connecticut Tennessee 1976
#> 8328 Oregon Louisiana 1976
#> 8329 Massachusetts Florida 1976
#> 8330 Illinois Arkansas 1976
#> 8331 New Jersey North Carolina 1976
#> 8332 Delaware Rhode Island 1976
#> 8333 Utah Virginia 1976
#> 8334 Vermont Connecticut 1976
#> 8335 Hawaii Wisconsin 1976
#> 8336 Minnesota Rhode Island 1976
#> 8337 Hawaii Oregon 1976
#> 8338 Rhode Island Hawaii 1976
#> 8339 Hawaii New Jersey 1976
#> 8340 Maryland Oklahoma 1976
#> 8341 New Jersey Connecticut 1976
#> 8342 Rhode Island New York 1976
#> 8343 Missouri Virginia 1976
#> 8344 North Dakota Iowa 1976
#> 8345 Pennsylvania Minnesota 1976
#> 8346 Maryland Pennsylvania 1976
#> 8347 North Dakota New York 1976
#> 8348 Pennsylvania Michigan 1976
#> 8349 Wisconsin Iowa 1976
#> 8350 Oregon Montana 1976
#> 8351 Wisconsin Hawaii 1976
#> 8352 Arkansas Mississippi 1976
#> 8353 Arizona Georgia 1976
#> 8354 Florida South Carolina 1976
#> 8355 Kansas Vermont 1976
#> 8356 Illinois New Hampshire 1976
#> 8357 Pennsylvania Rhode Island 1976
#> 8358 Minnesota Tennessee 1976
#> 8359 Florida Texas 1976
#> 8360 Delaware Missouri 1976
#> 8361 Tennessee Illinois 1976
#> 8362 Connecticut Colorado 1976
#> 8363 Maryland Kansas 1976
#> 8364 Pennsylvania West Virginia 1976
#> 8365 Florida Connecticut 1976
#> 8366 California Ohio 1976
#> 8367 Montana Michigan 1976
#> 8368 Illinois Alaska 1976
#> 8369 Florida Utah 1976
#> 8370 West Virginia Maryland 1976
#> 8371 Wisconsin Michigan 1976
#> 8372 Massachusetts Washington 1976
#> 8373 Oregon Arizona 1976
#> 8374 Arizona Nebraska 1976
#> 8375 Florida Louisiana 1976
#> 8376 New Jersey New Hampshire 1976
#> 8377 Kansas Mississippi 1976
#> 8378 Maine Texas 1976
#> 8379 Kentucky Maine 1976
#> 8380 Utah Georgia 1976
#> 8381 Georgia Nevada 1976
#> 8382 West Virginia Missouri 1976
#> 8383 Illinois Indiana 1976
#> 8384 Wisconsin New York 1976
#> 8385 California Illinois 1976
#> 8386 Maryland Washington 1976
#> 8387 New Jersey Wyoming 1976
#> 8388 Michigan North Dakota 1976
#> 8389 Maine New Hampshire 1976
#> 8390 Illinois New Jersey 1976
#> 8391 Kentucky South Dakota 1976
#> 8392 New Jersey Pennsylvania 1976
#> 8393 California Massachusetts 1976
#> 8394 New Jersey Ohio 1976
#> 8395 Missouri Kansas 1976
#> 8396 Arkansas Idaho 1976
#> 8397 Michigan Arizona 1976
#> 8398 Pennsylvania Massachusetts 1976
#> 8399 Minnesota Maine 1976
#> 8400 New Mexico Iowa 1976
#> 8401 Mississippi Montana 1976
#> 8402 Massachusetts Illinois 1976
#> 8403 Minnesota Washington 1976
#> 8404 Pennsylvania Maryland 1976
#> 8405 Arkansas Pennsylvania 1976
#> 8406 West Virginia Kentucky 1976
#> 8407 Maine Indiana 1976
#> 8408 New Jersey Michigan 1976
#> 8409 Washington Hawaii 1976
#> 8410 Colorado California 1976
#> 8411 Louisiana Kansas 1976
#> 8412 Florida Georgia 1976
#> 8413 Alaska North Carolina 1976
#> 8414 Minnesota Missouri 1976
#> 8415 Mississippi Indiana 1976
#> 8416 Louisiana Wisconsin 1976
#> 8417 Connecticut Oregon 1976
#> 8418 Missouri Minnesota 1976
#> 8419 New Mexico Montana 1976
#> 8420 Utah Florida 1976
#> 8421 Colorado Maryland 1976
#> 8422 Illinois Georgia 1976
#> 8423 Rhode Island North Dakota 1976
#> 8424 California Iowa 1976
#> 8425 California Oklahoma 1976
#> 8426 Oregon Colorado 1976
#> 8427 Pennsylvania Nebraska 1976
#> 8428 New Jersey Colorado 1976
#> 8429 Michigan California 1976
#> 8430 Ohio Kansas 1976
#> 8431 Tennessee South Carolina 1976
#> 8432 Kentucky Vermont 1976
#> 8433 Oregon New Mexico 1976
#> 8434 Arizona Missouri 1976
#> 8435 Delaware New Hampshire 1976
#> 8436 Michigan Illinois 1976
#> 8437 South Carolina Utah 1976
#> 8438 North Carolina Idaho 1976
#> 8439 Mississippi North Carolina 1976
#> 8440 Oklahoma Indiana 1976
#> 8441 Mississippi West Virginia 1976
#> 8442 Kansas New York 1976
#> 8443 Michigan Minnesota 1976
#> 8444 Alaska Nevada 1976
#> 8445 Florida Oklahoma 1976
#> 8446 Oregon Oklahoma 1976
#> 8447 Illinois Mississippi 1976
#> 8448 North Dakota Colorado 1976
#> 8449 North Carolina California 1976
#> 8450 Colorado Utah 1976
#> 8451 Nevada Georgia 1976
#> 8452 Oregon Connecticut 1976
#> 8453 South Carolina Tennessee 1976
#> 8454 Colorado Massachusetts 1976
#> 8455 New Mexico Oregon 1976
#> 8456 Alabama North Dakota 1976
#> 8457 Minnesota Delaware 1976
#> 8458 Ohio Alaska 1976
#> 8459 Mississippi Florida 1976
#> 8460 Delaware California 1976
#> 8461 Rhode Island South Dakota 1976
#> 8462 Alaska South Dakota 1976
#> 8463 Delaware Idaho 1976
#> 8464 California Connecticut 1976
#> 8465 Oregon Massachusetts 1976
#> 8466 Connecticut Alabama 1976
#> 8467 Louisiana Alabama 1976
#> 8468 Wisconsin Vermont 1976
#> 8469 Delaware New Mexico 1976
#> 8470 South Dakota Hawaii 1976
#> 8471 Louisiana Delaware 1976
#> 8472 Louisiana Nevada 1976
#> 8473 California Montana 1976
#> 8474 Hawaii Oklahoma 1976
#> 8475 Vermont Mississippi 1976
#> 8476 Hawaii Florida 1976
#> 8477 Oklahoma Colorado 1976
#> 8478 Rhode Island California 1976
#> 8479 Massachusetts Virginia 1976
#> 8480 North Dakota Virginia 1976
#> 8481 Minnesota Virginia 1976
#> 8482 Ohio Utah 1976
#> 8483 Alabama Utah 1976
#> 8484 Florida Ohio 1976
#> 8485 Kansas Nebraska 1976
#> 8486 Alabama Arkansas 1976
#> 8487 New Jersey Indiana 1976
#> 8488 Florida Indiana 1976
#> 8489 North Dakota Indiana 1976
#> 8490 Connecticut Wisconsin 1976
#> 8491 South Dakota Michigan 1976
#> 8492 New Hampshire Hawaii 1976
#> 8493 Utah New Jersey 1976
#> 8494 North Dakota Nebraska 1976
#> 8495 South Carolina Maryland 1976
#> 8496 South Dakota Kansas 1976
#> 8497 Louisiana Idaho 1976
#> 8498 North Dakota Arkansas 1976
#> 8499 Massachusetts Tennessee 1976
#> 8500 Minnesota Massachusetts 1976
#> 8501 New York Oregon 1977
#> 8502 New York Pennsylvania 1977
#> 8503 New York Michigan 1977
#> 8504 New York Connecticut 1977
#> 8505 New York Maine 1977
#> 8506 New York New Hampshire 1977
#> 8507 Oregon Kentucky 1977
#> 8508 New York Rhode Island 1977
#> 8509 New York Minnesota 1977
#> 8510 New York Ohio 1977
#> 8511 New York Indiana 1977
#> 8512 New York Illinois 1977
#> 8513 New York Maryland 1977
#> 8514 New York Florida 1977
#> 8515 New York New Jersey 1977
#> 8516 New York Nebraska 1977
#> 8517 New York Delaware 1977
#> 8518 Washington Kansas 1977
#> 8519 New York Massachusetts 1977
#> 8520 North Carolina Virginia 1977
#> 8521 New York California 1977
#> 8522 New York Washington 1977
#> 8523 New York West Virginia 1977
#> 8524 New York Oklahoma 1977
#> 8525 New York North Carolina 1977
#> 8526 Colorado Georgia 1977
#> 8527 New York Colorado 1977
#> 8528 New York Montana 1977
#> 8529 New York Idaho 1977
#> 8530 New York South Dakota 1977
#> 8531 Kentucky Arkansas 1977
#> 8532 New York Vermont 1977
#> 8533 New York New Mexico 1977
#> 8534 New York Nevada 1977
#> 8535 Florida Mississippi 1977
#> 8536 New York Tennessee 1977
#> 8537 New York Texas 1977
#> 8538 New Jersey Iowa 1977
#> 8539 Washington Missouri 1977
#> 8540 Delaware North Dakota 1977
#> 8541 California South Carolina 1977
#> 8542 Washington Wyoming 1977
#> 8543 New York Wisconsin 1977
#> 8544 Illinois Alabama 1977
#> 8545 New York Arizona 1977
#> 8546 Colorado Louisiana 1977
#> 8547 Massachusetts New York 1977
#> 8548 New Jersey Hawaii 1977
#> 8549 New York Alaska 1977
#> 8550 New York Utah 1977
#> 8551 Washington Arkansas 1977
#> 8552 California Maryland 1977
#> 8553 California Washington 1977
#> 8554 Idaho Colorado 1977
#> 8555 Indiana Kentucky 1977
#> 8556 Washington Montana 1977
#> 8557 New Mexico New Hampshire 1977
#> 8558 New York Virginia 1977
#> 8559 Colorado Minnesota 1977
#> 8560 California New Mexico 1977
#> 8561 California New York 1977
#> 8562 Colorado Pennsylvania 1977
#> 8563 Illinois Massachusetts 1977
#> 8564 Montana Maine 1977
#> 8565 Colorado New Jersey 1977
#> 8566 Colorado Kansas 1977
#> 8567 California North Carolina 1977
#> 8568 Wisconsin Rhode Island 1977
#> 8569 Minnesota Iowa 1977
#> 8570 California Oregon 1977
#> 8571 North Carolina Indiana 1977
#> 8572 Colorado Ohio 1977
#> 8573 Maryland Delaware 1977
#> 8574 South Carolina Texas 1977
#> 8575 Iowa Nebraska 1977
#> 8576 Nebraska Tennessee 1977
#> 8577 Colorado Florida 1977
#> 8578 Idaho Alabama 1977
#> 8579 Arkansas Louisiana 1977
#> 8580 New York North Dakota 1977
#> 8581 South Carolina Idaho 1977
#> 8582 Colorado Connecticut 1977
#> 8583 California Arizona 1977
#> 8584 Kentucky New Mexico 1977
#> 8585 Nebraska Georgia 1977
#> 8586 Rhode Island Wyoming 1977
#> 8587 Montana Maryland 1977
#> 8588 New Mexico Hawaii 1977
#> 8589 California Michigan 1977
#> 8590 California Nevada 1977
#> 8591 North Dakota South Dakota 1977
#> 8592 New Mexico Mississippi 1977
#> 8593 New Jersey South Carolina 1977
#> 8594 Wisconsin Vermont 1977
#> 8595 Nevada Montana 1977
#> 8596 Texas Oklahoma 1977
#> 8597 Minnesota California 1977
#> 8598 New Mexico West Virginia 1977
#> 8599 Tennessee Missouri 1977
#> 8600 Nevada Washington 1977
#> 8601 Florida Virginia 1977
#> 8602 Arkansas North Carolina 1977
#> 8603 California Wisconsin 1977
#> 8604 Montana Minnesota 1977
#> 8605 New Jersey New York 1977
#> 8606 Michigan Delaware 1977
#> 8607 Maryland Kentucky 1977
#> 8608 Kentucky Colorado 1977
#> 8609 Mississippi Arizona 1977
#> 8610 California Pennsylvania 1977
#> 8611 Nevada Utah 1977
#> 8612 Minnesota Illinois 1977
#> 8613 Delaware Iowa 1977
#> 8614 Mississippi Texas 1977
#> 8615 Arizona North Dakota 1977
#> 8616 Connecticut Massachusetts 1977
#> 8617 Connecticut New Hampshire 1977
#> 8618 Alabama Florida 1977
#> 8619 New Jersey Rhode Island 1977
#> 8620 Washington Vermont 1977
#> 8621 Vermont Oregon 1977
#> 8622 Colorado Maine 1977
#> 8623 California Indiana 1977
#> 8624 Kentucky Tennessee 1977
#> 8625 Delaware Alabama 1977
#> 8626 Massachusetts Minnesota 1977
#> 8627 Idaho Kansas 1977
#> 8628 Vermont Kentucky 1977
#> 8629 California Alaska 1977
#> 8630 Florida Arkansas 1977
#> 8631 New York Louisiana 1977
#> 8632 Illinois California 1977
#> 8633 Washington New Mexico 1977
#> 8634 Illinois Rhode Island 1977
#> 8635 Wisconsin Colorado 1977
#> 8636 Montana Idaho 1977
#> 8637 Nevada Nebraska 1977
#> 8638 Indiana New York 1977
#> 8639 Illinois Wisconsin 1977
#> 8640 Iowa Kansas 1977
#> 8641 Illinois North Carolina 1977
#> 8642 Mississippi Alabama 1977
#> 8643 Rhode Island Washington 1977
#> 8644 California New Jersey 1977
#> 8645 Vermont Illinois 1977
#> 8646 South Carolina Wyoming 1977
#> 8647 New Jersey Michigan 1977
#> 8648 California Georgia 1977
#> 8649 New Mexico Delaware 1977
#> 8650 Oregon Ohio 1977
#> 8651 North Dakota Iowa 1977
#> 8652 California Montana 1977
#> 8653 Florida Nebraska 1977
#> 8654 Delaware Connecticut 1977
#> 8655 Vermont West Virginia 1977
#> 8656 California Hawaii 1977
#> 8657 Illinois Florida 1977
#> 8658 Nebraska South Carolina 1977
#> 8659 Vermont Indiana 1977
#> 8660 Pennsylvania Oklahoma 1977
#> 8661 Texas Kentucky 1977
#> 8662 California Arkansas 1977
#> 8663 Florida South Dakota 1977
#> 8664 Nevada Mississippi 1977
#> 8665 Washington North Dakota 1977
#> 8666 California Rhode Island 1977
#> 8667 Florida Nevada 1977
#> 8668 Wisconsin New Jersey 1977
#> 8669 Florida Arizona 1977
#> 8670 Alaska Connecticut 1977
#> 8671 Maine Maryland 1977
#> 8672 Virginia Utah 1977
#> 8673 California Colorado 1977
#> 8674 Montana Virginia 1977
#> 8675 Delaware Montana 1977
#> 8676 Wisconsin New Mexico 1977
#> 8677 Ohio Texas 1977
#> 8678 Arizona West Virginia 1977
#> 8679 Minnesota Tennessee 1977
#> 8680 Vermont Wyoming 1977
#> 8681 New York Kansas 1977
#> 8682 New Jersey Ohio 1977
#> 8683 Colorado Nebraska 1977
#> 8684 New Jersey Massachusetts 1977
#> 8685 Alaska New York 1977
#> 8686 New Mexico Nevada 1977
#> 8687 Iowa Maine 1977
#> 8688 Kansas Iowa 1977
#> 8689 Connecticut New York 1977
#> 8690 Oregon Delaware 1977
#> 8691 Vermont Montana 1977
#> 8692 Washington South Dakota 1977
#> 8693 Nevada Idaho 1977
#> 8694 Illinois Minnesota 1977
#> 8695 Oregon Vermont 1977
#> 8696 Wisconsin North Carolina 1977
#> 8697 Vermont New Hampshire 1977
#> 8698 Hawaii North Dakota 1977
#> 8699 Washington Pennsylvania 1977
#> 8700 Florida Massachusetts 1977
#> 8701 Georgia Louisiana 1977
#> 8702 Maryland Illinois 1977
#> 8703 Idaho Missouri 1977
#> 8704 Hawaii Alaska 1977
#> 8705 North Dakota Washington 1977
#> 8706 Kansas Arkansas 1977
#> 8707 Kentucky Wisconsin 1977
#> 8708 New Mexico Rhode Island 1977
#> 8709 Alaska Utah 1977
#> 8710 California Delaware 1977
#> 8711 Kentucky Michigan 1977
#> 8712 Nebraska Arkansas 1977
#> 8713 New York Hawaii 1977
#> 8714 Washington Connecticut 1977
#> 8715 New Jersey Texas 1977
#> 8716 Colorado Vermont 1977
#> 8717 Maryland California 1977
#> 8718 Georgia Indiana 1977
#> 8719 Kentucky Maryland 1977
#> 8720 Minnesota New Jersey 1977
#> 8721 Tennessee Georgia 1977
#> 8722 Minnesota Colorado 1977
#> 8723 New Jersey Oregon 1977
#> 8724 Montana Tennessee 1977
#> 8725 Oregon Alabama 1977
#> 8726 Wisconsin South Carolina 1977
#> 8727 Kentucky North Carolina 1977
#> 8728 Wisconsin Nevada 1977
#> 8729 Idaho Texas 1977
#> 8730 Louisiana Illinois 1977
#> 8731 Colorado California 1977
#> 8732 Louisiana New Mexico 1977
#> 8733 Connecticut Pennsylvania 1977
#> 8734 Nebraska Iowa 1977
#> 8735 Illinois Idaho 1977
#> 8736 North Carolina Minnesota 1977
#> 8737 Connecticut New Jersey 1977
#> 8738 Delaware Massachusetts 1977
#> 8739 Ohio Connecticut 1977
#> 8740 Vermont Maine 1977
#> 8741 Arkansas New Hampshire 1977
#> 8742 Vermont New York 1977
#> 8743 Kansas Colorado 1977
#> 8744 Connecticut Ohio 1977
#> 8745 Illinois New York 1977
#> 8746 Maryland Kansas 1977
#> 8747 Colorado Hawaii 1977
#> 8748 Kentucky Florida 1977
#> 8749 New Jersey Virginia 1977
#> 8750 Connecticut Louisiana 1977
#> 8751 Oregon Montana 1977
#> 8752 Kentucky Utah 1977
#> 8753 Pennsylvania Rhode Island 1977
#> 8754 Colorado New Mexico 1977
#> 8755 Mississippi California 1977
#> 8756 North Dakota Idaho 1977
#> 8757 North Dakota Wyoming 1977
#> 8758 Wisconsin Massachusetts 1977
#> 8759 Mississippi Ohio 1977
#> 8760 Maine North Dakota 1977
#> 8761 Oklahoma South Dakota 1977
#> 8762 Delaware Wyoming 1977
#> 8763 Arizona Montana 1977
#> 8764 North Carolina California 1977
#> 8765 Washington New York 1977
#> 8766 Iowa Oklahoma 1977
#> 8767 California Utah 1977
#> 8768 Utah New Mexico 1977
#> 8769 Illinois Colorado 1977
#> 8770 Wisconsin Illinois 1977
#> 8771 Michigan South Carolina 1977
#> 8772 Minnesota Oregon 1977
#> 8773 West Virginia Maryland 1977
#> 8774 Michigan Washington 1977
#> 8775 Wisconsin Idaho 1977
#> 8776 Arkansas Minnesota 1977
#> 8777 Oregon Alaska 1977
#> 8778 Kentucky Missouri 1977
#> 8779 Ohio New Hampshire 1977
#> 8780 Louisiana Tennessee 1977
#> 8781 Hawaii Oregon 1977
#> 8782 Kansas Kentucky 1977
#> 8783 Kentucky Alabama 1977
#> 8784 Nevada Georgia 1977
#> 8785 Iowa Louisiana 1977
#> 8786 Georgia Connecticut 1977
#> 8787 Illinois Michigan 1977
#> 8788 Maine Nevada 1977
#> 8789 Maryland New Jersey 1977
#> 8790 Colorado Wisconsin 1977
#> 8791 Maine Vermont 1977
#> 8792 New Mexico Oklahoma 1977
#> 8793 Mississippi Nebraska 1977
#> 8794 South Dakota North Carolina 1977
#> 8795 New Jersey Maine 1977
#> 8796 South Carolina Nevada 1977
#> 8797 Wisconsin Kansas 1977
#> 8798 Missouri Mississippi 1977
#> 8799 Delaware Nebraska 1977
#> 8800 Colorado Rhode Island 1977
#> 8801 Texas Pennsylvania 1977
#> 8802 Maine New Mexico 1977
#> 8803 Kentucky Oklahoma 1977
#> 8804 Louisiana Alaska 1977
#> 8805 New Jersey Idaho 1977
#> 8806 Georgia Vermont 1977
#> 8807 Washington Illinois 1977
#> 8808 Delaware Arkansas 1977
#> 8809 New Mexico Alabama 1977
#> 8810 Illinois West Virginia 1977
#> 8811 California North Dakota 1977
#> 8812 Arkansas Delaware 1977
#> 8813 California Oklahoma 1977
#> 8814 North Carolina South Carolina 1977
#> 8815 Hawaii Vermont 1977
#> 8816 Minnesota Delaware 1977
#> 8817 New York Wyoming 1977
#> 8818 Louisiana Pennsylvania 1977
#> 8819 California Vermont 1977
#> 8820 New Hampshire New York 1977
#> 8821 Kentucky Alaska 1977
#> 8822 Indiana South Dakota 1977
#> 8823 Idaho Arizona 1977
#> 8824 Maryland Massachusetts 1977
#> 8825 Colorado Oregon 1977
#> 8826 Maine Minnesota 1977
#> 8827 Massachusetts Florida 1977
#> 8828 Montana California 1977
#> 8829 New Jersey North Carolina 1977
#> 8830 South Dakota Wisconsin 1977
#> 8831 Delaware Rhode Island 1977
#> 8832 Utah Virginia 1977
#> 8833 Minnesota Rhode Island 1977
#> 8834 Hawaii New Jersey 1977
#> 8835 Oklahoma Colorado 1977
#> 8836 Vermont Connecticut 1977
#> 8837 Minnesota New York 1977
#> 8838 South Dakota Hawaii 1977
#> 8839 Rhode Island New York 1977
#> 8840 Indiana Arkansas 1977
#> 8841 Alaska North Dakota 1977
#> 8842 California Kentucky 1977
#> 8843 Missouri Virginia 1977
#> 8844 Alaska California 1977
#> 8845 Illinois Georgia 1977
#> 8846 Hawaii Wisconsin 1977
#> 8847 Oregon Michigan 1977
#> 8848 South Dakota California 1977
#> 8849 Maine Michigan 1977
#> 8850 North Dakota New York 1977
#> 8851 Oklahoma Georgia 1977
#> 8852 Wisconsin Hawaii 1977
#> 8853 Pennsylvania Texas 1977
#> 8854 Arkansas Colorado 1977
#> 8855 Maryland Indiana 1977
#> 8856 Arkansas Mississippi 1977
#> 8857 Illinois Iowa 1977
#> 8858 Florida South Carolina 1977
#> 8859 Montana Michigan 1977
#> 8860 North Dakota Maryland 1977
#> 8861 Delaware Missouri 1977
#> 8862 Kentucky South Dakota 1977
#> 8863 Tennessee Illinois 1977
#> 8864 Pennsylvania Ohio 1977
#> 8865 Pennsylvania Minnesota 1977
#> 8866 New Hampshire Hawaii 1977
#> 8867 Colorado Oklahoma 1977
#> 8868 Alabama Georgia 1977
#> 8869 Florida Utah 1977
#> 8870 Pennsylvania Maine 1977
#> 8871 Minnesota Washington 1977
#> 8872 Kansas Mississippi 1977
#> 8873 West Virginia Kentucky 1977
#> 8874 Massachusetts Washington 1977
#> 8875 Wyoming Arizona 1977
#> 8876 New Jersey New Hampshire 1977
#> 8877 Arizona Nebraska 1977
#> 8878 Virginia Connecticut 1977
#> 8879 Tennessee Arkansas 1977
#> 8880 New Hampshire Tennessee 1977
#> 8881 Oregon Wisconsin 1977
#> 8882 Wisconsin Michigan 1977
#> 8883 California Ohio 1977
#> 8884 Montana Kansas 1977
#> 8885 Iowa Montana 1977
#> 8886 Delaware West Virginia 1977
#> 8887 Oregon New Mexico 1977
#> 8888 Oregon Iowa 1977
#> 8889 Georgia Nevada 1977
#> 8890 New Jersey Pennsylvania 1977
#> 8891 West Virginia Missouri 1977
#> 8892 Florida Louisiana 1977
#> 8893 Wisconsin New York 1977
#> 8894 California Illinois 1977
#> 8895 Rhode Island Connecticut 1977
#> 8896 Indiana Hawaii 1977
#> 8897 Illinois New Jersey 1977
#> 8898 Missouri Kansas 1977
#> 8899 California Massachusetts 1977
#> 8900 New Hampshire Oregon 1977
#> 8901 North Dakota Minnesota 1977
#> 8902 Illinois New Hampshire 1977
#> 8903 Arkansas Idaho 1977
#> 8904 Florida Georgia 1977
#> 8905 Michigan Arizona 1977
#> 8906 Illinois Vermont 1977
#> 8907 Massachusetts Illinois 1977
#> 8908 Arkansas Pennsylvania 1977
#> 8909 Minnesota Maine 1977
#> 8910 Pennsylvania Maryland 1977
#> 8911 Indiana Kansas 1977
#> 8912 Alaska North Carolina 1977
#> 8913 Minnesota Missouri 1977
#> 8914 Mississippi Indiana 1977
#> 8915 New Mexico Iowa 1977
#> 8916 Oklahoma Washington 1977
#> 8917 Maryland Washington 1977
#> 8918 Utah Florida 1977
#> 8919 Oregon Colorado 1977
#> 8920 Kentucky Texas 1977
#> 8921 Colorado Maryland 1977
#> 8922 Colorado Massachusetts 1977
#> 8923 Maine Indiana 1977
#> 8924 Minnesota Wisconsin 1977
#> 8925 Idaho Minnesota 1977
#> 8926 Mississippi Maine 1977
#> 8927 California Virginia 1977
#> 8928 Pennsylvania Nebraska 1977
#> 8929 Oklahoma Indiana 1977
#> 8930 Louisiana Oklahoma 1977
#> 8931 Indiana Florida 1977
#> 8932 North Dakota Virginia 1977
#> 8933 Ohio Kansas 1977
#> 8934 Oregon Arizona 1977
#> 8935 Tennessee South Carolina 1977
#> 8936 Louisiana Wisconsin 1977
#> 8937 Connecticut Oregon 1977
#> 8938 Alabama North Dakota 1977
#> 8939 Nevada New Mexico 1977
#> 8940 Pennsylvania Alaska 1977
#> 8941 Rhode Island Maryland 1977
#> 8942 Arizona Missouri 1977
#> 8943 Michigan Louisiana 1977
#> 8944 Delaware New Hampshire 1977
#> 8945 Georgia Montana 1977
#> 8946 Michigan Illinois 1977
#> 8947 South Carolina Utah 1977
#> 8948 North Carolina Idaho 1977
#> 8949 Arizona Georgia 1977
#> 8950 Illinois Connecticut 1977
#> 8951 Mississippi North Carolina 1977
#> 8952 Kansas New York 1977
#> 8953 Alaska Nevada 1977
#> 8954 Florida Oklahoma 1977
#> 8955 Illinois Mississippi 1977
#> 8956 Colorado Utah 1977
#> 8957 Florida Ohio 1977
#> 8958 Wisconsin Ohio 1977
#> 8959 Virginia Kansas 1977
#> 8960 Oregon Connecticut 1977
#> 8961 South Carolina Massachusetts 1977
#> 8962 Illinois Indiana 1977
#> 8963 Delaware New Mexico 1977
#> 8964 Colorado Michigan 1977
#> 8965 Vermont Iowa 1977
#> 8966 South Carolina Washington 1977
#> 8967 Alaska South Dakota 1977
#> 8968 Delaware Idaho 1977
#> 8969 Connecticut Alabama 1977
#> 8970 Rhode Island Wisconsin 1977
#> 8971 South Dakota West Virginia 1977
#> 8972 Alaska Delaware 1977
#> 8973 Louisiana Nevada 1977
#> 8974 Hawaii Oklahoma 1977
#> 8975 Vermont Mississippi 1977
#> 8976 Hawaii Florida 1977
#> 8977 North Dakota Colorado 1977
#> 8978 Delaware California 1977
#> 8979 Minnesota Virginia 1977
#> 8980 Ohio Utah 1977
#> 8981 Alabama Utah 1977
#> 8982 Kansas Nebraska 1977
#> 8983 South Carolina Maryland 1977
#> 8984 Minnesota Massachusetts 1977
#> 8985 North Dakota Indiana 1977
#> 8986 Nevada Wisconsin 1977
#> 8987 Kentucky Vermont 1977
#> 8988 Oregon North Dakota 1977
#> 8989 Massachusetts Michigan 1977
#> 8990 Utah New Jersey 1977
#> 8991 Louisiana Montana 1977
#> 8992 Illinois Oklahoma 1977
#> 8993 Mississippi Colorado 1977
#> 8994 Minnesota Utah 1977
#> 8995 North Dakota Nebraska 1977
#> 8996 Louisiana Idaho 1977
#> 8997 Alabama Arkansas 1977
#> 8998 North Dakota Arkansas 1977
#> 8999 Kansas Oregon 1977
#> 9000 Washington Hawaii 1977
#> 9001 New York Oregon 1978
#> 9002 New York Michigan 1978
#> 9003 New York Pennsylvania 1978
#> 9004 New York Connecticut 1978
#> 9005 New York Maine 1978
#> 9006 New York Minnesota 1978
#> 9007 New York New Hampshire 1978
#> 9008 New York Rhode Island 1978
#> 9009 New York Indiana 1978
#> 9010 New York Florida 1978
#> 9011 New York Illinois 1978
#> 9012 Oregon Kentucky 1978
#> 9013 New York Ohio 1978
#> 9014 New York Maryland 1978
#> 9015 New York Nebraska 1978
#> 9016 New York California 1978
#> 9017 New York New Jersey 1978
#> 9018 New York Delaware 1978
#> 9019 New York Massachusetts 1978
#> 9020 New York West Virginia 1978
#> 9021 New York Washington 1978
#> 9022 New York Oklahoma 1978
#> 9023 Washington Kansas 1978
#> 9024 New York North Carolina 1978
#> 9025 New York Virginia 1978
#> 9026 Colorado Georgia 1978
#> 9027 New York Nevada 1978
#> 9028 New York Colorado 1978
#> 9029 New York Montana 1978
#> 9030 New York Idaho 1978
#> 9031 New York Vermont 1978
#> 9032 New York South Dakota 1978
#> 9033 New York New Mexico 1978
#> 9034 Florida Mississippi 1978
#> 9035 Kentucky Arkansas 1978
#> 9036 New Jersey Iowa 1978
#> 9037 New York Tennessee 1978
#> 9038 New York Texas 1978
#> 9039 Washington Missouri 1978
#> 9040 New York North Dakota 1978
#> 9041 Washington Wyoming 1978
#> 9042 New York Wisconsin 1978
#> 9043 California South Carolina 1978
#> 9044 Virginia Alabama 1978
#> 9045 Colorado Louisiana 1978
#> 9046 Massachusetts New York 1978
#> 9047 New York Arizona 1978
#> 9048 New Jersey Hawaii 1978
#> 9049 New York Alaska 1978
#> 9050 New York Utah 1978
#> 9051 California Arkansas 1978
#> 9052 Idaho Minnesota 1978
#> 9053 Idaho Colorado 1978
#> 9054 Colorado Maryland 1978
#> 9055 California New York 1978
#> 9056 California Washington 1978
#> 9057 Washington Montana 1978
#> 9058 Colorado Pennsylvania 1978
#> 9059 California New Mexico 1978
#> 9060 New Mexico New Hampshire 1978
#> 9061 North Carolina Virginia 1978
#> 9062 Connecticut Kentucky 1978
#> 9063 Arkansas North Carolina 1978
#> 9064 Minnesota Oregon 1978
#> 9065 Colorado Ohio 1978
#> 9066 Montana Maine 1978
#> 9067 Colorado Kansas 1978
#> 9068 Colorado Florida 1978
#> 9069 New Jersey Rhode Island 1978
#> 9070 Minnesota Iowa 1978
#> 9071 Illinois Massachusetts 1978
#> 9072 Colorado New Jersey 1978
#> 9073 Idaho Alabama 1978
#> 9074 Maine Indiana 1978
#> 9075 Maryland Delaware 1978
#> 9076 South Carolina Texas 1978
#> 9077 Montana Nebraska 1978
#> 9078 Nebraska Tennessee 1978
#> 9079 Colorado North Dakota 1978
#> 9080 Maine South Dakota 1978
#> 9081 Arkansas Louisiana 1978
#> 9082 Rhode Island Wyoming 1978
#> 9083 Mississippi Arizona 1978
#> 9084 South Carolina Idaho 1978
#> 9085 Colorado Connecticut 1978
#> 9086 Kentucky New Mexico 1978
#> 9087 Nebraska Georgia 1978
#> 9088 Texas Oklahoma 1978
#> 9089 Arkansas California 1978
#> 9090 New Mexico Hawaii 1978
#> 9091 Florida Nevada 1978
#> 9092 California Maryland 1978
#> 9093 Illinois Arkansas 1978
#> 9094 Michigan West Virginia 1978
#> 9095 Connecticut Vermont 1978
#> 9096 Kentucky Michigan 1978
#> 9097 Nevada Washington 1978
#> 9098 New Mexico Mississippi 1978
#> 9099 Florida Virginia 1978
#> 9100 California North Carolina 1978
#> 9101 New Jersey South Carolina 1978
#> 9102 California Indiana 1978
#> 9103 California Wisconsin 1978
#> 9104 Nevada Montana 1978
#> 9105 Rhode Island Missouri 1978
#> 9106 New Jersey New York 1978
#> 9107 New Mexico Nevada 1978
#> 9108 New Mexico Rhode Island 1978
#> 9109 Idaho Delaware 1978
#> 9110 Alabama North Dakota 1978
#> 9111 California Oregon 1978
#> 9112 Kentucky Colorado 1978
#> 9113 Oregon Minnesota 1978
#> 9114 Alabama Florida 1978
#> 9115 California Pennsylvania 1978
#> 9116 Nevada Utah 1978
#> 9117 Delaware Iowa 1978
#> 9118 Minnesota Illinois 1978
#> 9119 Mississippi Texas 1978
#> 9120 Illinois Alabama 1978
#> 9121 Connecticut Massachusetts 1978
#> 9122 New Jersey Kentucky 1978
#> 9123 Arkansas Kansas 1978
#> 9124 Colorado Maine 1978
#> 9125 California Arizona 1978
#> 9126 Kentucky Wisconsin 1978
#> 9127 Illinois Rhode Island 1978
#> 9128 Oregon Vermont 1978
#> 9129 New Jersey Michigan 1978
#> 9130 Kentucky Tennessee 1978
#> 9131 Florida Nebraska 1978
#> 9132 California Montana 1978
#> 9133 California Alaska 1978
#> 9134 New York Louisiana 1978
#> 9135 New York Kansas 1978
#> 9136 Idaho New Mexico 1978
#> 9137 New Jersey Ohio 1978
#> 9138 Wisconsin Colorado 1978
#> 9139 Connecticut New Hampshire 1978
#> 9140 Montana Idaho 1978
#> 9141 Nebraska South Carolina 1978
#> 9142 Florida South Dakota 1978
#> 9143 Indiana New York 1978
#> 9144 Illinois North Carolina 1978
#> 9145 Rhode Island Washington 1978
#> 9146 Mississippi Nebraska 1978
#> 9147 Colorado California 1978
#> 9148 California Georgia 1978
#> 9149 South Carolina Wyoming 1978
#> 9150 Michigan Delaware 1978
#> 9151 Illinois Florida 1978
#> 9152 North Dakota Iowa 1978
#> 9153 New Mexico West Virginia 1978
#> 9154 California Minnesota 1978
#> 9155 North Carolina Indiana 1978
#> 9156 Delaware Connecticut 1978
#> 9157 New Jersey Massachusetts 1978
#> 9158 California Hawaii 1978
#> 9159 Kentucky Illinois 1978
#> 9160 Connecticut New Jersey 1978
#> 9161 Vermont Kentucky 1978
#> 9162 Pennsylvania Oklahoma 1978
#> 9163 Michigan Vermont 1978
#> 9164 Nevada Mississippi 1978
#> 9165 Florida Arizona 1978
#> 9166 California Colorado 1978
#> 9167 Illinois New Jersey 1978
#> 9168 Texas Maryland 1978
#> 9169 New Jersey North Carolina 1978
#> 9170 Alaska Connecticut 1978
#> 9171 Idaho Missouri 1978
#> 9172 Virginia Utah 1978
#> 9173 Delaware Alabama 1978
#> 9174 Mississippi Alabama 1978
#> 9175 Delaware Montana 1978
#> 9176 Vermont Connecticut 1978
#> 9177 Montana Virginia 1978
#> 9178 Colorado Michigan 1978
#> 9179 Montana Texas 1978
#> 9180 Colorado Rhode Island 1978
#> 9181 Illinois Wisconsin 1978
#> 9182 Minnesota Tennessee 1978
#> 9183 Nevada Minnesota 1978
#> 9184 Tennessee Arkansas 1978
#> 9185 Illinois New Mexico 1978
#> 9186 Alaska New York 1978
#> 9187 Washington North Dakota 1978
#> 9188 South Dakota North Carolina 1978
#> 9189 Kansas Iowa 1978
#> 9190 Oregon Delaware 1978
#> 9191 Connecticut New York 1978
#> 9192 Hawaii Oregon 1978
#> 9193 New Jersey Maine 1978
#> 9194 Nevada Idaho 1978
#> 9195 New Hampshire North Dakota 1978
#> 9196 Michigan Illinois 1978
#> 9197 Kentucky Massachusetts 1978
#> 9198 Tennessee Montana 1978
#> 9199 Georgia Louisiana 1978
#> 9200 Montana New Hampshire 1978
#> 9201 Hawaii Alaska 1978
#> 9202 Florida Massachusetts 1978
#> 9203 North Dakota Washington 1978
#> 9204 Maryland Kentucky 1978
#> 9205 Oregon Ohio 1978
#> 9206 Minnesota New Jersey 1978
#> 9207 Alaska Utah 1978
#> 9208 New York Hawaii 1978
#> 9209 Illinois California 1978
#> 9210 Vermont Nebraska 1978
#> 9211 Rhode Island Maryland 1978
#> 9212 Iowa Oregon 1978
#> 9213 Vermont Maine 1978
#> 9214 Wisconsin Rhode Island 1978
#> 9215 Wisconsin Idaho 1978
#> 9216 Connecticut Pennsylvania 1978
#> 9217 Minnesota Colorado 1978
#> 9218 Illinois New York 1978
#> 9219 Florida Arkansas 1978
#> 9220 Arkansas Wyoming 1978
#> 9221 Montana Tennessee 1978
#> 9222 Indiana South Dakota 1978
#> 9223 Maine Nevada 1978
#> 9224 Louisiana New Mexico 1978
#> 9225 Tennessee Virginia 1978
#> 9226 Wisconsin South Carolina 1978
#> 9227 Minnesota California 1978
#> 9228 New Mexico Kansas 1978
#> 9229 New Mexico Alabama 1978
#> 9230 Illinois West Virginia 1978
#> 9231 Illinois Minnesota 1978
#> 9232 Vermont New Hampshire 1978
#> 9233 Iowa Vermont 1978
#> 9234 Wyoming Maryland 1978
#> 9235 Kentucky Florida 1978
#> 9236 Illinois Montana 1978
#> 9237 Kentucky Texas 1978
#> 9238 Idaho North Dakota 1978
#> 9239 Alaska South Dakota 1978
#> 9240 Kentucky North Carolina 1978
#> 9241 Nevada Kentucky 1978
#> 9242 Nebraska Iowa 1978
#> 9243 Oregon Alabama 1978
#> 9244 Delaware Massachusetts 1978
#> 9245 Hawaii Florida 1978
#> 9246 Nebraska Ohio 1978
#> 9247 Alaska Nebraska 1978
#> 9248 Ohio Connecticut 1978
#> 9249 Kentucky New York 1978
#> 9250 Illinois Michigan 1978
#> 9251 California New Jersey 1978
#> 9252 Kentucky Minnesota 1978
#> 9253 Kansas Colorado 1978
#> 9254 Illinois Idaho 1978
#> 9255 Vermont New York 1978
#> 9256 Nevada Georgia 1978
#> 9257 Mississippi California 1978
#> 9258 Colorado Hawaii 1978
#> 9259 California Delaware 1978
#> 9260 Oregon Montana 1978
#> 9261 North Dakota Arkansas 1978
#> 9262 Maine Missouri 1978
#> 9263 Connecticut Louisiana 1978
#> 9264 Kentucky Utah 1978
#> 9265 Maryland Indiana 1978
#> 9266 New Mexico Delaware 1978
#> 9267 Wisconsin Massachusetts 1978
#> 9268 Mississippi Ohio 1978
#> 9269 Washington Rhode Island 1978
#> 9270 Washington New York 1978
#> 9271 Iowa Oklahoma 1978
#> 9272 Alabama California 1978
#> 9273 California Utah 1978
#> 9274 Maine New Mexico 1978
#> 9275 Kansas Kentucky 1978
#> 9276 Illinois Colorado 1978
#> 9277 Vermont Wyoming 1978
#> 9278 Nebraska Texas 1978
#> 9279 Michigan South Carolina 1978
#> 9280 New Jersey Oregon 1978
#> 9281 Washington Pennsylvania 1978
#> 9282 Nevada Arkansas 1978
#> 9283 Michigan Nebraska 1978
#> 9284 Michigan Washington 1978
#> 9285 West Virginia Wyoming 1978
#> 9286 Oklahoma South Dakota 1978
#> 9287 Oregon Alaska 1978
#> 9288 South Carolina Nevada 1978
#> 9289 Montana Michigan 1978
#> 9290 California Rhode Island 1978
#> 9291 Louisiana Tennessee 1978
#> 9292 Rhode Island New Hampshire 1978
#> 9293 California Illinois 1978
#> 9294 Kentucky South Dakota 1978
#> 9295 Georgia Vermont 1978
#> 9296 Georgia Connecticut 1978
#> 9297 Washington New Mexico 1978
#> 9298 California Vermont 1978
#> 9299 Colorado Wisconsin 1978
#> 9300 Maryland New Jersey 1978
#> 9301 Tennessee Florida 1978
#> 9302 New Mexico Oklahoma 1978
#> 9303 Kentucky Maryland 1978
#> 9304 Virginia Connecticut 1978
#> 9305 Maryland California 1978
#> 9306 Wisconsin Kansas 1978
#> 9307 Arkansas Illinois 1978
#> 9308 Iowa Kansas 1978
#> 9309 New Jersey Idaho 1978
#> 9310 Wisconsin Nevada 1978
#> 9311 Kentucky Oklahoma 1978
#> 9312 Texas Pennsylvania 1978
#> 9313 Oklahoma Indiana 1978
#> 9314 Louisiana Alaska 1978
#> 9315 Maryland Maine 1978
#> 9316 Wisconsin North Carolina 1978
#> 9317 Kentucky Vermont 1978
#> 9318 Oregon Mississippi 1978
#> 9319 Idaho Kansas 1978
#> 9320 North Dakota Wyoming 1978
#> 9321 Kentucky Louisiana 1978
#> 9322 California Oklahoma 1978
#> 9323 Illinois Texas 1978
#> 9324 New Jersey Connecticut 1978
#> 9325 Tennessee Massachusetts 1978
#> 9326 Arizona Montana 1978
#> 9327 Nebraska Mississippi 1978
#> 9328 North Carolina South Carolina 1978
#> 9329 Georgia Indiana 1978
#> 9330 West Virginia Illinois 1978
#> 9331 New Mexico Colorado 1978
#> 9332 Louisiana Pennsylvania 1978
#> 9333 Mississippi Kentucky 1978
#> 9334 Missouri Minnesota 1978
#> 9335 Kentucky Alaska 1978
#> 9336 Massachusetts Illinois 1978
#> 9337 Montana Ohio 1978
#> 9338 Delaware Arkansas 1978
#> 9339 Idaho Arizona 1978
#> 9340 Hawaii Vermont 1978
#> 9341 Nebraska North Dakota 1978
#> 9342 Louisiana North Dakota 1978
#> 9343 New Hampshire New York 1978
#> 9344 Massachusetts Florida 1978
#> 9345 New Hampshire Virginia 1978
#> 9346 New York Wyoming 1978
#> 9347 South Dakota Wisconsin 1978
#> 9348 Tennessee New York 1978
#> 9349 Minnesota Delaware 1978
#> 9350 Georgia Montana 1978
#> 9351 Tennessee Georgia 1978
#> 9352 Minnesota Rhode Island 1978
#> 9353 Hawaii New Jersey 1978
#> 9354 Montana California 1978
#> 9355 North Dakota Idaho 1978
#> 9356 South Dakota Hawaii 1978
#> 9357 Virginia Florida 1978
#> 9358 Nevada Oregon 1978
#> 9359 Arizona Missouri 1978
#> 9360 Ohio Texas 1978
#> 9361 Wisconsin Illinois 1978
#> 9362 Wisconsin Utah 1978
#> 9363 Illinois Georgia 1978
#> 9364 Rhode Island New York 1978
#> 9365 Montana Nevada 1978
#> 9366 Hawaii Wisconsin 1978
#> 9367 Idaho Washington 1978
#> 9368 New Jersey Louisiana 1978
#> 9369 Oregon Michigan 1978
#> 9370 North Dakota New York 1978
#> 9371 Oklahoma Georgia 1978
#> 9372 Wisconsin Hawaii 1978
#> 9373 Arkansas Colorado 1978
#> 9374 Rhode Island Minnesota 1978
#> 9375 Illinois Iowa 1978
#> 9376 Wyoming West Virginia 1978
#> 9377 Florida South Carolina 1978
#> 9378 Florida Louisiana 1978
#> 9379 Utah New Mexico 1978
#> 9380 Maryland Kansas 1978
#> 9381 Delaware Missouri 1978
#> 9382 Iowa Montana 1978
#> 9383 Pennsylvania Rhode Island 1978
#> 9384 New Jersey Colorado 1978
#> 9385 Maryland Virginia 1978
#> 9386 Alabama Georgia 1978
#> 9387 New Hampshire Hawaii 1978
#> 9388 Colorado Oklahoma 1978
#> 9389 New Jersey New Hampshire 1978
#> 9390 Florida Utah 1978
#> 9391 California Ohio 1978
#> 9392 Kansas Vermont 1978
#> 9393 Rhode Island Nevada 1978
#> 9394 Maine Nebraska 1978
#> 9395 Florida Maryland 1978
#> 9396 Wyoming Arizona 1978
#> 9397 Massachusetts Washington 1978
#> 9398 New Hampshire Tennessee 1978
#> 9399 Oregon Wisconsin 1978
#> 9400 Connecticut Oregon 1978
#> 9401 West Virginia Kentucky 1978
#> 9402 Kentucky Alabama 1978
#> 9403 Wisconsin New York 1978
#> 9404 Oregon New Mexico 1978
#> 9405 Wisconsin Michigan 1978
#> 9406 Oregon Iowa 1978
#> 9407 Oklahoma Nevada 1978
#> 9408 North Dakota Maryland 1978
#> 9409 New Jersey Pennsylvania 1978
#> 9410 Rhode Island North Carolina 1978
#> 9411 South Dakota West Virginia 1978
#> 9412 Pennsylvania Minnesota 1978
#> 9413 Minnesota Maine 1978
#> 9414 Michigan California 1978
#> 9415 Rhode Island Connecticut 1978
#> 9416 Indiana Hawaii 1978
#> 9417 Delaware New Hampshire 1978
#> 9418 Arizona Idaho 1978
#> 9419 North Dakota Indiana 1978
#> 9420 Colorado Minnesota 1978
#> 9421 Washington Illinois 1978
#> 9422 Minnesota Washington 1978
#> 9423 Pennsylvania Maryland 1978
#> 9424 Arkansas Idaho 1978
#> 9425 Florida Georgia 1978
#> 9426 Nebraska Arkansas 1978
#> 9427 Michigan Arizona 1978
#> 9428 Delaware Wyoming 1978
#> 9429 California Massachusetts 1978
#> 9430 Vermont Mississippi 1978
#> 9431 North Dakota Virginia 1978
#> 9432 Arkansas Pennsylvania 1978
#> 9433 Montana New Mexico 1978
#> 9434 Arkansas Iowa 1978
#> 9435 Wisconsin Ohio 1978
#> 9436 New Hampshire Oregon 1978
#> 9437 Vermont North Dakota 1978
#> 9438 North Carolina Minnesota 1978
#> 9439 North Carolina Michigan 1978
#> 9440 Maryland Washington 1978
#> 9441 Arizona Nebraska 1978
#> 9442 Alaska North Carolina 1978
#> 9443 Minnesota Missouri 1978
#> 9444 Mississippi Indiana 1978
#> 9445 Minnesota Wisconsin 1978
#> 9446 Oregon West Virginia 1978
#> 9447 Mississippi Maine 1978
#> 9448 Pennsylvania Maine 1978
#> 9449 Wisconsin New Jersey 1978
#> 9450 Louisiana Illinois 1978
#> 9451 Idaho Ohio 1978
#> 9452 Wisconsin Vermont 1978
#> 9453 Delaware North Dakota 1978
#> 9454 New Mexico Iowa 1978
#> 9455 Delaware Illinois 1978
#> 9456 Louisiana Oklahoma 1978
#> 9457 Ohio Washington 1978
#> 9458 North Dakota Nebraska 1978
#> 9459 Ohio Kansas 1978
#> 9460 Missouri Kansas 1978
#> 9461 Kentucky Kansas 1978
#> 9462 Oregon Arizona 1978
#> 9463 Tennessee South Carolina 1978
#> 9464 Louisiana Wisconsin 1978
#> 9465 North Dakota West Virginia 1978
#> 9466 Rhode Island Oregon 1978
#> 9467 Arkansas New Mexico 1978
#> 9468 Michigan Minnesota 1978
#> 9469 Pennsylvania Alaska 1978
#> 9470 Nebraska New Hampshire 1978
#> 9471 Oregon Colorado 1978
#> 9472 Delaware California 1978
#> 9473 Indiana Virginia 1978
#> 9474 South Carolina Utah 1978
#> 9475 Iowa Nebraska 1978
#> 9476 Mississippi North Carolina 1978
#> 9477 Hawaii North Dakota 1978
#> 9478 Kansas New York 1978
#> 9479 Florida Oklahoma 1978
#> 9480 California Idaho 1978
#> 9481 Oregon Connecticut 1978
#> 9482 Colorado Massachusetts 1978
#> 9483 California North Dakota 1978
#> 9484 Illinois New Hampshire 1978
#> 9485 Oklahoma Colorado 1978
#> 9486 Minnesota Virginia 1978
#> 9487 Missouri Maryland 1978
#> 9488 Illinois Connecticut 1978
#> 9489 Rhode Island Wisconsin 1978
#> 9490 Arkansas Montana 1978
#> 9491 Hawaii Oklahoma 1978
#> 9492 South Carolina Washington 1978
#> 9493 Indiana Florida 1978
#> 9494 North Dakota Colorado 1978
#> 9495 Massachusetts Virginia 1978
#> 9496 Ohio Utah 1978
#> 9497 Alabama Utah 1978
#> 9498 Minnesota Utah 1978
#> 9499 South Carolina Maryland 1978
#> 9500 Virginia Kansas 1978
#> 9501 New York Oregon 1979
#> 9502 New York Pennsylvania 1979
#> 9503 New York Michigan 1979
#> 9504 New York Connecticut 1979
#> 9505 New York Rhode Island 1979
#> 9506 New York Minnesota 1979
#> 9507 New York New Hampshire 1979
#> 9508 New York Maine 1979
#> 9509 New York Florida 1979
#> 9510 New York Nebraska 1979
#> 9511 New York Indiana 1979
#> 9512 New York Kentucky 1979
#> 9513 New York Ohio 1979
#> 9514 New York Illinois 1979
#> 9515 New York New Jersey 1979
#> 9516 New York Maryland 1979
#> 9517 New York California 1979
#> 9518 New York Delaware 1979
#> 9519 New York Massachusetts 1979
#> 9520 New York Oklahoma 1979
#> 9521 Colorado Georgia 1979
#> 9522 Washington Kansas 1979
#> 9523 New York Virginia 1979
#> 9524 New York West Virginia 1979
#> 9525 New York Washington 1979
#> 9526 New York North Carolina 1979
#> 9527 New York South Dakota 1979
#> 9528 New York Idaho 1979
#> 9529 New York Vermont 1979
#> 9530 New York Nevada 1979
#> 9531 New York Montana 1979
#> 9532 New York Colorado 1979
#> 9533 New York Tennessee 1979
#> 9534 New York New Mexico 1979
#> 9535 Florida Mississippi 1979
#> 9536 Kentucky Arkansas 1979
#> 9537 New Jersey Iowa 1979
#> 9538 Washington Missouri 1979
#> 9539 New York Texas 1979
#> 9540 Colorado Louisiana 1979
#> 9541 California South Carolina 1979
#> 9542 New York Wisconsin 1979
#> 9543 New York North Dakota 1979
#> 9544 Washington Wyoming 1979
#> 9545 New York Arizona 1979
#> 9546 Virginia Alabama 1979
#> 9547 Massachusetts New York 1979
#> 9548 New Jersey Hawaii 1979
#> 9549 Oregon Alaska 1979
#> 9550 Colorado Minnesota 1979
#> 9551 New York Utah 1979
#> 9552 California Arkansas 1979
#> 9553 Montana Kentucky 1979
#> 9554 Idaho Colorado 1979
#> 9555 Colorado Maryland 1979
#> 9556 California New York 1979
#> 9557 Colorado Pennsylvania 1979
#> 9558 Washington Montana 1979
#> 9559 California Oregon 1979
#> 9560 California Washington 1979
#> 9561 California New Mexico 1979
#> 9562 New Mexico New Hampshire 1979
#> 9563 North Carolina Virginia 1979
#> 9564 New Mexico Iowa 1979
#> 9565 Arkansas North Carolina 1979
#> 9566 Colorado New Jersey 1979
#> 9567 Colorado Kansas 1979
#> 9568 Colorado Ohio 1979
#> 9569 Montana Maine 1979
#> 9570 Colorado Florida 1979
#> 9571 New Jersey Rhode Island 1979
#> 9572 Illinois Massachusetts 1979
#> 9573 California Indiana 1979
#> 9574 Idaho Alabama 1979
#> 9575 New Mexico Nebraska 1979
#> 9576 Maryland Delaware 1979
#> 9577 South Carolina Texas 1979
#> 9578 Florida Arizona 1979
#> 9579 New York Georgia 1979
#> 9580 Nebraska Tennessee 1979
#> 9581 Colorado North Dakota 1979
#> 9582 Colorado South Dakota 1979
#> 9583 Arkansas Louisiana 1979
#> 9584 Arkansas California 1979
#> 9585 Rhode Island Wyoming 1979
#> 9586 Montana Nevada 1979
#> 9587 South Carolina Idaho 1979
#> 9588 Colorado Connecticut 1979
#> 9589 Colorado Michigan 1979
#> 9590 Texas Oklahoma 1979
#> 9591 Ohio Vermont 1979
#> 9592 New Mexico Hawaii 1979
#> 9593 California Maryland 1979
#> 9594 Illinois Arkansas 1979
#> 9595 Michigan West Virginia 1979
#> 9596 Alabama Florida 1979
#> 9597 Nevada Washington 1979
#> 9598 New Mexico Mississippi 1979
#> 9599 Florida Virginia 1979
#> 9600 California North Carolina 1979
#> 9601 North Carolina Indiana 1979
#> 9602 New Mexico Rhode Island 1979
#> 9603 New Jersey South Carolina 1979
#> 9604 California Wisconsin 1979
#> 9605 Nevada Montana 1979
#> 9606 Rhode Island Missouri 1979
#> 9607 Oregon Kentucky 1979
#> 9608 New Jersey New York 1979
#> 9609 Washington New Mexico 1979
#> 9610 California Pennsylvania 1979
#> 9611 New York Kansas 1979
#> 9612 Montana Minnesota 1979
#> 9613 Idaho Delaware 1979
#> 9614 Maine Iowa 1979
#> 9615 Alabama North Dakota 1979
#> 9616 Minnesota Oregon 1979
#> 9617 Hawaii Alaska 1979
#> 9618 Connecticut Louisiana 1979
#> 9619 Nevada Utah 1979
#> 9620 Minnesota Illinois 1979
#> 9621 Kentucky Michigan 1979
#> 9622 Illinois Alabama 1979
#> 9623 Connecticut Massachusetts 1979
#> 9624 Arkansas Kansas 1979
#> 9625 Mississippi Arizona 1979
#> 9626 Florida Nebraska 1979
#> 9627 Kentucky Wisconsin 1979
#> 9628 Alabama Georgia 1979
#> 9629 Colorado Maine 1979
#> 9630 Illinois Rhode Island 1979
#> 9631 Kentucky Tennessee 1979
#> 9632 Maine South Dakota 1979
#> 9633 Kentucky Colorado 1979
#> 9634 Oregon Vermont 1979
#> 9635 Massachusetts Minnesota 1979
#> 9636 California Montana 1979
#> 9637 New Jersey Ohio 1979
#> 9638 Wisconsin Colorado 1979
#> 9639 Connecticut New Hampshire 1979
#> 9640 Montana Idaho 1979
#> 9641 Nebraska South Carolina 1979
#> 9642 Colorado California 1979
#> 9643 Indiana New York 1979
#> 9644 New Mexico Nevada 1979
#> 9645 Illinois North Carolina 1979
#> 9646 Colorado Oklahoma 1979
#> 9647 Nevada Mississippi 1979
#> 9648 Nevada Nebraska 1979
#> 9649 Rhode Island Washington 1979
#> 9650 Massachusetts Hawaii 1979
#> 9651 Idaho Missouri 1979
#> 9652 California Arizona 1979
#> 9653 South Carolina Wyoming 1979
#> 9654 Michigan Delaware 1979
#> 9655 Utah Texas 1979
#> 9656 Illinois Florida 1979
#> 9657 Vermont Connecticut 1979
#> 9658 Kentucky New Mexico 1979
#> 9659 Delaware Connecticut 1979
#> 9660 New Mexico West Virginia 1979
#> 9661 Arkansas Iowa 1979
#> 9662 North Carolina Louisiana 1979
#> 9663 Minnesota Tennessee 1979
#> 9664 New Jersey Massachusetts 1979
#> 9665 California Hawaii 1979
#> 9666 Maryland Kentucky 1979
#> 9667 Kentucky Illinois 1979
#> 9668 Maine Indiana 1979
#> 9669 Connecticut New Jersey 1979
#> 9670 Michigan Vermont 1979
#> 9671 New Jersey Michigan 1979
#> 9672 California Colorado 1979
#> 9673 Illinois New Jersey 1979
#> 9674 Texas Maryland 1979
#> 9675 New Jersey North Carolina 1979
#> 9676 Alaska Connecticut 1979
#> 9677 Virginia Utah 1979
#> 9678 Delaware Alabama 1979
#> 9679 Oregon Ohio 1979
#> 9680 Delaware Montana 1979
#> 9681 Florida Nevada 1979
#> 9682 Montana Virginia 1979
#> 9683 Wisconsin New Mexico 1979
#> 9684 Colorado Rhode Island 1979
#> 9685 Illinois Wisconsin 1979
#> 9686 Vermont Maine 1979
#> 9687 California Alaska 1979
#> 9688 Illinois Texas 1979
#> 9689 Tennessee Arkansas 1979
#> 9690 Arkansas Minnesota 1979
#> 9691 Alaska New York 1979
#> 9692 Washington North Dakota 1979
#> 9693 South Dakota North Carolina 1979
#> 9694 Oregon Delaware 1979
#> 9695 Connecticut New York 1979
#> 9696 Washington Oklahoma 1979
#> 9697 Hawaii Oregon 1979
#> 9698 New Jersey Maine 1979
#> 9699 Oklahoma Kentucky 1979
#> 9700 Nevada Idaho 1979
#> 9701 New Hampshire North Dakota 1979
#> 9702 Colorado South Carolina 1979
#> 9703 Oregon Alabama 1979
#> 9704 Michigan Illinois 1979
#> 9705 Tennessee Montana 1979
#> 9706 Kentucky Massachusetts 1979
#> 9707 Delaware Iowa 1979
#> 9708 Oregon Hawaii 1979
#> 9709 Illinois Michigan 1979
#> 9710 Montana New Hampshire 1979
#> 9711 Florida Massachusetts 1979
#> 9712 North Dakota Washington 1979
#> 9713 Minnesota New Jersey 1979
#> 9714 Alaska Utah 1979
#> 9715 Illinois California 1979
#> 9716 Rhode Island Maryland 1979
#> 9717 Iowa Oregon 1979
#> 9718 Wisconsin Rhode Island 1979
#> 9719 Wisconsin Idaho 1979
#> 9720 Vermont Nebraska 1979
#> 9721 North Carolina Ohio 1979
#> 9722 Connecticut Pennsylvania 1979
#> 9723 Vermont New Mexico 1979
#> 9724 Minnesota Colorado 1979
#> 9725 Florida South Dakota 1979
#> 9726 Illinois New York 1979
#> 9727 North Carolina Minnesota 1979
#> 9728 Minnesota California 1979
#> 9729 Florida Arkansas 1979
#> 9730 Arkansas Wyoming 1979
#> 9731 Montana Tennessee 1979
#> 9732 Nevada Georgia 1979
#> 9733 New Jersey Louisiana 1979
#> 9734 Nevada Texas 1979
#> 9735 Arkansas Vermont 1979
#> 9736 Maine Nevada 1979
#> 9737 West Virginia Kansas 1979
#> 9738 West Virginia Georgia 1979
#> 9739 Tennessee Virginia 1979
#> 9740 Kentucky Alabama 1979
#> 9741 Illinois West Virginia 1979
#> 9742 Vermont New Hampshire 1979
#> 9743 Indiana Kentucky 1979
#> 9744 Wyoming Maryland 1979
#> 9745 Kentucky Florida 1979
#> 9746 Illinois Montana 1979
#> 9747 Idaho North Dakota 1979
#> 9748 Kentucky North Carolina 1979
#> 9749 Ohio Connecticut 1979
#> 9750 Delaware Massachusetts 1979
#> 9751 Hawaii Florida 1979
#> 9752 Kentucky New York 1979
#> 9753 California New Jersey 1979
#> 9754 North Dakota Oklahoma 1979
#> 9755 Maryland Texas 1979
#> 9756 Wisconsin North Carolina 1979
#> 9757 New Mexico Alabama 1979
#> 9758 Kansas Colorado 1979
#> 9759 Iowa Kansas 1979
#> 9760 Illinois Idaho 1979
#> 9761 Vermont New York 1979
#> 9762 Oregon Montana 1979
#> 9763 California Delaware 1979
#> 9764 North Dakota Arkansas 1979
#> 9765 Maine Missouri 1979
#> 9766 Colorado New Mexico 1979
#> 9767 Maryland Indiana 1979
#> 9768 Kentucky Utah 1979
#> 9769 New Mexico Delaware 1979
#> 9770 South Carolina Connecticut 1979
#> 9771 Wisconsin Massachusetts 1979
#> 9772 Alabama California 1979
#> 9773 Washington Rhode Island 1979
#> 9774 Washington New York 1979
#> 9775 North Dakota Iowa 1979
#> 9776 Oklahoma South Dakota 1979
#> 9777 Illinois Georgia 1979
#> 9778 Wisconsin Hawaii 1979
#> 9779 California Utah 1979
#> 9780 Hawaii Minnesota 1979
#> 9781 Illinois Colorado 1979
#> 9782 Vermont Wyoming 1979
#> 9783 New Jersey Oregon 1979
#> 9784 Washington Pennsylvania 1979
#> 9785 Nevada Arkansas 1979
#> 9786 Louisiana New Mexico 1979
#> 9787 Vermont Kentucky 1979
#> 9788 Michigan Washington 1979
#> 9789 Rhode Island New Hampshire 1979
#> 9790 New Jersey Vermont 1979
#> 9791 Montana Michigan 1979
#> 9792 North Carolina South Carolina 1979
#> 9793 California Rhode Island 1979
#> 9794 Louisiana Tennessee 1979
#> 9795 California Illinois 1979
#> 9796 Michigan Minnesota 1979
#> 9797 California Ohio 1979
#> 9798 Maryland New Jersey 1979
#> 9799 Florida Georgia 1979
#> 9800 Texas Pennsylvania 1979
#> 9801 Colorado Wisconsin 1979
#> 9802 Tennessee Florida 1979
#> 9803 Colorado Nebraska 1979
#> 9804 Wisconsin Kansas 1979
#> 9805 Virginia Connecticut 1979
#> 9806 Illinois Wyoming 1979
#> 9807 Florida Louisiana 1979
#> 9808 Kentucky Maryland 1979
#> 9809 Maryland California 1979
#> 9810 Washington South Dakota 1979
#> 9811 Rhode Island Nevada 1979
#> 9812 Arkansas Illinois 1979
#> 9813 New Jersey Idaho 1979
#> 9814 Alaska Nevada 1979
#> 9815 Oklahoma Indiana 1979
#> 9816 Oregon Iowa 1979
#> 9817 Kansas Alaska 1979
#> 9818 Louisiana Alaska 1979
#> 9819 North Dakota Wyoming 1979
#> 9820 Maryland Maine 1979
#> 9821 California Oklahoma 1979
#> 9822 Louisiana Oklahoma 1979
#> 9823 Maine New Mexico 1979
#> 9824 Idaho Ohio 1979
#> 9825 Nebraska Vermont 1979
#> 9826 Oregon Mississippi 1979
#> 9827 Georgia Indiana 1979
#> 9828 California Vermont 1979
#> 9829 New Jersey Connecticut 1979
#> 9830 Tennessee Massachusetts 1979
#> 9831 Kentucky Louisiana 1979
#> 9832 North Dakota Kentucky 1979
#> 9833 Nebraska Mississippi 1979
#> 9834 Hawaii Vermont 1979
#> 9835 New Mexico Colorado 1979
#> 9836 Louisiana Pennsylvania 1979
#> 9837 Minnesota Iowa 1979
#> 9838 Massachusetts Illinois 1979
#> 9839 Delaware Arkansas 1979
#> 9840 Idaho Arizona 1979
#> 9841 New York Wyoming 1979
#> 9842 Nebraska North Dakota 1979
#> 9843 Illinois Hawaii 1979
#> 9844 New Hampshire New York 1979
#> 9845 Massachusetts Florida 1979
#> 9846 New Hampshire Virginia 1979
#> 9847 South Dakota Wisconsin 1979
#> 9848 Tennessee New York 1979
#> 9849 Minnesota Delaware 1979
#> 9850 Mississippi California 1979
#> 9851 Minnesota Rhode Island 1979
#> 9852 Hawaii New Jersey 1979
#> 9853 Montana California 1979
#> 9854 North Dakota Idaho 1979
#> 9855 New Mexico Connecticut 1979
#> 9856 Tennessee Georgia 1979
#> 9857 Alaska Iowa 1979
#> 9858 Virginia Florida 1979
#> 9859 Nevada Oregon 1979
#> 9860 Wisconsin Illinois 1979
#> 9861 Wisconsin Utah 1979
#> 9862 Rhode Island New York 1979
#> 9863 Hawaii Wisconsin 1979
#> 9864 Utah New Mexico 1979
#> 9865 Idaho Washington 1979
#> 9866 Kentucky Alaska 1979
#> 9867 Nebraska Texas 1979
#> 9868 Maryland Kansas 1979
#> 9869 Oregon Michigan 1979
#> 9870 North Dakota New York 1979
#> 9871 Arkansas Colorado 1979
#> 9872 Colorado Arizona 1979
#> 9873 Wyoming West Virginia 1979
#> 9874 Ohio Texas 1979
#> 9875 Florida South Carolina 1979
#> 9876 Delaware Missouri 1979
#> 9877 Nevada Hawaii 1979
#> 9878 Iowa Montana 1979
#> 9879 Kentucky Nebraska 1979
#> 9880 Pennsylvania Rhode Island 1979
#> 9881 Wyoming Michigan 1979
#> 9882 New Jersey Colorado 1979
#> 9883 Maryland Virginia 1979
#> 9884 New Jersey New Hampshire 1979
#> 9885 Kansas Nevada 1979
#> 9886 Rhode Island Minnesota 1979
#> 9887 Florida Utah 1979
#> 9888 Rhode Island Georgia 1979
#> 9889 Delaware Wyoming 1979
#> 9890 Florida Maryland 1979
#> 9891 Wisconsin Michigan 1979
#> 9892 Massachusetts Washington 1979
#> 9893 New Hampshire Tennessee 1979
#> 9894 Wisconsin South Carolina 1979
#> 9895 New Jersey Pennsylvania 1979
#> 9896 Oregon Wisconsin 1979
#> 9897 Connecticut Oregon 1979
#> 9898 Colorado Montana 1979
#> 9899 Ohio Alabama 1979
#> 9900 Wisconsin New York 1979
#> 9901 Mississippi Nebraska 1979
#> 9902 North Dakota Maryland 1979
#> 9903 Rhode Island North Carolina 1979
#> 9904 South Dakota West Virginia 1979
#> 9905 Minnesota Maine 1979
#> 9906 Michigan California 1979
#> 9907 Delaware New Hampshire 1979
#> 9908 Kentucky South Dakota 1979
#> 9909 North Dakota Indiana 1979
#> 9910 Washington Illinois 1979
#> 9911 Minnesota Washington 1979
#> 9912 Mississippi Texas 1979
#> 9913 Kentucky Ohio 1979
#> 9914 Pennsylvania Maryland 1979
#> 9915 Arkansas Idaho 1979
#> 9916 Nebraska Arkansas 1979
#> 9917 California Massachusetts 1979
#> 9918 Delaware North Dakota 1979
#> 9919 Vermont Mississippi 1979
#> 9920 North Dakota Virginia 1979
#> 9921 Pennsylvania Nebraska 1979
#> 9922 Indiana Kansas 1979
#> 9923 Michigan Arizona 1979
#> 9924 Arkansas Pennsylvania 1979
#> 9925 Minnesota Wisconsin 1979
#> 9926 Wisconsin New Jersey 1979
#> 9927 New Hampshire Oregon 1979
#> 9928 Hawaii North Dakota 1979
#> 9929 Kentucky Minnesota 1979
#> 9930 Maryland Washington 1979
#> 9931 Indiana South Dakota 1979
#> 9932 Missouri Kansas 1979
#> 9933 Alaska North Carolina 1979
#> 9934 Minnesota Missouri 1979
#> 9935 Oregon West Virginia 1979
#> 9936 Pennsylvania Maine 1979
#> 9937 California Iowa 1979
#> 9938 Louisiana Illinois 1979
#> 9939 Delaware Illinois 1979
#> 9940 Kansas Nebraska 1979
#> 9941 Michigan South Carolina 1979
#> 9942 Delaware Louisiana 1979
#> 9943 Kansas Alabama 1979
#> 9944 California Nevada 1979
#> 9945 Ohio Washington 1979
#> 9946 Wisconsin Ohio 1979
#> 9947 Ohio Kansas 1979
#> 9948 Kentucky Kansas 1979
#> 9949 Wyoming Arizona 1979
#> 9950 Colorado Tennessee 1979
#> 9951 Indiana Louisiana 1979
#> 9952 Louisiana Wisconsin 1979
#> 9953 North Dakota West Virginia 1979
#> 9954 Kansas Vermont 1979
#> 9955 Kentucky Vermont 1979
#> 9956 Rhode Island Oregon 1979
#> 9957 Nevada New Mexico 1979
#> 9958 Oregon New Mexico 1979
#> 9959 Pennsylvania Alaska 1979
#> 9960 Nebraska New Hampshire 1979
#> 9961 South Carolina Nevada 1979
#> 9962 Oregon Colorado 1979
#> 9963 Rhode Island California 1979
#> 9964 Delaware California 1979
#> 9965 Indiana Virginia 1979
#> 9966 South Carolina Utah 1979
#> 9967 Minnesota Georgia 1979
#> 9968 Florida Connecticut 1979
#> 9969 Tennessee South Carolina 1979
#> 9970 Mississippi North Carolina 1979
#> 9971 Kansas New York 1979
#> 9972 New Hampshire Hawaii 1979
#> 9973 New Jersey Alaska 1979
#> 9974 Florida Oklahoma 1979
#> 9975 New Mexico Oklahoma 1979
#> 9976 Indiana Florida 1979
#> 9977 Idaho Kansas 1979
#> 9978 California Idaho 1979
#> 9979 Oregon Connecticut 1979
#> 9980 Colorado Massachusetts 1979
#> 9981 Florida Indiana 1979
#> 9982 Rhode Island Wisconsin 1979
#> 9983 California North Dakota 1979
#> 9984 Ohio Maine 1979
#> 9985 Illinois New Hampshire 1979
#> 9986 Hawaii Oklahoma 1979
#> 9987 Oklahoma Colorado 1979
#> 9988 Minnesota Virginia 1979
#> 9989 Virginia South Dakota 1979
#> 9990 Missouri Maryland 1979
#> 9991 Wisconsin Vermont 1979
#> 9992 Montana North Dakota 1979
#> 9993 New Jersey Minnesota 1979
#> 9994 Illinois Minnesota 1979
#> 9995 South Carolina Maine 1979
#> 9996 South Dakota Hawaii 1979
#> 9997 Kansas Hawaii 1979
#> 9998 New Jersey Delaware 1979
#> 9999 Arkansas Montana 1979
#> 10000 Louisiana Montana 1979
#> 10001 New York Oregon 1980
#> 10002 New York Pennsylvania 1980
#> 10003 New York Michigan 1980
#> 10004 New York Rhode Island 1980
#> 10005 New York Maine 1980
#> 10006 New York Connecticut 1980
#> 10007 New York Minnesota 1980
#> 10008 New York New Hampshire 1980
#> 10009 New York Illinois 1980
#> 10010 New York New Jersey 1980
#> 10011 New York Nebraska 1980
#> 10012 New York Florida 1980
#> 10013 New York Indiana 1980
#> 10014 New York Kentucky 1980
#> 10015 New York Ohio 1980
#> 10016 New York Maryland 1980
#> 10017 New York Virginia 1980
#> 10018 New York Washington 1980
#> 10019 New York California 1980
#> 10020 New York Delaware 1980
#> 10021 New York Massachusetts 1980
#> 10022 New York West Virginia 1980
#> 10023 New York Oklahoma 1980
#> 10024 Colorado Georgia 1980
#> 10025 Colorado Kansas 1980
#> 10026 New York Montana 1980
#> 10027 New York North Carolina 1980
#> 10028 New York Nevada 1980
#> 10029 New York Colorado 1980
#> 10030 New York South Dakota 1980
#> 10031 New York Idaho 1980
#> 10032 New York Vermont 1980
#> 10033 New York Tennessee 1980
#> 10034 New York Texas 1980
#> 10035 Florida Mississippi 1980
#> 10036 Kentucky Arkansas 1980
#> 10037 Maine Iowa 1980
#> 10038 New York New Mexico 1980
#> 10039 Colorado Louisiana 1980
#> 10040 Washington Missouri 1980
#> 10041 Delaware North Dakota 1980
#> 10042 California South Carolina 1980
#> 10043 New York Wisconsin 1980
#> 10044 New York Alabama 1980
#> 10045 Washington Wyoming 1980
#> 10046 New York Arizona 1980
#> 10047 New Jersey Hawaii 1980
#> 10048 Massachusetts New York 1980
#> 10049 Oregon Alaska 1980
#> 10050 California Arkansas 1980
#> 10051 New York Utah 1980
#> 10052 Colorado Minnesota 1980
#> 10053 Colorado Maryland 1980
#> 10054 Arkansas North Carolina 1980
#> 10055 California New York 1980
#> 10056 Montana Kentucky 1980
#> 10057 New York Kansas 1980
#> 10058 North Carolina Virginia 1980
#> 10059 Colorado Oregon 1980
#> 10060 Colorado Pennsylvania 1980
#> 10061 Washington Montana 1980
#> 10062 California Washington 1980
#> 10063 Colorado New Jersey 1980
#> 10064 New Mexico New Hampshire 1980
#> 10065 New Mexico Iowa 1980
#> 10066 Idaho Colorado 1980
#> 10067 Arkansas Alabama 1980
#> 10068 Colorado Ohio 1980
#> 10069 North Carolina Indiana 1980
#> 10070 California New Mexico 1980
#> 10071 New York Georgia 1980
#> 10072 New Jersey Rhode Island 1980
#> 10073 Montana Maine 1980
#> 10074 Oregon North Dakota 1980
#> 10075 Idaho Delaware 1980
#> 10076 Florida Louisiana 1980
#> 10077 Colorado Florida 1980
#> 10078 Colorado South Dakota 1980
#> 10079 Illinois Massachusetts 1980
#> 10080 New Mexico Nebraska 1980
#> 10081 South Carolina Texas 1980
#> 10082 Florida Arizona 1980
#> 10083 Rhode Island Wyoming 1980
#> 10084 Nebraska Tennessee 1980
#> 10085 Ohio Vermont 1980
#> 10086 South Carolina Idaho 1980
#> 10087 Colorado California 1980
#> 10088 Montana Nevada 1980
#> 10089 Colorado Connecticut 1980
#> 10090 Ohio Rhode Island 1980
#> 10091 Colorado Michigan 1980
#> 10092 Maryland Delaware 1980
#> 10093 New Mexico Oklahoma 1980
#> 10094 New Mexico Hawaii 1980
#> 10095 Minnesota Oregon 1980
#> 10096 New Mexico Kansas 1980
#> 10097 Illinois Arkansas 1980
#> 10098 Michigan West Virginia 1980
#> 10099 Alabama Florida 1980
#> 10100 California Indiana 1980
#> 10101 Florida Virginia 1980
#> 10102 Washington New Mexico 1980
#> 10103 New Mexico Mississippi 1980
#> 10104 California North Carolina 1980
#> 10105 New Jersey South Carolina 1980
#> 10106 California Maryland 1980
#> 10107 Kentucky Wisconsin 1980
#> 10108 Michigan Montana 1980
#> 10109 North Dakota Washington 1980
#> 10110 Rhode Island Missouri 1980
#> 10111 Oregon Kentucky 1980
#> 10112 Montana Iowa 1980
#> 10113 California Pennsylvania 1980
#> 10114 Montana Minnesota 1980
#> 10115 New Jersey New York 1980
#> 10116 Minnesota Illinois 1980
#> 10117 Alabama Utah 1980
#> 10118 Colorado Maine 1980
#> 10119 Michigan North Dakota 1980
#> 10120 Kentucky Tennessee 1980
#> 10121 Kentucky Colorado 1980
#> 10122 Hawaii Alaska 1980
#> 10123 Minnesota California 1980
#> 10124 Kentucky Michigan 1980
#> 10125 Delaware Louisiana 1980
#> 10126 Connecticut Massachusetts 1980
#> 10127 California New Jersey 1980
#> 10128 Mississippi Arizona 1980
#> 10129 California Wisconsin 1980
#> 10130 Florida Nebraska 1980
#> 10131 Ohio New Hampshire 1980
#> 10132 Alabama Georgia 1980
#> 10133 Maine South Dakota 1980
#> 10134 Ohio Alabama 1980
#> 10135 Oregon Vermont 1980
#> 10136 Massachusetts Minnesota 1980
#> 10137 Kentucky Oklahoma 1980
#> 10138 Delaware Connecticut 1980
#> 10139 Kentucky New Mexico 1980
#> 10140 New Mexico Rhode Island 1980
#> 10141 Maine Maryland 1980
#> 10142 New Jersey Ohio 1980
#> 10143 Iowa Kansas 1980
#> 10144 Wisconsin Colorado 1980
#> 10145 Montana Idaho 1980
#> 10146 Indiana New York 1980
#> 10147 New Mexico Nevada 1980
#> 10148 Rhode Island Washington 1980
#> 10149 New Jersey North Carolina 1980
#> 10150 Oregon Montana 1980
#> 10151 Massachusetts Hawaii 1980
#> 10152 Montana Texas 1980
#> 10153 Colorado South Carolina 1980
#> 10154 Alaska Connecticut 1980
#> 10155 Maryland Illinois 1980
#> 10156 Michigan Delaware 1980
#> 10157 California Arizona 1980
#> 10158 Idaho Utah 1980
#> 10159 Illinois Florida 1980
#> 10160 Maine Indiana 1980
#> 10161 Vermont Connecticut 1980
#> 10162 New Mexico West Virginia 1980
#> 10163 Tennessee Arkansas 1980
#> 10164 New Jersey Massachusetts 1980
#> 10165 California Hawaii 1980
#> 10166 Maryland Kentucky 1980
#> 10167 Arkansas Montana 1980
#> 10168 Florida South Carolina 1980
#> 10169 Alaska North Dakota 1980
#> 10170 Michigan Iowa 1980
#> 10171 Wisconsin New Jersey 1980
#> 10172 Hawaii Oregon 1980
#> 10173 Nevada Nebraska 1980
#> 10174 Nevada Mississippi 1980
#> 10175 Delaware Nevada 1980
#> 10176 California Colorado 1980
#> 10177 Montana Tennessee 1980
#> 10178 Idaho Missouri 1980
#> 10179 Kentucky Maryland 1980
#> 10180 Kentucky Texas 1980
#> 10181 Arkansas California 1980
#> 10182 Arkansas Louisiana 1980
#> 10183 Oregon Ohio 1980
#> 10184 South Carolina Wyoming 1980
#> 10185 Montana Virginia 1980
#> 10186 Wisconsin New Mexico 1980
#> 10187 Vermont Maine 1980
#> 10188 California Alaska 1980
#> 10189 Minnesota Alabama 1980
#> 10190 Kentucky North Carolina 1980
#> 10191 Idaho Washington 1980
#> 10192 Illinois Michigan 1980
#> 10193 Washington Oregon 1980
#> 10194 Alaska New York 1980
#> 10195 West Virginia Georgia 1980
#> 10196 Florida Rhode Island 1980
#> 10197 Oregon Delaware 1980
#> 10198 Michigan Vermont 1980
#> 10199 Connecticut New York 1980
#> 10200 Idaho Kansas 1980
#> 10201 Wyoming Wisconsin 1980
#> 10202 New Jersey Maine 1980
#> 10203 South Dakota North Carolina 1980
#> 10204 Michigan Rhode Island 1980
#> 10205 Minnesota New Jersey 1980
#> 10206 Nevada Idaho 1980
#> 10207 Colorado Montana 1980
#> 10208 Illinois Texas 1980
#> 10209 Texas Oklahoma 1980
#> 10210 Oregon Hawaii 1980
#> 10211 Kentucky Massachusetts 1980
#> 10212 Vermont Minnesota 1980
#> 10213 Florida Massachusetts 1980
#> 10214 California Illinois 1980
#> 10215 Michigan Kentucky 1980
#> 10216 Pennsylvania California 1980
#> 10217 New Jersey Louisiana 1980
#> 10218 Kentucky Nebraska 1980
#> 10219 Alaska Iowa 1980
#> 10220 Wisconsin Idaho 1980
#> 10221 Wyoming North Carolina 1980
#> 10222 New Jersey Michigan 1980
#> 10223 Michigan Alabama 1980
#> 10224 Florida Arkansas 1980
#> 10225 North Carolina Ohio 1980
#> 10226 Connecticut Pennsylvania 1980
#> 10227 Connecticut New Hampshire 1980
#> 10228 Vermont New Mexico 1980
#> 10229 Maine Nevada 1980
#> 10230 Florida South Dakota 1980
#> 10231 Illinois New York 1980
#> 10232 Arkansas Minnesota 1980
#> 10233 Arkansas Wyoming 1980
#> 10234 Kentucky Utah 1980
#> 10235 Nevada Georgia 1980
#> 10236 Oklahoma Kentucky 1980
#> 10237 Tennessee Virginia 1980
#> 10238 Michigan Washington 1980
#> 10239 Iowa Vermont 1980
#> 10240 Ohio Utah 1980
#> 10241 Illinois West Virginia 1980
#> 10242 Minnesota North Dakota 1980
#> 10243 Vermont New Hampshire 1980
#> 10244 Kentucky Florida 1980
#> 10245 Tennessee Indiana 1980
#> 10246 Maryland California 1980
#> 10247 Arkansas Illinois 1980
#> 10248 Arkansas Rhode Island 1980
#> 10249 Louisiana Alaska 1980
#> 10250 Wisconsin Kansas 1980
#> 10251 Connecticut New Jersey 1980
#> 10252 New Jersey Montana 1980
#> 10253 Michigan Mississippi 1980
#> 10254 Ohio Connecticut 1980
#> 10255 Delaware Massachusetts 1980
#> 10256 Minnesota Tennessee 1980
#> 10257 South Dakota Iowa 1980
#> 10258 Hawaii Florida 1980
#> 10259 Kansas Colorado 1980
#> 10260 Kentucky New York 1980
#> 10261 Arkansas New Hampshire 1980
#> 10262 Wisconsin North Carolina 1980
#> 10263 Rhode Island Minnesota 1980
#> 10264 Florida Texas 1980
#> 10265 Illinois Idaho 1980
#> 10266 Vermont New York 1980
#> 10267 Iowa Oklahoma 1980
#> 10268 California Delaware 1980
#> 10269 Maine Missouri 1980
#> 10270 Utah Louisiana 1980
#> 10271 Mississippi Washington 1980
#> 10272 Colorado New Mexico 1980
#> 10273 Illinois Connecticut 1980
#> 10274 New Mexico Delaware 1980
#> 10275 Wisconsin Massachusetts 1980
#> 10276 Washington North Dakota 1980
#> 10277 North Dakota Iowa 1980
#> 10278 Nevada Arkansas 1980
#> 10279 Washington New York 1980
#> 10280 Illinois Georgia 1980
#> 10281 New Mexico Maine 1980
#> 10282 Wisconsin Hawaii 1980
#> 10283 New Jersey Oregon 1980
#> 10284 Illinois Colorado 1980
#> 10285 Vermont Wyoming 1980
#> 10286 Vermont Iowa 1980
#> 10287 Ohio Texas 1980
#> 10288 Tennessee Maryland 1980
#> 10289 Washington Pennsylvania 1980
#> 10290 Louisiana New Mexico 1980
#> 10291 Florida Nevada 1980
#> 10292 Oregon Michigan 1980
#> 10293 Virginia Kansas 1980
#> 10294 Oklahoma Indiana 1980
#> 10295 Minnesota Colorado 1980
#> 10296 Vermont Kentucky 1980
#> 10297 Washington Wisconsin 1980
#> 10298 Pennsylvania Minnesota 1980
#> 10299 Kentucky Alabama 1980
#> 10300 Florida Utah 1980
#> 10301 Indiana South Dakota 1980
#> 10302 Minnesota Oklahoma 1980
#> 10303 Louisiana Tennessee 1980
#> 10304 California Rhode Island 1980
#> 10305 Kentucky Vermont 1980
#> 10306 Maryland New Jersey 1980
#> 10307 Florida Georgia 1980
#> 10308 Texas Pennsylvania 1980
#> 10309 Colorado Nebraska 1980
#> 10310 Massachusetts Washington 1980
#> 10311 Tennessee Florida 1980
#> 10312 Florida Colorado 1980
#> 10313 Virginia Connecticut 1980
#> 10314 Tennessee Montana 1980
#> 10315 Kentucky South Dakota 1980
#> 10316 Iowa Nebraska 1980
#> 10317 New Jersey Idaho 1980
#> 10318 Alaska Nevada 1980
#> 10319 Louisiana Virginia 1980
#> 10320 Kentucky Louisiana 1980
#> 10321 South Carolina Wisconsin 1980
#> 10322 Kansas Alaska 1980
#> 10323 New Jersey New Hampshire 1980
#> 10324 North Dakota Wyoming 1980
#> 10325 California Vermont 1980
#> 10326 Maine New Mexico 1980
#> 10327 Idaho Ohio 1980
#> 10328 Oregon Alabama 1980
#> 10329 Maine North Dakota 1980
#> 10330 Nevada Montana 1980
#> 10331 Idaho Montana 1980
#> 10332 North Dakota Kentucky 1980
#> 10333 Washington Illinois 1980
#> 10334 Tennessee Massachusetts 1980
#> 10335 Oregon Mississippi 1980
#> 10336 Virginia Utah 1980
#> 10337 Hawaii Vermont 1980
#> 10338 Nevada Rhode Island 1980
#> 10339 Nebraska North Dakota 1980
#> 10340 Wisconsin Illinois 1980
#> 10341 New Jersey Connecticut 1980
#> 10342 New York Wyoming 1980
#> 10343 Louisiana Pennsylvania 1980
#> 10344 Pennsylvania Rhode Island 1980
#> 10345 Delaware Arkansas 1980
#> 10346 Idaho Arizona 1980
#> 10347 Illinois Hawaii 1980
#> 10348 North Dakota Arkansas 1980
#> 10349 New Mexico Alabama 1980
#> 10350 New Hampshire New York 1980
#> 10351 Massachusetts Florida 1980
#> 10352 Nevada California 1980
#> 10353 New Hampshire Virginia 1980
#> 10354 Pennsylvania Alabama 1980
#> 10355 Illinois Rhode Island 1980
#> 10356 Tennessee New York 1980
#> 10357 Minnesota Delaware 1980
#> 10358 Hawaii New Jersey 1980
#> 10359 Tennessee Nebraska 1980
#> 10360 South Carolina Connecticut 1980
#> 10361 New Mexico Connecticut 1980
#> 10362 Wyoming Rhode Island 1980
#> 10363 Montana California 1980
#> 10364 Colorado Utah 1980
#> 10365 Tennessee Georgia 1980
#> 10366 Virginia Florida 1980
#> 10367 Montana West Virginia 1980
#> 10368 Maryland South Carolina 1980
#> 10369 Rhode Island New York 1980
#> 10370 Florida Michigan 1980
#> 10371 Wisconsin Iowa 1980
#> 10372 Utah New Mexico 1980
#> 10373 Wyoming Oklahoma 1980
#> 10374 Kentucky Alaska 1980
#> 10375 Maine Colorado 1980
#> 10376 Hawaii Wisconsin 1980
#> 10377 North Dakota Maryland 1980
#> 10378 Maryland Kansas 1980
#> 10379 Colorado Arizona 1980
#> 10380 Delaware Wyoming 1980
#> 10381 South Carolina Nevada 1980
#> 10382 Texas Maryland 1980
#> 10383 Delaware Missouri 1980
#> 10384 Oregon West Virginia 1980
#> 10385 Nevada Hawaii 1980
#> 10386 Georgia Louisiana 1980
#> 10387 Kansas Vermont 1980
#> 10388 Idaho Minnesota 1980
#> 10389 Kentucky Illinois 1980
#> 10390 Nebraska West Virginia 1980
#> 10391 Oklahoma South Dakota 1980
#> 10392 Maryland Indiana 1980
#> 10393 New Hampshire Tennessee 1980
#> 10394 Minnesota Kansas 1980
#> 10395 Rhode Island Georgia 1980
#> 10396 California Ohio 1980
#> 10397 Florida Maryland 1980
#> 10398 Connecticut Oregon 1980
#> 10399 Wisconsin Michigan 1980
#> 10400 Iowa Montana 1980
#> 10401 New Jersey Pennsylvania 1980
#> 10402 Pennsylvania Maine 1980
#> 10403 Maryland Virginia 1980
#> 10404 West Virginia Texas 1980
#> 10405 Michigan South Carolina 1980
#> 10406 Tennessee Missouri 1980
#> 10407 Wisconsin New York 1980
#> 10408 Montana Michigan 1980
#> 10409 Mississippi South Dakota 1980
#> 10410 Tennessee Oregon 1980
#> 10411 Florida Oklahoma 1980
#> 10412 Mississippi Nebraska 1980
#> 10413 Tennessee South Carolina 1980
#> 10414 Kentucky North Dakota 1980
#> 10415 Missouri Kansas 1980
#> 10416 California Oregon 1980
#> 10417 Illinois New Jersey 1980
#> 10418 Michigan California 1980
#> 10419 Delaware North Carolina 1980
#> 10420 Louisiana Missouri 1980
#> 10421 Colorado Vermont 1980
#> 10422 Illinois New Hampshire 1980
#> 10423 Kentucky Ohio 1980
#> 10424 Nebraska Arkansas 1980
#> 10425 California Massachusetts 1980
#> 10426 Massachusetts Louisiana 1980
#> 10427 Nebraska Alabama 1980
#> 10428 Nevada Wisconsin 1980
#> 10429 South Dakota Wisconsin 1980
#> 10430 California Minnesota 1980
#> 10431 Vermont Mississippi 1980
#> 10432 Connecticut Colorado 1980
#> 10433 Kansas Nebraska 1980
#> 10434 Pennsylvania Maryland 1980
#> 10435 Michigan Arizona 1980
#> 10436 Arkansas Pennsylvania 1980
#> 10437 Hawaii North Dakota 1980
#> 10438 Minnesota Maine 1980
#> 10439 North Carolina Minnesota 1980
#> 10440 Georgia Montana 1980
#> 10441 Massachusetts Illinois 1980
#> 10442 Nebraska Mississippi 1980
#> 10443 Nevada Utah 1980
#> 10444 Florida Indiana 1980
#> 10445 North Carolina Michigan 1980
#> 10446 Illinois Oklahoma 1980
#> 10447 Maryland Washington 1980
#> 10448 Idaho Arkansas 1980
#> 10449 Virginia North Carolina 1980
#> 10450 Minnesota Wisconsin 1980
#> 10451 Louisiana Illinois 1980
#> 10452 Minnesota Washington 1980
#> 10453 Oregon Colorado 1980
#> 10454 Florida Connecticut 1980
#> 10455 Oregon New Mexico 1980
#> 10456 Oregon Iowa 1980
#> 10457 California Nevada 1980
#> 10458 Delaware California 1980
#> 10459 North Dakota Virginia 1980
#> 10460 Wisconsin Ohio 1980
#> 10461 Ohio Kansas 1980
#> 10462 Wyoming Arizona 1980
#> 10463 Colorado Tennessee 1980
#> 10464 Minnesota Missouri 1980
#> 10465 South Dakota Kentucky 1980
#> 10466 Nevada New Mexico 1980
#> 10467 Ohio Maine 1980
#> 10468 Illinois Iowa 1980
#> 10469 Pennsylvania Alaska 1980
#> 10470 Delaware New Hampshire 1980
#> 10471 Delaware Montana 1980
#> 10472 Michigan Illinois 1980
#> 10473 New Jersey Colorado 1980
#> 10474 South Carolina Utah 1980
#> 10475 Minnesota Georgia 1980
#> 10476 South Dakota South Carolina 1980
#> 10477 Mississippi North Carolina 1980
#> 10478 Georgia Indiana 1980
#> 10479 Rhode Island Wisconsin 1980
#> 10480 Kansas New York 1980
#> 10481 New Hampshire Hawaii 1980
#> 10482 New Jersey Alaska 1980
#> 10483 Kansas Nevada 1980
#> 10484 Louisiana Oklahoma 1980
#> 10485 Ohio Washington 1980
#> 10486 Mississippi Texas 1980
#> 10487 North Carolina South Dakota 1980
#> 10488 California Idaho 1980
#> 10489 Oregon Connecticut 1980
#> 10490 Oregon Arizona 1980
#> 10491 Colorado Massachusetts 1980
#> 10492 North Dakota Indiana 1980
#> 10493 Iowa New Jersey 1980
#> 10494 California Florida 1980
#> 10495 New Mexico Utah 1980
#> 10496 West Virginia Kansas 1980
#> 10497 North Carolina Idaho 1980
#> 10498 North Dakota South Carolina 1980
#> 10499 Indiana Minnesota 1980
#> 10500 South Dakota Hawaii 1980
#> 10501 New York Oregon 1981
#> 10502 New York Michigan 1981
#> 10503 New York Pennsylvania 1981
#> 10504 New York Rhode Island 1981
#> 10505 New York Maine 1981
#> 10506 New York Connecticut 1981
#> 10507 New York New Jersey 1981
#> 10508 New York Minnesota 1981
#> 10509 New York New Hampshire 1981
#> 10510 New York Illinois 1981
#> 10511 New York Florida 1981
#> 10512 New York Nebraska 1981
#> 10513 New York Indiana 1981
#> 10514 New York Kentucky 1981
#> 10515 New York Ohio 1981
#> 10516 New York Maryland 1981
#> 10517 New York Delaware 1981
#> 10518 New York Virginia 1981
#> 10519 New York Washington 1981
#> 10520 New York California 1981
#> 10521 New York Massachusetts 1981
#> 10522 New York West Virginia 1981
#> 10523 New York Georgia 1981
#> 10524 New York Oklahoma 1981
#> 10525 Colorado Kansas 1981
#> 10526 New York Montana 1981
#> 10527 New York North Carolina 1981
#> 10528 New York Nevada 1981
#> 10529 New York Colorado 1981
#> 10530 New York Vermont 1981
#> 10531 New York South Dakota 1981
#> 10532 New York Idaho 1981
#> 10533 New York Tennessee 1981
#> 10534 New York Texas 1981
#> 10535 Florida Mississippi 1981
#> 10536 Maine Iowa 1981
#> 10537 Washington Missouri 1981
#> 10538 Kentucky Arkansas 1981
#> 10539 Colorado Louisiana 1981
#> 10540 New York New Mexico 1981
#> 10541 New Jersey South Carolina 1981
#> 10542 Delaware North Dakota 1981
#> 10543 New York Alabama 1981
#> 10544 New York Wisconsin 1981
#> 10545 Washington Wyoming 1981
#> 10546 New York Arizona 1981
#> 10547 New Jersey Hawaii 1981
#> 10548 Massachusetts New York 1981
#> 10549 New York Utah 1981
#> 10550 New York Alaska 1981
#> 10551 California Arkansas 1981
#> 10552 Colorado Minnesota 1981
#> 10553 Montana Kentucky 1981
#> 10554 Colorado Maryland 1981
#> 10555 Colorado Pennsylvania 1981
#> 10556 Arkansas North Carolina 1981
#> 10557 New Mexico New Hampshire 1981
#> 10558 New York Kansas 1981
#> 10559 North Carolina Virginia 1981
#> 10560 Idaho Colorado 1981
#> 10561 Colorado Oregon 1981
#> 10562 California New York 1981
#> 10563 Washington Montana 1981
#> 10564 California Washington 1981
#> 10565 Colorado New Jersey 1981
#> 10566 New Mexico Iowa 1981
#> 10567 Arkansas Alabama 1981
#> 10568 Colorado Ohio 1981
#> 10569 North Carolina Indiana 1981
#> 10570 California New Mexico 1981
#> 10571 Colorado Georgia 1981
#> 10572 New Mexico Rhode Island 1981
#> 10573 Colorado South Dakota 1981
#> 10574 Montana Maine 1981
#> 10575 Idaho Delaware 1981
#> 10576 Oregon North Dakota 1981
#> 10577 Florida Louisiana 1981
#> 10578 Colorado Florida 1981
#> 10579 Florida Arizona 1981
#> 10580 North Carolina South Carolina 1981
#> 10581 Illinois Massachusetts 1981
#> 10582 Oregon Nebraska 1981
#> 10583 Arkansas California 1981
#> 10584 Rhode Island Wyoming 1981
#> 10585 Nebraska Tennessee 1981
#> 10586 Illinois Texas 1981
#> 10587 Ohio Vermont 1981
#> 10588 South Carolina Idaho 1981
#> 10589 Kentucky Michigan 1981
#> 10590 Kentucky Oklahoma 1981
#> 10591 Montana Nevada 1981
#> 10592 Colorado Connecticut 1981
#> 10593 Maryland Delaware 1981
#> 10594 California Wisconsin 1981
#> 10595 New Mexico Hawaii 1981
#> 10596 Minnesota Oregon 1981
#> 10597 New Jersey Rhode Island 1981
#> 10598 New Mexico Kansas 1981
#> 10599 New Mexico West Virginia 1981
#> 10600 Illinois Arkansas 1981
#> 10601 Florida Virginia 1981
#> 10602 Alabama Florida 1981
#> 10603 California Indiana 1981
#> 10604 Washington New Mexico 1981
#> 10605 New Mexico Mississippi 1981
#> 10606 Rhode Island Maryland 1981
#> 10607 Delaware Missouri 1981
#> 10608 Nevada Utah 1981
#> 10609 Michigan Montana 1981
#> 10610 North Dakota Washington 1981
#> 10611 Oregon Kentucky 1981
#> 10612 Montana Iowa 1981
#> 10613 Michigan Illinois 1981
#> 10614 Connecticut New York 1981
#> 10615 New Mexico Texas 1981
#> 10616 Montana Minnesota 1981
#> 10617 California Alaska 1981
#> 10618 Montana Maryland 1981
#> 10619 Colorado Michigan 1981
#> 10620 Illinois South Carolina 1981
#> 10621 Kentucky Tennessee 1981
#> 10622 Colorado Maine 1981
#> 10623 Michigan North Dakota 1981
#> 10624 California North Carolina 1981
#> 10625 Kentucky Wisconsin 1981
#> 10626 Kentucky Colorado 1981
#> 10627 New Jersey Massachusetts 1981
#> 10628 Florida Georgia 1981
#> 10629 Ohio Rhode Island 1981
#> 10630 Arkansas Pennsylvania 1981
#> 10631 Delaware Louisiana 1981
#> 10632 Vermont Connecticut 1981
#> 10633 California New Jersey 1981
#> 10634 Colorado California 1981
#> 10635 New Mexico Oklahoma 1981
#> 10636 Ohio New Hampshire 1981
#> 10637 Idaho Nebraska 1981
#> 10638 Maine South Dakota 1981
#> 10639 Ohio Alabama 1981
#> 10640 Oregon Vermont 1981
#> 10641 Massachusetts Minnesota 1981
#> 10642 Kentucky Illinois 1981
#> 10643 Michigan West Virginia 1981
#> 10644 Maryland Kentucky 1981
#> 10645 Oregon New Mexico 1981
#> 10646 Wisconsin Colorado 1981
#> 10647 New Jersey Ohio 1981
#> 10648 Montana Idaho 1981
#> 10649 Kentucky New York 1981
#> 10650 Connecticut Massachusetts 1981
#> 10651 New Mexico Nevada 1981
#> 10652 Maryland North Carolina 1981
#> 10653 Rhode Island Washington 1981
#> 10654 Alaska New York 1981
#> 10655 Oregon Montana 1981
#> 10656 Massachusetts Hawaii 1981
#> 10657 Delaware Connecticut 1981
#> 10658 Tennessee Missouri 1981
#> 10659 Vermont Indiana 1981
#> 10660 Michigan Delaware 1981
#> 10661 Alaska Connecticut 1981
#> 10662 Massachusetts North Carolina 1981
#> 10663 Alabama Arkansas 1981
#> 10664 Illinois Florida 1981
#> 10665 Indiana New York 1981
#> 10666 Hawaii Alaska 1981
#> 10667 Alabama Arizona 1981
#> 10668 Alabama Utah 1981
#> 10669 Iowa Kansas 1981
#> 10670 Arkansas Montana 1981
#> 10671 Minnesota California 1981
#> 10672 North Dakota Wyoming 1981
#> 10673 Alaska North Dakota 1981
#> 10674 Michigan Iowa 1981
#> 10675 New Jersey Michigan 1981
#> 10676 Wisconsin New Jersey 1981
#> 10677 Hawaii Oregon 1981
#> 10678 Illinois Georgia 1981
#> 10679 Nevada Mississippi 1981
#> 10680 Delaware Nevada 1981
#> 10681 Rhode Island New Hampshire 1981
#> 10682 Montana Tennessee 1981
#> 10683 California Colorado 1981
#> 10684 Colorado Massachusetts 1981
#> 10685 Hawaii Idaho 1981
#> 10686 Arkansas Louisiana 1981
#> 10687 Oregon Ohio 1981
#> 10688 Georgia Indiana 1981
#> 10689 Washington Pennsylvania 1981
#> 10690 Montana Virginia 1981
#> 10691 California Hawaii 1981
#> 10692 Vermont Maine 1981
#> 10693 Minnesota Alabama 1981
#> 10694 New Jersey Nebraska 1981
#> 10695 Alabama Georgia 1981
#> 10696 Florida Rhode Island 1981
#> 10697 Idaho Washington 1981
#> 10698 Washington Oregon 1981
#> 10699 Arkansas Minnesota 1981
#> 10700 Oregon Delaware 1981
#> 10701 Michigan Vermont 1981
#> 10702 Kentucky Texas 1981
#> 10703 Idaho New Mexico 1981
#> 10704 Idaho Kansas 1981
#> 10705 New Jersey Maine 1981
#> 10706 Illinois New York 1981
#> 10707 Michigan Rhode Island 1981
#> 10708 Minnesota New Jersey 1981
#> 10709 Colorado Montana 1981
#> 10710 Minnesota Illinois 1981
#> 10711 Texas Oklahoma 1981
#> 10712 Oregon Hawaii 1981
#> 10713 Illinois Michigan 1981
#> 10714 Vermont Minnesota 1981
#> 10715 Alabama Kentucky 1981
#> 10716 Nevada New Mexico 1981
#> 10717 Alaska Utah 1981
#> 10718 Colorado South Carolina 1981
#> 10719 Pennsylvania California 1981
#> 10720 North Dakota Iowa 1981
#> 10721 New Jersey Louisiana 1981
#> 10722 Delaware South Dakota 1981
#> 10723 Wisconsin Idaho 1981
#> 10724 Montana Texas 1981
#> 10725 Louisiana New Mexico 1981
#> 10726 Alaska Iowa 1981
#> 10727 Michigan Alabama 1981
#> 10728 South Dakota North Carolina 1981
#> 10729 North Carolina Ohio 1981
#> 10730 Maine Nevada 1981
#> 10731 Washington Wisconsin 1981
#> 10732 Kansas Colorado 1981
#> 10733 New Jersey Florida 1981
#> 10734 West Virginia Georgia 1981
#> 10735 Maryland Pennsylvania 1981
#> 10736 Maine Wyoming 1981
#> 10737 Vermont New Hampshire 1981
#> 10738 Michigan Washington 1981
#> 10739 Illinois Minnesota 1981
#> 10740 Mississippi Arizona 1981
#> 10741 Kentucky Utah 1981
#> 10742 Illinois West Virginia 1981
#> 10743 Alabama Maryland 1981
#> 10744 Arkansas Rhode Island 1981
#> 10745 Minnesota North Dakota 1981
#> 10746 Minnesota Missouri 1981
#> 10747 Florida South Dakota 1981
#> 10748 Delaware Arizona 1981
#> 10749 Kentucky North Carolina 1981
#> 10750 Maryland California 1981
#> 10751 Minnesota Tennessee 1981
#> 10752 Delaware Massachusetts 1981
#> 10753 Louisiana Alaska 1981
#> 10754 California Illinois 1981
#> 10755 Hawaii Florida 1981
#> 10756 Wisconsin Kansas 1981
#> 10757 Florida Indiana 1981
#> 10758 Connecticut New Jersey 1981
#> 10759 New Jersey Montana 1981
#> 10760 Michigan Mississippi 1981
#> 10761 Ohio Connecticut 1981
#> 10762 Kentucky Massachusetts 1981
#> 10763 Vermont New York 1981
#> 10764 South Dakota Iowa 1981
#> 10765 Florida Nebraska 1981
#> 10766 Iowa Oklahoma 1981
#> 10767 Michigan Kentucky 1981
#> 10768 Connecticut New Hampshire 1981
#> 10769 New Jersey Virginia 1981
#> 10770 Ohio Nebraska 1981
#> 10771 Utah Louisiana 1981
#> 10772 Rhode Island Minnesota 1981
#> 10773 Maryland Kansas 1981
#> 10774 Tennessee Arkansas 1981
#> 10775 Illinois Connecticut 1981
#> 10776 New Mexico Delaware 1981
#> 10777 Wisconsin Massachusetts 1981
#> 10778 Maryland New Mexico 1981
#> 10779 Minnesota Delaware 1981
#> 10780 Florida Colorado 1981
#> 10781 Washington North Dakota 1981
#> 10782 Virginia Florida 1981
#> 10783 Pennsylvania Hawaii 1981
#> 10784 Maine Maryland 1981
#> 10785 Washington New York 1981
#> 10786 Vermont Kentucky 1981
#> 10787 New Mexico Maine 1981
#> 10788 Delaware Wyoming 1981
#> 10789 New Jersey Oregon 1981
#> 10790 Oregon Michigan 1981
#> 10791 Illinois Colorado 1981
#> 10792 Nevada Arkansas 1981
#> 10793 Vermont Iowa 1981
#> 10794 New Jersey Vermont 1981
#> 10795 Kansas Idaho 1981
#> 10796 Nebraska Texas 1981
#> 10797 North Dakota Kentucky 1981
#> 10798 Minnesota Colorado 1981
#> 10799 Florida Arkansas 1981
#> 10800 Florida Nevada 1981
#> 10801 Indiana Wisconsin 1981
#> 10802 Arkansas South Carolina 1981
#> 10803 Oregon Alaska 1981
#> 10804 Kansas Vermont 1981
#> 10805 Florida Utah 1981
#> 10806 Rhode Island New Mexico 1981
#> 10807 Louisiana Tennessee 1981
#> 10808 Maryland Missouri 1981
#> 10809 Minnesota Oklahoma 1981
#> 10810 Maryland New Jersey 1981
#> 10811 New Jersey Pennsylvania 1981
#> 10812 Tennessee Massachusetts 1981
#> 10813 Kentucky Indiana 1981
#> 10814 Rhode Island Delaware 1981
#> 10815 Massachusetts Washington 1981
#> 10816 Tennessee Florida 1981
#> 10817 Virginia Connecticut 1981
#> 10818 Tennessee Montana 1981
#> 10819 Vermont Nebraska 1981
#> 10820 New Mexico Alabama 1981
#> 10821 Louisiana Virginia 1981
#> 10822 Minnesota South Dakota 1981
#> 10823 Georgia Illinois 1981
#> 10824 Kentucky South Dakota 1981
#> 10825 Florida Ohio 1981
#> 10826 Alaska Nevada 1981
#> 10827 Kentucky Louisiana 1981
#> 10828 Arizona Kentucky 1981
#> 10829 Texas Pennsylvania 1981
#> 10830 Virginia North Carolina 1981
#> 10831 Oregon Virginia 1981
#> 10832 Alaska Missouri 1981
#> 10833 California Vermont 1981
#> 10834 Arizona Wyoming 1981
#> 10835 Louisiana Pennsylvania 1981
#> 10836 Oregon Alabama 1981
#> 10837 North Carolina Rhode Island 1981
#> 10838 Maine North Dakota 1981
#> 10839 Nevada Montana 1981
#> 10840 Idaho Montana 1981
#> 10841 Kentucky Kansas 1981
#> 10842 Nevada Georgia 1981
#> 10843 Hawaii Vermont 1981
#> 10844 Kentucky Alaska 1981
#> 10845 Oregon Mississippi 1981
#> 10846 Nebraska North Dakota 1981
#> 10847 Arkansas New Hampshire 1981
#> 10848 Massachusetts Illinois 1981
#> 10849 Ohio Washington 1981
#> 10850 New Jersey Connecticut 1981
#> 10851 Florida North Carolina 1981
#> 10852 Pennsylvania Rhode Island 1981
#> 10853 Virginia Utah 1981
#> 10854 New Jersey Alabama 1981
#> 10855 North Carolina Wisconsin 1981
#> 10856 Nevada Rhode Island 1981
#> 10857 Kentucky Idaho 1981
#> 10858 North Dakota Arkansas 1981
#> 10859 South Dakota Wisconsin 1981
#> 10860 New Hampshire New York 1981
#> 10861 Nevada California 1981
#> 10862 Colorado Texas 1981
#> 10863 Delaware Arkansas 1981
#> 10864 Utah Arizona 1981
#> 10865 Illinois Rhode Island 1981
#> 10866 Tennessee New York 1981
#> 10867 Hawaii New Jersey 1981
#> 10868 South Carolina Connecticut 1981
#> 10869 New Mexico Connecticut 1981
#> 10870 Hawaii Wisconsin 1981
#> 10871 Nevada Hawaii 1981
#> 10872 New Jersey Delaware 1981
#> 10873 Montana California 1981
#> 10874 Ohio Utah 1981
#> 10875 Connecticut Alabama 1981
#> 10876 South Carolina New York 1981
#> 10877 Vermont Virginia 1981
#> 10878 Tennessee Georgia 1981
#> 10879 Oklahoma Wyoming 1981
#> 10880 Montana West Virginia 1981
#> 10881 Oklahoma Maryland 1981
#> 10882 Texas Massachusetts 1981
#> 10883 Ohio Texas 1981
#> 10884 Wisconsin Illinois 1981
#> 10885 Wisconsin Utah 1981
#> 10886 South Dakota Nebraska 1981
#> 10887 Rhode Island New York 1981
#> 10888 Florida Michigan 1981
#> 10889 Wisconsin Iowa 1981
#> 10890 Ohio Oklahoma 1981
#> 10891 Maine Colorado 1981
#> 10892 New Mexico Florida 1981
#> 10893 South Carolina Nevada 1981
#> 10894 Ohio Arizona 1981
#> 10895 Oregon West Virginia 1981
#> 10896 Utah New Mexico 1981
#> 10897 Louisiana Maine 1981
#> 10898 North Carolina Maryland 1981
#> 10899 Illinois Idaho 1981
#> 10900 Wisconsin Hawaii 1981
#> 10901 Georgia Louisiana 1981
#> 10902 Rhode Island Georgia 1981
#> 10903 Nebraska West Virginia 1981
#> 10904 California South Carolina 1981
#> 10905 Idaho Minnesota 1981
#> 10906 Florida Maryland 1981
#> 10907 New Hampshire Tennessee 1981
#> 10908 Pennsylvania Oklahoma 1981
#> 10909 California Ohio 1981
#> 10910 Connecticut Oregon 1981
#> 10911 Wisconsin Michigan 1981
#> 10912 Iowa Montana 1981
#> 10913 Mississippi Nebraska 1981
#> 10914 Iowa Nebraska 1981
#> 10915 Mississippi Idaho 1981
#> 10916 Michigan Arizona 1981
#> 10917 Arkansas Wyoming 1981
#> 10918 Wisconsin New York 1981
#> 10919 Pennsylvania Minnesota 1981
#> 10920 Montana Michigan 1981
#> 10921 South Carolina Wyoming 1981
#> 10922 Nebraska Alabama 1981
#> 10923 Maryland New Hampshire 1981
#> 10924 California Oregon 1981
#> 10925 Kentucky North Dakota 1981
#> 10926 Minnesota Maine 1981
#> 10927 Maryland Virginia 1981
#> 10928 Missouri Kansas 1981
#> 10929 California Massachusetts 1981
#> 10930 Maine Indiana 1981
#> 10931 Kentucky Vermont 1981
#> 10932 Illinois New Jersey 1981
#> 10933 Connecticut Colorado 1981
#> 10934 Michigan California 1981
#> 10935 Florida South Carolina 1981
#> 10936 Michigan South Carolina 1981
#> 10937 Washington Illinois 1981
#> 10938 Indiana South Dakota 1981
#> 10939 Pennsylvania Maryland 1981
#> 10940 Massachusetts Louisiana 1981
#> 10941 California Minnesota 1981
#> 10942 Illinois New Hampshire 1981
#> 10943 Florida Oklahoma 1981
#> 10944 Minnesota Washington 1981
#> 10945 Vermont Mississippi 1981
#> 10946 North Dakota South Carolina 1981
#> 10947 Rhode Island North Carolina 1981
#> 10948 Minnesota Wisconsin 1981
#> 10949 Colorado Vermont 1981
#> 10950 Hawaii North Dakota 1981
#> 10951 Georgia Montana 1981
#> 10952 Nebraska Mississippi 1981
#> 10953 Nebraska Arkansas 1981
#> 10954 Louisiana Missouri 1981
#> 10955 North Dakota Indiana 1981
#> 10956 Montana New Mexico 1981
#> 10957 North Carolina Michigan 1981
#> 10958 Indiana New Jersey 1981
#> 10959 Delaware Illinois 1981
#> 10960 Maryland Washington 1981
#> 10961 Idaho Arkansas 1981
#> 10962 New Hampshire Wisconsin 1981
#> 10963 Louisiana Wisconsin 1981
#> 10964 North Carolina Minnesota 1981
#> 10965 Louisiana Illinois 1981
#> 10966 Oklahoma Florida 1981
#> 10967 Oregon Colorado 1981
#> 10968 Alaska South Dakota 1981
#> 10969 Florida Connecticut 1981
#> 10970 Tennessee South Carolina 1981
#> 10971 Ohio Maine 1981
#> 10972 Oregon Iowa 1981
#> 10973 Pennsylvania Alaska 1981
#> 10974 California Nevada 1981
#> 10975 Louisiana Oklahoma 1981
#> 10976 Delaware California 1981
#> 10977 Minnesota Utah 1981
#> 10978 Wisconsin Ohio 1981
#> 10979 Kansas Nebraska 1981
#> 10980 Ohio Kansas 1981
#> 10981 Colorado Tennessee 1981
#> 10982 Vermont Alabama 1981
#> 10983 New Hampshire Oregon 1981
#> 10984 Illinois Iowa 1981
#> 10985 California Delaware 1981
#> 10986 Delaware Montana 1981
#> 10987 Utah Washington 1981
#> 10988 New Jersey Colorado 1981
#> 10989 North Dakota Virginia 1981
#> 10990 South Carolina Utah 1981
#> 10991 Minnesota Georgia 1981
#> 10992 Virginia Rhode Island 1981
#> 10993 Kansas New York 1981
#> 10994 New Hampshire Hawaii 1981
#> 10995 Kansas Nevada 1981
#> 10996 California Idaho 1981
#> 10997 Oregon Connecticut 1981
#> 10998 Colorado Arizona 1981
#> 10999 Oregon Arizona 1981
#> 11000 Kansas Hawaii 1981
#> 11001 New York Oregon 1982
#> 11002 New York Michigan 1982
#> 11003 New York Pennsylvania 1982
#> 11004 New York Rhode Island 1982
#> 11005 New York Maine 1982
#> 11006 New York Connecticut 1982
#> 11007 New York New Jersey 1982
#> 11008 New York New Hampshire 1982
#> 11009 New York Minnesota 1982
#> 11010 New York Indiana 1982
#> 11011 New York Illinois 1982
#> 11012 New York Nebraska 1982
#> 11013 New York Florida 1982
#> 11014 New York Kentucky 1982
#> 11015 New York Ohio 1982
#> 11016 New York Oklahoma 1982
#> 11017 New York West Virginia 1982
#> 11018 New York Maryland 1982
#> 11019 New York Virginia 1982
#> 11020 New York Delaware 1982
#> 11021 New York California 1982
#> 11022 New York Washington 1982
#> 11023 Colorado Georgia 1982
#> 11024 New York Massachusetts 1982
#> 11025 New York Nevada 1982
#> 11026 Michigan Montana 1982
#> 11027 Colorado Kansas 1982
#> 11028 New York Colorado 1982
#> 11029 New York North Carolina 1982
#> 11030 New York Vermont 1982
#> 11031 New York Idaho 1982
#> 11032 New York Tennessee 1982
#> 11033 New York South Dakota 1982
#> 11034 Washington Missouri 1982
#> 11035 New York Texas 1982
#> 11036 Rhode Island New Mexico 1982
#> 11037 Maine Iowa 1982
#> 11038 Kentucky Arkansas 1982
#> 11039 Florida Mississippi 1982
#> 11040 New Jersey South Carolina 1982
#> 11041 Colorado Louisiana 1982
#> 11042 Virginia Alabama 1982
#> 11043 New York Wisconsin 1982
#> 11044 Delaware North Dakota 1982
#> 11045 New York Arizona 1982
#> 11046 Washington Wyoming 1982
#> 11047 Massachusetts New York 1982
#> 11048 New Jersey Hawaii 1982
#> 11049 New York Utah 1982
#> 11050 Oregon Alaska 1982
#> 11051 California Arkansas 1982
#> 11052 Colorado Minnesota 1982
#> 11053 California Oregon 1982
#> 11054 California Washington 1982
#> 11055 Rhode Island Montana 1982
#> 11056 Colorado Maryland 1982
#> 11057 Colorado Pennsylvania 1982
#> 11058 Arkansas North Carolina 1982
#> 11059 Florida Virginia 1982
#> 11060 Montana Kentucky 1982
#> 11061 New Mexico New Hampshire 1982
#> 11062 New York Georgia 1982
#> 11063 Washington Kansas 1982
#> 11064 New Jersey New Mexico 1982
#> 11065 New Mexico Iowa 1982
#> 11066 New Mexico Colorado 1982
#> 11067 Idaho Alabama 1982
#> 11068 California New York 1982
#> 11069 New Jersey Rhode Island 1982
#> 11070 North Carolina Indiana 1982
#> 11071 Colorado Ohio 1982
#> 11072 Colorado New Jersey 1982
#> 11073 Illinois Massachusetts 1982
#> 11074 Florida Louisiana 1982
#> 11075 Georgia South Carolina 1982
#> 11076 New Mexico Oklahoma 1982
#> 11077 Arkansas Nebraska 1982
#> 11078 Idaho Delaware 1982
#> 11079 Colorado South Dakota 1982
#> 11080 Florida Arizona 1982
#> 11081 New Mexico North Dakota 1982
#> 11082 Rhode Island Wisconsin 1982
#> 11083 Michigan Illinois 1982
#> 11084 Montana Maine 1982
#> 11085 Arkansas California 1982
#> 11086 Nebraska Tennessee 1982
#> 11087 Illinois Florida 1982
#> 11088 Arkansas Montana 1982
#> 11089 Rhode Island Wyoming 1982
#> 11090 South Carolina Texas 1982
#> 11091 South Carolina Idaho 1982
#> 11092 Maine Vermont 1982
#> 11093 Rhode Island Connecticut 1982
#> 11094 Florida Utah 1982
#> 11095 Kentucky Michigan 1982
#> 11096 Maryland Delaware 1982
#> 11097 Delaware Nevada 1982
#> 11098 Michigan West Virginia 1982
#> 11099 Rhode Island Maryland 1982
#> 11100 New Mexico Hawaii 1982
#> 11101 Illinois Arkansas 1982
#> 11102 Florida Rhode Island 1982
#> 11103 Maryland New Mexico 1982
#> 11104 Rhode Island Missouri 1982
#> 11105 Indiana New Jersey 1982
#> 11106 Connecticut Colorado 1982
#> 11107 Oregon Montana 1982
#> 11108 New Mexico Mississippi 1982
#> 11109 Colorado Indiana 1982
#> 11110 Minnesota Oregon 1982
#> 11111 Wisconsin Vermont 1982
#> 11112 Kentucky Florida 1982
#> 11113 Montana Virginia 1982
#> 11114 Montana Iowa 1982
#> 11115 Kentucky New York 1982
#> 11116 Texas Georgia 1982
#> 11117 Idaho Washington 1982
#> 11118 Colorado North Dakota 1982
#> 11119 Hawaii Alaska 1982
#> 11120 Montana Minnesota 1982
#> 11121 Illinois Nebraska 1982
#> 11122 Montana Maryland 1982
#> 11123 Washington Wisconsin 1982
#> 11124 Connecticut Massachusetts 1982
#> 11125 Kentucky Tennessee 1982
#> 11126 Oregon Kentucky 1982
#> 11127 New Jersey Michigan 1982
#> 11128 Kentucky Oklahoma 1982
#> 11129 Nevada Utah 1982
#> 11130 Alaska Connecticut 1982
#> 11131 California North Carolina 1982
#> 11132 New Hampshire Indiana 1982
#> 11133 Rhode Island Washington 1982
#> 11134 New York Kansas 1982
#> 11135 Hawaii Oregon 1982
#> 11136 Connecticut New Hampshire 1982
#> 11137 Oregon New Mexico 1982
#> 11138 Vermont Connecticut 1982
#> 11139 Maine South Dakota 1982
#> 11140 Arkansas Pennsylvania 1982
#> 11141 Delaware Louisiana 1982
#> 11142 Illinois Alabama 1982
#> 11143 New Mexico Nevada 1982
#> 11144 Connecticut New York 1982
#> 11145 North Carolina South Carolina 1982
#> 11146 Colorado Maine 1982
#> 11147 Kentucky Colorado 1982
#> 11148 New Mexico Rhode Island 1982
#> 11149 Massachusetts Minnesota 1982
#> 11150 Rhode Island New Jersey 1982
#> 11151 New Mexico West Virginia 1982
#> 11152 Kentucky Illinois 1982
#> 11153 Kentucky North Carolina 1982
#> 11154 Arkansas Kansas 1982
#> 11155 Kentucky Ohio 1982
#> 11156 New Jersey Massachusetts 1982
#> 11157 California Alaska 1982
#> 11158 Maryland Kentucky 1982
#> 11159 Colorado California 1982
#> 11160 Illinois Hawaii 1982
#> 11161 Montana Idaho 1982
#> 11162 North Carolina Virginia 1982
#> 11163 Alaska New York 1982
#> 11164 Washington Nebraska 1982
#> 11165 Idaho Missouri 1982
#> 11166 Michigan Delaware 1982
#> 11167 Hawaii Idaho 1982
#> 11168 Massachusetts North Carolina 1982
#> 11169 Kentucky Louisiana 1982
#> 11170 Indiana New York 1982
#> 11171 Kentucky North Dakota 1982
#> 11172 Rhode Island New Hampshire 1982
#> 11173 Minnesota Utah 1982
#> 11174 Florida Nevada 1982
#> 11175 Tennessee Arkansas 1982
#> 11176 Washington Texas 1982
#> 11177 California Colorado 1982
#> 11178 Mississippi Arizona 1982
#> 11179 Maryland Iowa 1982
#> 11180 Tennessee Florida 1982
#> 11181 Minnesota California 1982
#> 11182 Arizona Georgia 1982
#> 11183 New Jersey Maine 1982
#> 11184 Michigan Rhode Island 1982
#> 11185 Nevada Mississippi 1982
#> 11186 Massachusetts Florida 1982
#> 11187 Oregon Vermont 1982
#> 11188 Rhode Island Oregon 1982
#> 11189 Minnesota Washington 1982
#> 11190 Montana Tennessee 1982
#> 11191 Colorado Michigan 1982
#> 11192 Kansas Colorado 1982
#> 11193 Delaware Alabama 1982
#> 11194 Indiana Hawaii 1982
#> 11195 Colorado Wisconsin 1982
#> 11196 Washington Pennsylvania 1982
#> 11197 South Carolina Wyoming 1982
#> 11198 Pennsylvania Indiana 1982
#> 11199 Minnesota Ohio 1982
#> 11200 Arkansas Minnesota 1982
#> 11201 Connecticut New Jersey 1982
#> 11202 Delaware Arizona 1982
#> 11203 Oregon Delaware 1982
#> 11204 Colorado Montana 1982
#> 11205 Louisiana Texas 1982
#> 11206 Illinois New York 1982
#> 11207 Minnesota Kansas 1982
#> 11208 North Carolina Maryland 1982
#> 11209 Texas Oklahoma 1982
#> 11210 Delaware Massachusetts 1982
#> 11211 Connecticut Kentucky 1982
#> 11212 Montana New Mexico 1982
#> 11213 Illinois Michigan 1982
#> 11214 Minnesota Illinois 1982
#> 11215 Montana South Dakota 1982
#> 11216 Colorado South Carolina 1982
#> 11217 Oregon Alabama 1982
#> 11218 New Mexico Alabama 1982
#> 11219 Arkansas Rhode Island 1982
#> 11220 Pennsylvania Colorado 1982
#> 11221 Maryland North Carolina 1982
#> 11222 Kentucky Massachusetts 1982
#> 11223 Connecticut Louisiana 1982
#> 11224 Delaware Connecticut 1982
#> 11225 Vermont New York 1982
#> 11226 Colorado Massachusetts 1982
#> 11227 Massachusetts North Dakota 1982
#> 11228 Kentucky Mississippi 1982
#> 11229 Oregon Iowa 1982
#> 11230 Maine Missouri 1982
#> 11231 Colorado Washington 1982
#> 11232 New York Hawaii 1982
#> 11233 Pennsylvania California 1982
#> 11234 West Virginia Kansas 1982
#> 11235 Wisconsin Idaho 1982
#> 11236 Minnesota New Jersey 1982
#> 11237 Illinois Virginia 1982
#> 11238 Rhode Island Arkansas 1982
#> 11239 Michigan Georgia 1982
#> 11240 Maryland Nebraska 1982
#> 11241 Kentucky Maine 1982
#> 11242 Florida New Hampshire 1982
#> 11243 Delaware South Dakota 1982
#> 11244 Connecticut Ohio 1982
#> 11245 Maryland Pennsylvania 1982
#> 11246 Maine Nevada 1982
#> 11247 Alabama Florida 1982
#> 11248 Washington Oregon 1982
#> 11249 South Carolina Wisconsin 1982
#> 11250 Illinois Iowa 1982
#> 11251 Illinois Minnesota 1982
#> 11252 Washington Vermont 1982
#> 11253 Rhode Island Texas 1982
#> 11254 Maryland California 1982
#> 11255 Minnesota Tennessee 1982
#> 11256 Louisiana Alaska 1982
#> 11257 Florida Connecticut 1982
#> 11258 Wisconsin Nevada 1982
#> 11259 Iowa Oklahoma 1982
#> 11260 Iowa Louisiana 1982
#> 11261 Rhode Island Minnesota 1982
#> 11262 Hawaii Florida 1982
#> 11263 New Jersey Utah 1982
#> 11264 Iowa Oregon 1982
#> 11265 Kansas Iowa 1982
#> 11266 Nevada Montana 1982
#> 11267 North Dakota Nebraska 1982
#> 11268 Kansas Arkansas 1982
#> 11269 California New Mexico 1982
#> 11270 Vermont Maine 1982
#> 11271 Virginia Texas 1982
#> 11272 Vermont Virginia 1982
#> 11273 Illinois Rhode Island 1982
#> 11274 Connecticut Rhode Island 1982
#> 11275 Wisconsin Massachusetts 1982
#> 11276 Alabama North Dakota 1982
#> 11277 Utah New Mexico 1982
#> 11278 Montana Hawaii 1982
#> 11279 Minnesota Delaware 1982
#> 11280 Delaware Wyoming 1982
#> 11281 South Carolina Connecticut 1982
#> 11282 Washington New York 1982
#> 11283 New York Wyoming 1982
#> 11284 Oregon Michigan 1982
#> 11285 Rhode Island Delaware 1982
#> 11286 Oregon Texas 1982
#> 11287 Vermont Wyoming 1982
#> 11288 Kansas Idaho 1982
#> 11289 Arkansas Iowa 1982
#> 11290 Alabama Georgia 1982
#> 11291 Louisiana South Carolina 1982
#> 11292 Florida Arkansas 1982
#> 11293 Arkansas Arizona 1982
#> 11294 Louisiana New Mexico 1982
#> 11295 California Hawaii 1982
#> 11296 Montana Washington 1982
#> 11297 Oregon Ohio 1982
#> 11298 Louisiana Tennessee 1982
#> 11299 Maryland Indiana 1982
#> 11300 Minnesota Oklahoma 1982
#> 11301 Vermont New Hampshire 1982
#> 11302 Maine Maryland 1982
#> 11303 Montana Michigan 1982
#> 11304 Oklahoma Nevada 1982
#> 11305 Massachusetts Washington 1982
#> 11306 Georgia Illinois 1982
#> 11307 Tennessee Montana 1982
#> 11308 South Dakota North Carolina 1982
#> 11309 Idaho Kentucky 1982
#> 11310 Maryland Illinois 1982
#> 11311 New Jersey Pennsylvania 1982
#> 11312 California Indiana 1982
#> 11313 Minnesota Colorado 1982
#> 11314 Tennessee Massachusetts 1982
#> 11315 Kansas Alaska 1982
#> 11316 Illinois West Virginia 1982
#> 11317 New Jersey Montana 1982
#> 11318 Florida Indiana 1982
#> 11319 Kentucky South Dakota 1982
#> 11320 New Jersey Connecticut 1982
#> 11321 Connecticut Maryland 1982
#> 11322 New Mexico Delaware 1982
#> 11323 Florida Nebraska 1982
#> 11324 Wisconsin Kansas 1982
#> 11325 Massachusetts Louisiana 1982
#> 11326 Illinois New Jersey 1982
#> 11327 New Mexico Kansas 1982
#> 11328 Florida Idaho 1982
#> 11329 Virginia Connecticut 1982
#> 11330 Louisiana Pennsylvania 1982
#> 11331 South Carolina Vermont 1982
#> 11332 Idaho Minnesota 1982
#> 11333 Virginia North Carolina 1982
#> 11334 Minnesota Wisconsin 1982
#> 11335 Arkansas South Dakota 1982
#> 11336 Kentucky Pennsylvania 1982
#> 11337 Colorado Vermont 1982
#> 11338 Ohio Montana 1982
#> 11339 Delaware Arkansas 1982
#> 11340 Kentucky Alabama 1982
#> 11341 Virginia New Mexico 1982
#> 11342 Tennessee Georgia 1982
#> 11343 Pennsylvania Maine 1982
#> 11344 Illinois Montana 1982
#> 11345 Ohio Utah 1982
#> 11346 Wisconsin Hawaii 1982
#> 11347 Maryland New Hampshire 1982
#> 11348 Minnesota Mississippi 1982
#> 11349 Alabama Kentucky 1982
#> 11350 Hawaii Vermont 1982
#> 11351 Nevada Rhode Island 1982
#> 11352 Virginia Utah 1982
#> 11353 Kansas Texas 1982
#> 11354 Florida North Carolina 1982
#> 11355 Ohio Rhode Island 1982
#> 11356 Colorado Florida 1982
#> 11357 Georgia Indiana 1982
#> 11358 Kentucky Idaho 1982
#> 11359 Oklahoma Pennsylvania 1982
#> 11360 New Hampshire New York 1982
#> 11361 Washington New Mexico 1982
#> 11362 New Jersey Wisconsin 1982
#> 11363 Arkansas New Hampshire 1982
#> 11364 Maryland New Jersey 1982
#> 11365 Nevada California 1982
#> 11366 Florida Georgia 1982
#> 11367 Connecticut Alabama 1982
#> 11368 Washington North Dakota 1982
#> 11369 Tennessee New York 1982
#> 11370 Hawaii New Jersey 1982
#> 11371 Montana Louisiana 1982
#> 11372 Pennsylvania Rhode Island 1982
#> 11373 Arkansas Hawaii 1982
#> 11374 New Jersey Delaware 1982
#> 11375 North Carolina Michigan 1982
#> 11376 Montana California 1982
#> 11377 Utah Virginia 1982
#> 11378 Colorado Utah 1982
#> 11379 Oregon Utah 1982
#> 11380 Montana West Virginia 1982
#> 11381 South Carolina New York 1982
#> 11382 Nevada New Mexico 1982
#> 11383 Illinois Maine 1982
#> 11384 Wisconsin Illinois 1982
#> 11385 Virginia Florida 1982
#> 11386 Ohio Maine 1982
#> 11387 Kentucky Alaska 1982
#> 11388 Texas Massachusetts 1982
#> 11389 Rhode Island New York 1982
#> 11390 Vermont Iowa 1982
#> 11391 Ohio Oklahoma 1982
#> 11392 South Dakota Nebraska 1982
#> 11393 Texas Missouri 1982
#> 11394 Oklahoma Maryland 1982
#> 11395 Florida Colorado 1982
#> 11396 North Dakota Kentucky 1982
#> 11397 Florida Michigan 1982
#> 11398 Oregon West Virginia 1982
#> 11399 Mississippi Nebraska 1982
#> 11400 Nevada Wyoming 1982
#> 11401 California New Jersey 1982
#> 11402 Arkansas Mississippi 1982
#> 11403 Illinois Idaho 1982
#> 11404 Minnesota Missouri 1982
#> 11405 Wisconsin South Carolina 1982
#> 11406 Georgia Nevada 1982
#> 11407 Nevada Wisconsin 1982
#> 11408 New Hampshire Hawaii 1982
#> 11409 Nebraska West Virginia 1982
#> 11410 Florida Maryland 1982
#> 11411 Maryland Kansas 1982
#> 11412 Massachusetts Connecticut 1982
#> 11413 New Hampshire Tennessee 1982
#> 11414 Nebraska Texas 1982
#> 11415 New Hampshire Oregon 1982
#> 11416 California Illinois 1982
#> 11417 Pennsylvania Oklahoma 1982
#> 11418 Hawaii North Dakota 1982
#> 11419 Pennsylvania Minnesota 1982
#> 11420 Wisconsin Michigan 1982
#> 11421 Illinois New Hampshire 1982
#> 11422 California Virginia 1982
#> 11423 Florida Ohio 1982
#> 11424 Georgia Connecticut 1982
#> 11425 Idaho New Mexico 1982
#> 11426 Arkansas Colorado 1982
#> 11427 Wisconsin New York 1982
#> 11428 Michigan Arizona 1982
#> 11429 Kansas South Carolina 1982
#> 11430 Ohio Alabama 1982
#> 11431 Florida Wisconsin 1982
#> 11432 Delaware Missouri 1982
#> 11433 Illinois Vermont 1982
#> 11434 Washington Illinois 1982
#> 11435 California Massachusetts 1982
#> 11436 South Carolina Kentucky 1982
#> 11437 Nebraska Minnesota 1982
#> 11438 Michigan California 1982
#> 11439 Oklahoma Kansas 1982
#> 11440 Mississippi Idaho 1982
#> 11441 North Dakota Wyoming 1982
#> 11442 Michigan South Carolina 1982
#> 11443 Virginia Indiana 1982
#> 11444 Connecticut Oregon 1982
#> 11445 South Carolina Nevada 1982
#> 11446 Florida Oklahoma 1982
#> 11447 Maryland Washington 1982
#> 11448 Wisconsin Ohio 1982
#> 11449 West Virginia Georgia 1982
#> 11450 Arkansas North Dakota 1982
#> 11451 California Minnesota 1982
#> 11452 Virginia Kansas 1982
#> 11453 Rhode Island North Carolina 1982
#> 11454 Michigan Indiana 1982
#> 11455 Minnesota Maine 1982
#> 11456 Pennsylvania Alaska 1982
#> 11457 Massachusetts Illinois 1982
#> 11458 Alaska Colorado 1982
#> 11459 Massachusetts Virginia 1982
#> 11460 California Ohio 1982
#> 11461 Alabama Maryland 1982
#> 11462 California North Dakota 1982
#> 11463 Louisiana Oklahoma 1982
#> 11464 Nebraska Mississippi 1982
#> 11465 New Jersey Colorado 1982
#> 11466 Nevada Georgia 1982
#> 11467 Nebraska Arkansas 1982
#> 11468 Kansas Alabama 1982
#> 11469 South Dakota Wisconsin 1982
#> 11470 Missouri Maine 1982
#> 11471 New Jersey Alaska 1982
#> 11472 Georgia Montana 1982
#> 11473 Indiana South Dakota 1982
#> 11474 Alaska South Dakota 1982
#> 11475 Maryland Arkansas 1982
#> 11476 Wyoming Arizona 1982
#> 11477 West Virginia Kentucky 1982
#> 11478 Hawaii Alabama 1982
#> 11479 Kentucky West Virginia 1982
#> 11480 Texas Montana 1982
#> 11481 Louisiana Illinois 1982
#> 11482 Oregon Colorado 1982
#> 11483 Delaware California 1982
#> 11484 South Carolina Utah 1982
#> 11485 Ohio Kansas 1982
#> 11486 Virginia Wyoming 1982
#> 11487 Colorado Tennessee 1982
#> 11488 Louisiana Missouri 1982
#> 11489 Indiana Wisconsin 1982
#> 11490 Maine North Dakota 1982
#> 11491 Delaware Minnesota 1982
#> 11492 Minnesota Iowa 1982
#> 11493 Nevada Washington 1982
#> 11494 North Dakota Virginia 1982
#> 11495 Massachusetts Oregon 1982
#> 11496 Kansas New York 1982
#> 11497 Ohio Washington 1982
#> 11498 North Dakota Colorado 1982
#> 11499 Maryland Virginia 1982
#> 11500 Pennsylvania Maryland 1982
#> 11501 New York Oregon 1983
#> 11502 New York Connecticut 1983
#> 11503 New York Pennsylvania 1983
#> 11504 New York Michigan 1983
#> 11505 New York Rhode Island 1983
#> 11506 New York New Jersey 1983
#> 11507 New York Maine 1983
#> 11508 New York Illinois 1983
#> 11509 New York Minnesota 1983
#> 11510 New York Indiana 1983
#> 11511 New York New Hampshire 1983
#> 11512 New York Nebraska 1983
#> 11513 New York Kentucky 1983
#> 11514 New York Florida 1983
#> 11515 New York Ohio 1983
#> 11516 New York Virginia 1983
#> 11517 New York Washington 1983
#> 11518 New York Delaware 1983
#> 11519 New York California 1983
#> 11520 New York Oklahoma 1983
#> 11521 New York West Virginia 1983
#> 11522 New York Maryland 1983
#> 11523 Colorado Georgia 1983
#> 11524 New York Massachusetts 1983
#> 11525 Colorado Kansas 1983
#> 11526 New York Nevada 1983
#> 11527 Michigan Montana 1983
#> 11528 New York Colorado 1983
#> 11529 Washington South Dakota 1983
#> 11530 New York Tennessee 1983
#> 11531 New York North Carolina 1983
#> 11532 New York Vermont 1983
#> 11533 Washington Missouri 1983
#> 11534 New York Idaho 1983
#> 11535 Florida Mississippi 1983
#> 11536 New York Texas 1983
#> 11537 Maine Iowa 1983
#> 11538 New Jersey South Carolina 1983
#> 11539 Rhode Island New Mexico 1983
#> 11540 Colorado Louisiana 1983
#> 11541 Kentucky Arkansas 1983
#> 11542 New York Wisconsin 1983
#> 11543 New York Alabama 1983
#> 11544 Washington Wyoming 1983
#> 11545 Delaware North Dakota 1983
#> 11546 New York Arizona 1983
#> 11547 Oregon Alaska 1983
#> 11548 Massachusetts New York 1983
#> 11549 New Jersey Hawaii 1983
#> 11550 New York Utah 1983
#> 11551 Colorado Minnesota 1983
#> 11552 California Arkansas 1983
#> 11553 Arkansas Alabama 1983
#> 11554 Montana Iowa 1983
#> 11555 Colorado Maryland 1983
#> 11556 Montana Kentucky 1983
#> 11557 California Oregon 1983
#> 11558 California Washington 1983
#> 11559 Colorado Pennsylvania 1983
#> 11560 Colorado Ohio 1983
#> 11561 California New York 1983
#> 11562 Idaho Delaware 1983
#> 11563 Arkansas North Carolina 1983
#> 11564 New Jersey New Mexico 1983
#> 11565 Washington Montana 1983
#> 11566 New Mexico New Hampshire 1983
#> 11567 Rhode Island Wyoming 1983
#> 11568 Florida Virginia 1983
#> 11569 Florida Louisiana 1983
#> 11570 Montana Maine 1983
#> 11571 Colorado New Jersey 1983
#> 11572 New York Georgia 1983
#> 11573 Washington Kansas 1983
#> 11574 New Mexico Rhode Island 1983
#> 11575 Maine Indiana 1983
#> 11576 New Mexico Colorado 1983
#> 11577 North Dakota Nebraska 1983
#> 11578 Arkansas California 1983
#> 11579 Washington Massachusetts 1983
#> 11580 Rhode Island Connecticut 1983
#> 11581 Georgia South Carolina 1983
#> 11582 New Mexico Oklahoma 1983
#> 11583 Florida Arizona 1983
#> 11584 New Mexico North Dakota 1983
#> 11585 Arkansas Florida 1983
#> 11586 Rhode Island Wisconsin 1983
#> 11587 Michigan Illinois 1983
#> 11588 Florida Utah 1983
#> 11589 Montana Idaho 1983
#> 11590 Michigan Delaware 1983
#> 11591 Nebraska Tennessee 1983
#> 11592 New York South Dakota 1983
#> 11593 South Carolina Texas 1983
#> 11594 Delaware Missouri 1983
#> 11595 Washington Vermont 1983
#> 11596 Colorado Michigan 1983
#> 11597 Maryland New Mexico 1983
#> 11598 Delaware Nevada 1983
#> 11599 Michigan West Virginia 1983
#> 11600 Illinois Arkansas 1983
#> 11601 New Mexico Mississippi 1983
#> 11602 North Carolina Virginia 1983
#> 11603 Oregon Montana 1983
#> 11604 Massachusetts Rhode Island 1983
#> 11605 New Mexico Hawaii 1983
#> 11606 Oregon Kentucky 1983
#> 11607 Connecticut Washington 1983
#> 11608 California Pennsylvania 1983
#> 11609 Indiana New Jersey 1983
#> 11610 Hawaii Alaska 1983
#> 11611 Connecticut Colorado 1983
#> 11612 Rhode Island Oregon 1983
#> 11613 North Carolina Indiana 1983
#> 11614 Arkansas Montana 1983
#> 11615 Colorado California 1983
#> 11616 Florida Georgia 1983
#> 11617 New Mexico Iowa 1983
#> 11618 Connecticut Maryland 1983
#> 11619 Kentucky New York 1983
#> 11620 Wisconsin Vermont 1983
#> 11621 Arkansas Nebraska 1983
#> 11622 Montana Minnesota 1983
#> 11623 Montana South Dakota 1983
#> 11624 Colorado North Dakota 1983
#> 11625 Kentucky Michigan 1983
#> 11626 Connecticut New Hampshire 1983
#> 11627 Tennessee Florida 1983
#> 11628 Washington Wisconsin 1983
#> 11629 Illinois Massachusetts 1983
#> 11630 California North Carolina 1983
#> 11631 South Carolina Idaho 1983
#> 11632 Nevada Utah 1983
#> 11633 Maryland Delaware 1983
#> 11634 Alaska Connecticut 1983
#> 11635 Oregon New Mexico 1983
#> 11636 New York Kansas 1983
#> 11637 Delaware Connecticut 1983
#> 11638 Georgia Illinois 1983
#> 11639 California Indiana 1983
#> 11640 Delaware Louisiana 1983
#> 11641 New Mexico Nevada 1983
#> 11642 Connecticut New York 1983
#> 11643 Montana Maryland 1983
#> 11644 North Carolina South Carolina 1983
#> 11645 Washington Rhode Island 1983
#> 11646 Colorado Maine 1983
#> 11647 Kentucky Tennessee 1983
#> 11648 Kentucky Colorado 1983
#> 11649 Hawaii Oregon 1983
#> 11650 Kentucky Oklahoma 1983
#> 11651 Massachusetts Minnesota 1983
#> 11652 Tennessee Missouri 1983
#> 11653 New Jersey Virginia 1983
#> 11654 New Mexico West Virginia 1983
#> 11655 Colorado Wisconsin 1983
#> 11656 Arkansas Kansas 1983
#> 11657 Michigan Alabama 1983
#> 11658 California New Jersey 1983
#> 11659 New Jersey Ohio 1983
#> 11660 California Alaska 1983
#> 11661 Maryland Kentucky 1983
#> 11662 Idaho Washington 1983
#> 11663 Illinois Hawaii 1983
#> 11664 Tennessee Arkansas 1983
#> 11665 Nevada Mississippi 1983
#> 11666 Arkansas Arizona 1983
#> 11667 Maryland North Carolina 1983
#> 11668 Illinois New York 1983
#> 11669 Montana California 1983
#> 11670 Florida Rhode Island 1983
#> 11671 Idaho South Dakota 1983
#> 11672 Indiana New York 1983
#> 11673 Minnesota Oregon 1983
#> 11674 Hawaii Idaho 1983
#> 11675 Illinois Georgia 1983
#> 11676 Vermont Connecticut 1983
#> 11677 Massachusetts North Carolina 1983
#> 11678 Kentucky Louisiana 1983
#> 11679 Washington Texas 1983
#> 11680 Kentucky North Dakota 1983
#> 11681 Minnesota Utah 1983
#> 11682 Florida Nevada 1983
#> 11683 Georgia Indiana 1983
#> 11684 California Colorado 1983
#> 11685 Michigan Nebraska 1983
#> 11686 Maryland Iowa 1983
#> 11687 New Jersey Massachusetts 1983
#> 11688 Maine Vermont 1983
#> 11689 New Jersey Maine 1983
#> 11690 New Jersey Michigan 1983
#> 11691 Arkansas Rhode Island 1983
#> 11692 Minnesota Alabama 1983
#> 11693 South Carolina Wyoming 1983
#> 11694 Montana New Hampshire 1983
#> 11695 Illinois Florida 1983
#> 11696 Oregon Delaware 1983
#> 11697 Connecticut Massachusetts 1983
#> 11698 Massachusetts Florida 1983
#> 11699 Montana Tennessee 1983
#> 11700 Rhode Island Washington 1983
#> 11701 Kansas Colorado 1983
#> 11702 Alaska New York 1983
#> 11703 Indiana Hawaii 1983
#> 11704 Mississippi Arizona 1983
#> 11705 Delaware Rhode Island 1983
#> 11706 Pennsylvania California 1983
#> 11707 Alabama Georgia 1983
#> 11708 Maryland Illinois 1983
#> 11709 Maine Maryland 1983
#> 11710 Arkansas Minnesota 1983
#> 11711 New Mexico Arkansas 1983
#> 11712 Washington Pennsylvania 1983
#> 11713 Connecticut New Jersey 1983
#> 11714 Colorado South Carolina 1983
#> 11715 Louisiana Texas 1983
#> 11716 Minnesota Kansas 1983
#> 11717 Connecticut Kentucky 1983
#> 11718 Montana New Mexico 1983
#> 11719 Illinois Michigan 1983
#> 11720 Colorado Montana 1983
#> 11721 New Jersey Nebraska 1983
#> 11722 Minnesota Illinois 1983
#> 11723 Florida Connecticut 1983
#> 11724 Louisiana Pennsylvania 1983
#> 11725 Oregon Vermont 1983
#> 11726 Michigan Washington 1983
#> 11727 Delaware Massachusetts 1983
#> 11728 Pennsylvania Colorado 1983
#> 11729 Connecticut Louisiana 1983
#> 11730 Washington Indiana 1983
#> 11731 Vermont New York 1983
#> 11732 Kentucky Mississippi 1983
#> 11733 Massachusetts North Dakota 1983
#> 11734 Maine Oklahoma 1983
#> 11735 Connecticut Alabama 1983
#> 11736 Colorado Massachusetts 1983
#> 11737 Oregon Iowa 1983
#> 11738 Oregon Ohio 1983
#> 11739 Washington New York 1983
#> 11740 New York Hawaii 1983
#> 11741 Arkansas Delaware 1983
#> 11742 West Virginia Kansas 1983
#> 11743 Maryland Utah 1983
#> 11744 Idaho Missouri 1983
#> 11745 Wisconsin Idaho 1983
#> 11746 Minnesota New Jersey 1983
#> 11747 Montana Virginia 1983
#> 11748 Arkansas South Dakota 1983
#> 11749 Delaware Arizona 1983
#> 11750 Ohio New Hampshire 1983
#> 11751 West Virginia Georgia 1983
#> 11752 Maryland Pennsylvania 1983
#> 11753 Kentucky North Carolina 1983
#> 11754 Illinois Iowa 1983
#> 11755 Maine Nevada 1983
#> 11756 Washington Oregon 1983
#> 11757 Louisiana Virginia 1983
#> 11758 South Carolina Wisconsin 1983
#> 11759 Illinois Minnesota 1983
#> 11760 Louisiana Montana 1983
#> 11761 Rhode Island Texas 1983
#> 11762 Maine South Dakota 1983
#> 11763 Florida Ohio 1983
#> 11764 Hawaii Florida 1983
#> 11765 Minnesota Tennessee 1983
#> 11766 Maryland Maine 1983
#> 11767 Louisiana Alaska 1983
#> 11768 Delaware Arkansas 1983
#> 11769 Kentucky Massachusetts 1983
#> 11770 Iowa Louisiana 1983
#> 11771 Maryland California 1983
#> 11772 Rhode Island Minnesota 1983
#> 11773 New Jersey Montana 1983
#> 11774 Florida Indiana 1983
#> 11775 Iowa Oregon 1983
#> 11776 Kansas Iowa 1983
#> 11777 Nevada Montana 1983
#> 11778 Minnesota Washington 1983
#> 11779 Alabama Florida 1983
#> 11780 Minnesota Arizona 1983
#> 11781 Minnesota New Mexico 1983
#> 11782 New Jersey Delaware 1983
#> 11783 Vermont Maine 1983
#> 11784 Nebraska New Hampshire 1983
#> 11785 New Jersey Texas 1983
#> 11786 Montana West Virginia 1983
#> 11787 Illinois Rhode Island 1983
#> 11788 Alabama North Dakota 1983
#> 11789 Montana Hawaii 1983
#> 11790 Delaware Wyoming 1983
#> 11791 South Carolina Connecticut 1983
#> 11792 North Carolina Maryland 1983
#> 11793 New Mexico Texas 1983
#> 11794 New York Wyoming 1983
#> 11795 Oregon Michigan 1983
#> 11796 Connecticut Rhode Island 1983
#> 11797 Florida Arkansas 1983
#> 11798 Colorado Oklahoma 1983
#> 11799 Vermont Wyoming 1983
#> 11800 West Virginia Tennessee 1983
#> 11801 Oklahoma Nevada 1983
#> 11802 Kansas Idaho 1983
#> 11803 Arkansas Iowa 1983
#> 11804 Nevada Arkansas 1983
#> 11805 Louisiana South Carolina 1983
#> 11806 Louisiana New Mexico 1983
#> 11807 Florida Maryland 1983
#> 11808 North Carolina Ohio 1983
#> 11809 Maine Missouri 1983
#> 11810 California Hawaii 1983
#> 11811 North Dakota Maryland 1983
#> 11812 Minnesota California 1983
#> 11813 California Connecticut 1983
#> 11814 Montana Michigan 1983
#> 11815 Minnesota West Virginia 1983
#> 11816 Florida Nebraska 1983
#> 11817 Florida Kansas 1983
#> 11818 Connecticut North Carolina 1983
#> 11819 South Dakota North Carolina 1983
#> 11820 Idaho Kentucky 1983
#> 11821 Vermont New Hampshire 1983
#> 11822 Minnesota Colorado 1983
#> 11823 Wisconsin Utah 1983
#> 11824 Kansas Alaska 1983
#> 11825 Washington Illinois 1983
#> 11826 New Jersey Pennsylvania 1983
#> 11827 New Jersey Alabama 1983
#> 11828 Oklahoma Indiana 1983
#> 11829 Nebraska Maine 1983
#> 11830 Minnesota Maine 1983
#> 11831 Utah Virginia 1983
#> 11832 Nevada Georgia 1983
#> 11833 Washington New Mexico 1983
#> 11834 Pennsylvania Nebraska 1983
#> 11835 New Jersey Connecticut 1983
#> 11836 Minnesota Wisconsin 1983
#> 11837 Nevada Rhode Island 1983
#> 11838 Idaho New Mexico 1983
#> 11839 Oregon Mississippi 1983
#> 11840 Maryland Florida 1983
#> 11841 Oklahoma Pennsylvania 1983
#> 11842 Tennessee Massachusetts 1983
#> 11843 Massachusetts Louisiana 1983
#> 11844 New Mexico Kansas 1983
#> 11845 Florida Idaho 1983
#> 11846 Oregon Alabama 1983
#> 11847 South Carolina Vermont 1983
#> 11848 Idaho Minnesota 1983
#> 11849 Florida Oklahoma 1983
#> 11850 Tennessee Montana 1983
#> 11851 Iowa Wisconsin 1983
#> 11852 Colorado Vermont 1983
#> 11853 Ohio Montana 1983
#> 11854 Nevada Washington 1983
#> 11855 Florida Missouri 1983
#> 11856 Georgia Rhode Island 1983
#> 11857 Illinois New Jersey 1983
#> 11858 Wyoming Arizona 1983
#> 11859 Colorado Tennessee 1983
#> 11860 Minnesota Iowa 1983
#> 11861 Illinois Pennsylvania 1983
#> 11862 Wisconsin Hawaii 1983
#> 11863 Minnesota Virginia 1983
#> 11864 Delaware Maryland 1983
#> 11865 Ohio Kansas 1983
#> 11866 Alabama Kentucky 1983
#> 11867 New Mexico Alabama 1983
#> 11868 Hawaii Vermont 1983
#> 11869 Maryland New Jersey 1983
#> 11870 Florida North Carolina 1983
#> 11871 South Carolina Massachusetts 1983
#> 11872 Illinois California 1983
#> 11873 Kentucky Idaho 1983
#> 11874 New Hampshire New York 1983
#> 11875 Illinois Maine 1983
#> 11876 Illinois Maryland 1983
#> 11877 Louisiana Nevada 1983
#> 11878 Minnesota Rhode Island 1983
#> 11879 Washington North Dakota 1983
#> 11880 Tennessee New York 1983
#> 11881 California New Mexico 1983
#> 11882 North Dakota Kentucky 1983
#> 11883 Hawaii New Jersey 1983
#> 11884 South Carolina Illinois 1983
#> 11885 Mississippi California 1983
#> 11886 Oklahoma Nebraska 1983
#> 11887 Wisconsin Massachusetts 1983
#> 11888 Montana Louisiana 1983
#> 11889 Arkansas Hawaii 1983
#> 11890 Oregon Texas 1983
#> 11891 North Carolina Michigan 1983
#> 11892 Wisconsin Illinois 1983
#> 11893 Virginia Florida 1983
#> 11894 Ohio Utah 1983
#> 11895 Ohio Rhode Island 1983
#> 11896 South Carolina New York 1983
#> 11897 Nevada New Mexico 1983
#> 11898 Tennessee Georgia 1983
#> 11899 Oregon Utah 1983
#> 11900 Kentucky Alaska 1983
#> 11901 Colorado Washington 1983
#> 11902 Rhode Island New York 1983
#> 11903 Vermont Iowa 1983
#> 11904 New Mexico Delaware 1983
#> 11905 California Wisconsin 1983
#> 11906 Mississippi Nebraska 1983
#> 11907 Florida Colorado 1983
#> 11908 Louisiana Tennessee 1983
#> 11909 Florida Michigan 1983
#> 11910 Louisiana Maine 1983
#> 11911 South Carolina Nevada 1983
#> 11912 Pennsylvania Oklahoma 1983
#> 11913 Illinois Idaho 1983
#> 11914 Nevada Wyoming 1983
#> 11915 Oregon West Virginia 1983
#> 11916 Wisconsin South Carolina 1983
#> 11917 New Hampshire Hawaii 1983
#> 11918 Maryland Virginia 1983
#> 11919 Nebraska Texas 1983
#> 11920 Missouri Wisconsin 1983
#> 11921 Iowa Montana 1983
#> 11922 Indiana South Dakota 1983
#> 11923 Maryland Indiana 1983
#> 11924 New Hampshire Oregon 1983
#> 11925 Massachusetts Connecticut 1983
#> 11926 Nebraska Alabama 1983
#> 11927 California Illinois 1983
#> 11928 Kentucky South Dakota 1983
#> 11929 Louisiana Missouri 1983
#> 11930 Florida Kentucky 1983
#> 11931 Hawaii North Dakota 1983
#> 11932 Pennsylvania Minnesota 1983
#> 11933 Wisconsin Michigan 1983
#> 11934 Georgia Connecticut 1983
#> 11935 Michigan Indiana 1983
#> 11936 Arkansas Colorado 1983
#> 11937 Wisconsin New York 1983
#> 11938 Nebraska Mississippi 1983
#> 11939 West Virginia Florida 1983
#> 11940 Hawaii Virginia 1983
#> 11941 Kansas South Carolina 1983
#> 11942 California Minnesota 1983
#> 11943 Illinois Oklahoma 1983
#> 11944 Pennsylvania Kansas 1983
#> 11945 Minnesota Missouri 1983
#> 11946 Indiana Wisconsin 1983
#> 11947 Illinois Vermont 1983
#> 11948 Maryland Washington 1983
#> 11949 Pennsylvania Indiana 1983
#> 11950 Ohio Alabama 1983
#> 11951 Nebraska Minnesota 1983
#> 11952 Oregon Oklahoma 1983
#> 11953 Arizona Washington 1983
#> 11954 Michigan California 1983
#> 11955 Texas Maryland 1983
#> 11956 Missouri Kansas 1983
#> 11957 Mississippi Idaho 1983
#> 11958 Michigan Arizona 1983
#> 11959 North Dakota Wyoming 1983
#> 11960 Michigan South Carolina 1983
#> 11961 Virginia North Carolina 1983
#> 11962 Illinois West Virginia 1983
#> 11963 Pennsylvania Alaska 1983
#> 11964 Connecticut Oregon 1983
#> 11965 Montana Nevada 1983
#> 11966 Illinois Nebraska 1983
#> 11967 Nebraska Arkansas 1983
#> 11968 South Carolina Kentucky 1983
#> 11969 Arkansas North Dakota 1983
#> 11970 New Jersey Alaska 1983
#> 11971 New Jersey New Hampshire 1983
#> 11972 Minnesota Delaware 1983
#> 11973 Georgia Montana 1983
#> 11974 Vermont Mississippi 1983
#> 11975 Alaska Colorado 1983
#> 11976 South Carolina Utah 1983
#> 11977 Virginia Kansas 1983
#> 11978 Maryland Arkansas 1983
#> 11979 California Massachusetts 1983
#> 11980 Nebraska West Virginia 1983
#> 11981 California North Dakota 1983
#> 11982 Louisiana Oklahoma 1983
#> 11983 Montana Washington 1983
#> 11984 Minnesota Mississippi 1983
#> 11985 New Jersey Colorado 1983
#> 11986 Rhode Island Ohio 1983
#> 11987 South Dakota Wisconsin 1983
#> 11988 Louisiana Illinois 1983
#> 11989 Ohio Oklahoma 1983
#> 11990 Virginia Connecticut 1983
#> 11991 Oregon North Carolina 1983
#> 11992 Kansas New Hampshire 1983
#> 11993 Oregon Colorado 1983
#> 11994 Delaware California 1983
#> 11995 Alaska South Dakota 1983
#> 11996 Maine North Dakota 1983
#> 11997 Delaware Minnesota 1983
#> 11998 Delaware New Hampshire 1983
#> 11999 South Dakota Nebraska 1983
#> 12000 Oklahoma Kansas 1983
#> 12001 New York Oregon 1984
#> 12002 New York Pennsylvania 1984
#> 12003 New York Connecticut 1984
#> 12004 New York New Jersey 1984
#> 12005 New York Indiana 1984
#> 12006 New York Michigan 1984
#> 12007 New York New Hampshire 1984
#> 12008 New York Rhode Island 1984
#> 12009 New York Maine 1984
#> 12010 New York Illinois 1984
#> 12011 New York Minnesota 1984
#> 12012 New York Florida 1984
#> 12013 New York Nebraska 1984
#> 12014 New York Kentucky 1984
#> 12015 New York Ohio 1984
#> 12016 New York California 1984
#> 12017 New York Washington 1984
#> 12018 New York Nevada 1984
#> 12019 New York Virginia 1984
#> 12020 New York Maryland 1984
#> 12021 New York Massachusetts 1984
#> 12022 New York Oklahoma 1984
#> 12023 Colorado Georgia 1984
#> 12024 New York Delaware 1984
#> 12025 New York Idaho 1984
#> 12026 Colorado Kansas 1984
#> 12027 New York West Virginia 1984
#> 12028 New York Colorado 1984
#> 12029 Florida Mississippi 1984
#> 12030 New York Montana 1984
#> 12031 New York Texas 1984
#> 12032 New York Vermont 1984
#> 12033 New York North Carolina 1984
#> 12034 New York Iowa 1984
#> 12035 New York New Mexico 1984
#> 12036 New York Tennessee 1984
#> 12037 Rhode Island Missouri 1984
#> 12038 New York South Dakota 1984
#> 12039 Rhode Island North Dakota 1984
#> 12040 New Jersey South Carolina 1984
#> 12041 New York Arkansas 1984
#> 12042 New York Wisconsin 1984
#> 12043 Colorado Louisiana 1984
#> 12044 New York Alabama 1984
#> 12045 Rhode Island Wyoming 1984
#> 12046 New York Arizona 1984
#> 12047 Oregon Alaska 1984
#> 12048 Connecticut New York 1984
#> 12049 New York Hawaii 1984
#> 12050 Rhode Island Utah 1984
#> 12051 California Oregon 1984
#> 12052 Colorado Minnesota 1984
#> 12053 Arkansas Alabama 1984
#> 12054 California New York 1984
#> 12055 Colorado Pennsylvania 1984
#> 12056 Washington Montana 1984
#> 12057 California Washington 1984
#> 12058 Colorado Ohio 1984
#> 12059 Idaho Delaware 1984
#> 12060 Connecticut Massachusetts 1984
#> 12061 Colorado Maryland 1984
#> 12062 Florida Virginia 1984
#> 12063 Montana Kentucky 1984
#> 12064 Washington Kansas 1984
#> 12065 Colorado New Jersey 1984
#> 12066 New Jersey Rhode Island 1984
#> 12067 Arkansas North Carolina 1984
#> 12068 Kentucky Arkansas 1984
#> 12069 New York Georgia 1984
#> 12070 Florida Louisiana 1984
#> 12071 New Mexico Iowa 1984
#> 12072 Idaho South Dakota 1984
#> 12073 Montana Maine 1984
#> 12074 Connecticut New Hampshire 1984
#> 12075 Montana New Mexico 1984
#> 12076 Colorado North Dakota 1984
#> 12077 Washington Missouri 1984
#> 12078 Idaho Colorado 1984
#> 12079 Washington Wyoming 1984
#> 12080 Arkansas Nebraska 1984
#> 12081 Florida Arizona 1984
#> 12082 Maryland Indiana 1984
#> 12083 Arkansas California 1984
#> 12084 Rhode Island Connecticut 1984
#> 12085 Georgia South Carolina 1984
#> 12086 Colorado Oklahoma 1984
#> 12087 Montana Idaho 1984
#> 12088 Arkansas Florida 1984
#> 12089 North Dakota Utah 1984
#> 12090 Illinois Texas 1984
#> 12091 Minnesota Mississippi 1984
#> 12092 Rhode Island Wisconsin 1984
#> 12093 Michigan Illinois 1984
#> 12094 Illinois Massachusetts 1984
#> 12095 Nebraska Tennessee 1984
#> 12096 Washington Indiana 1984
#> 12097 Florida Nevada 1984
#> 12098 Maine Vermont 1984
#> 12099 California Pennsylvania 1984
#> 12100 Rhode Island Maryland 1984
#> 12101 Nevada Rhode Island 1984
#> 12102 Montana New Hampshire 1984
#> 12103 Montana Washington 1984
#> 12104 California Hawaii 1984
#> 12105 Maryland Delaware 1984
#> 12106 Kentucky Michigan 1984
#> 12107 Michigan West Virginia 1984
#> 12108 Nevada Montana 1984
#> 12109 Rhode Island California 1984
#> 12110 Kentucky Minnesota 1984
#> 12111 North Carolina Virginia 1984
#> 12112 Maryland Arkansas 1984
#> 12113 California New Jersey 1984
#> 12114 Colorado Oregon 1984
#> 12115 Massachusetts New York 1984
#> 12116 Hawaii Alaska 1984
#> 12117 Maine Iowa 1984
#> 12118 Kentucky Illinois 1984
#> 12119 Washington New Mexico 1984
#> 12120 North Dakota Nebraska 1984
#> 12121 Utah Texas 1984
#> 12122 Florida Georgia 1984
#> 12123 Wisconsin Vermont 1984
#> 12124 Florida Oklahoma 1984
#> 12125 Colorado Maine 1984
#> 12126 South Carolina Idaho 1984
#> 12127 Oregon Kentucky 1984
#> 12128 Idaho Arizona 1984
#> 12129 Colorado Michigan 1984
#> 12130 New York Kansas 1984
#> 12131 Delaware Connecticut 1984
#> 12132 California Wisconsin 1984
#> 12133 Tennessee Florida 1984
#> 12134 Florida Colorado 1984
#> 12135 Montana South Dakota 1984
#> 12136 Illinois Minnesota 1984
#> 12137 New Mexico Nevada 1984
#> 12138 North Carolina South Carolina 1984
#> 12139 Rhode Island Washington 1984
#> 12140 Delaware North Carolina 1984
#> 12141 Florida Indiana 1984
#> 12142 Kentucky Alabama 1984
#> 12143 Delaware North Dakota 1984
#> 12144 Alaska Connecticut 1984
#> 12145 Delaware Louisiana 1984
#> 12146 California Montana 1984
#> 12147 Kentucky Colorado 1984
#> 12148 Washington Rhode Island 1984
#> 12149 California New Mexico 1984
#> 12150 Hawaii Oregon 1984
#> 12151 Kentucky Missouri 1984
#> 12152 New Jersey Massachusetts 1984
#> 12153 Montana Maryland 1984
#> 12154 Michigan Delaware 1984
#> 12155 Kansas Mississippi 1984
#> 12156 Minnesota Iowa 1984
#> 12157 Kentucky New York 1984
#> 12158 Connecticut Utah 1984
#> 12159 Kentucky Tennessee 1984
#> 12160 Indiana New Jersey 1984
#> 12161 Arkansas Kansas 1984
#> 12162 California North Carolina 1984
#> 12163 New Mexico Arkansas 1984
#> 12164 Montana Virginia 1984
#> 12165 New Mexico West Virginia 1984
#> 12166 Pennsylvania Ohio 1984
#> 12167 Maryland Pennsylvania 1984
#> 12168 California Alaska 1984
#> 12169 California Minnesota 1984
#> 12170 New Mexico Hawaii 1984
#> 12171 Indiana Kentucky 1984
#> 12172 New Jersey Oregon 1984
#> 12173 Alaska New York 1984
#> 12174 Hawaii North Dakota 1984
#> 12175 Oregon Vermont 1984
#> 12176 Hawaii Idaho 1984
#> 12177 Colorado California 1984
#> 12178 Illinois Georgia 1984
#> 12179 Vermont Connecticut 1984
#> 12180 Florida Arkansas 1984
#> 12181 Iowa Wisconsin 1984
#> 12182 Oklahoma Wyoming 1984
#> 12183 Kentucky Louisiana 1984
#> 12184 Pennsylvania Colorado 1984
#> 12185 Arkansas Arizona 1984
#> 12186 Massachusetts New Hampshire 1984
#> 12187 Arkansas South Dakota 1984
#> 12188 Delaware Missouri 1984
#> 12189 Michigan Alabama 1984
#> 12190 Connecticut Nebraska 1984
#> 12191 New Jersey Maine 1984
#> 12192 Oregon Massachusetts 1984
#> 12193 Massachusetts Hawaii 1984
#> 12194 New Jersey Michigan 1984
#> 12195 Florida Rhode Island 1984
#> 12196 Minnesota Nevada 1984
#> 12197 Illinois Florida 1984
#> 12198 Oregon Delaware 1984
#> 12199 Oregon Ohio 1984
#> 12200 Colorado Montana 1984
#> 12201 Massachusetts Florida 1984
#> 12202 Montana Tennessee 1984
#> 12203 New Jersey Illinois 1984
#> 12204 Connecticut Illinois 1984
#> 12205 Hawaii Washington 1984
#> 12206 Massachusetts North Carolina 1984
#> 12207 Kentucky North Dakota 1984
#> 12208 Indiana New York 1984
#> 12209 Alabama Kentucky 1984
#> 12210 Delaware Iowa 1984
#> 12211 Washington Pennsylvania 1984
#> 12212 Illinois Virginia 1984
#> 12213 Louisiana South Carolina 1984
#> 12214 Connecticut New Jersey 1984
#> 12215 Kentucky North Carolina 1984
#> 12216 Alabama Georgia 1984
#> 12217 Wisconsin New Mexico 1984
#> 12218 Florida Ohio 1984
#> 12219 Illinois Nebraska 1984
#> 12220 Connecticut Colorado 1984
#> 12221 Delaware Montana 1984
#> 12222 Rhode Island Indiana 1984
#> 12223 Louisiana Alaska 1984
#> 12224 Nevada Mississippi 1984
#> 12225 Minnesota Kansas 1984
#> 12226 Illinois New York 1984
#> 12227 Tennessee Arkansas 1984
#> 12228 Arkansas Wyoming 1984
#> 12229 Iowa Oklahoma 1984
#> 12230 Delaware Massachusetts 1984
#> 12231 Massachusetts Rhode Island 1984
#> 12232 Minnesota Alabama 1984
#> 12233 Washington Wisconsin 1984
#> 12234 Minnesota Washington 1984
#> 12235 Kentucky Idaho 1984
#> 12236 Illinois Michigan 1984
#> 12237 Connecticut Louisiana 1984
#> 12238 Michigan Utah 1984
#> 12239 Louisiana Pennsylvania 1984
#> 12240 Colorado Hawaii 1984
#> 12241 Kansas Colorado 1984
#> 12242 Illinois Rhode Island 1984
#> 12243 Illinois California 1984
#> 12244 Pennsylvania Nebraska 1984
#> 12245 New Mexico Utah 1984
#> 12246 Washington New York 1984
#> 12247 Minnesota Delaware 1984
#> 12248 Rhode Island Nevada 1984
#> 12249 Oregon Texas 1984
#> 12250 California Florida 1984
#> 12251 Connecticut Maine 1984
#> 12252 West Virginia Kansas 1984
#> 12253 New Mexico Rhode Island 1984
#> 12254 Wisconsin Massachusetts 1984
#> 12255 Kansas Arkansas 1984
#> 12256 Kentucky Maine 1984
#> 12257 Nebraska New Hampshire 1984
#> 12258 Minnesota New Jersey 1984
#> 12259 Minnesota California 1984
#> 12260 Oregon Minnesota 1984
#> 12261 Mississippi Arizona 1984
#> 12262 Minnesota Oregon 1984
#> 12263 Rhode Island New Mexico 1984
#> 12264 Minnesota Arizona 1984
#> 12265 New Jersey Vermont 1984
#> 12266 Washington South Dakota 1984
#> 12267 Florida Nebraska 1984
#> 12268 Wisconsin Idaho 1984
#> 12269 West Virginia Georgia 1984
#> 12270 Wisconsin Nevada 1984
#> 12271 Idaho Minnesota 1984
#> 12272 Florida Iowa 1984
#> 12273 Maine Missouri 1984
#> 12274 North Carolina North Dakota 1984
#> 12275 Illinois Idaho 1984
#> 12276 Indiana Wisconsin 1984
#> 12277 Michigan Montana 1984
#> 12278 Kentucky Oklahoma 1984
#> 12279 Louisiana Maryland 1984
#> 12280 Maine Texas 1984
#> 12281 Hawaii Florida 1984
#> 12282 Kentucky Utah 1984
#> 12283 New Mexico Washington 1984
#> 12284 Washington Illinois 1984
#> 12285 Louisiana New Mexico 1984
#> 12286 Illinois Pennsylvania 1984
#> 12287 Arkansas Rhode Island 1984
#> 12288 North Carolina Maryland 1984
#> 12289 Illinois Connecticut 1984
#> 12290 Vermont Utah 1984
#> 12291 Iowa Louisiana 1984
#> 12292 New Mexico Oregon 1984
#> 12293 Vermont Wyoming 1984
#> 12294 Pennsylvania Maine 1984
#> 12295 New Mexico New Hampshire 1984
#> 12296 Minnesota Hawaii 1984
#> 12297 Illinois New Jersey 1984
#> 12298 Alabama Florida 1984
#> 12299 California Texas 1984
#> 12300 Kentucky Massachusetts 1984
#> 12301 New Mexico North Carolina 1984
#> 12302 Arkansas Montana 1984
#> 12303 Montana West Virginia 1984
#> 12304 Arkansas Delaware 1984
#> 12305 Oregon Montana 1984
#> 12306 Maryland Virginia 1984
#> 12307 Pennsylvania Indiana 1984
#> 12308 Kentucky Wisconsin 1984
#> 12309 Vermont Maine 1984
#> 12310 Vermont Tennessee 1984
#> 12311 Florida Massachusetts 1984
#> 12312 Illinois Oregon 1984
#> 12313 Oregon Michigan 1984
#> 12314 New Jersey Iowa 1984
#> 12315 Washington North Dakota 1984
#> 12316 Delaware Maryland 1984
#> 12317 Delaware Arizona 1984
#> 12318 Arkansas Mississippi 1984
#> 12319 Louisiana Tennessee 1984
#> 12320 Wisconsin South Carolina 1984
#> 12321 Wisconsin Georgia 1984
#> 12322 Minnesota Colorado 1984
#> 12323 South Carolina Kentucky 1984
#> 12324 Kentucky Texas 1984
#> 12325 Michigan Missouri 1984
#> 12326 South Dakota Nevada 1984
#> 12327 Minnesota West Virginia 1984
#> 12328 Florida Kansas 1984
#> 12329 Louisiana Kentucky 1984
#> 12330 Maine Maryland 1984
#> 12331 California Connecticut 1984
#> 12332 New Mexico Oklahoma 1984
#> 12333 Indiana South Dakota 1984
#> 12334 Virginia New Mexico 1984
#> 12335 Kansas Alaska 1984
#> 12336 South Carolina Illinois 1984
#> 12337 Illinois Ohio 1984
#> 12338 California Arkansas 1984
#> 12339 Connecticut Vermont 1984
#> 12340 New Hampshire Hawaii 1984
#> 12341 Oregon Alabama 1984
#> 12342 Montana Iowa 1984
#> 12343 Maine Nevada 1984
#> 12344 Indiana Idaho 1984
#> 12345 New Jersey Pennsylvania 1984
#> 12346 Maryland North Carolina 1984
#> 12347 Oregon New Mexico 1984
#> 12348 New Jersey Delaware 1984
#> 12349 Connecticut Delaware 1984
#> 12350 Tennessee Montana 1984
#> 12351 Nevada Washington 1984
#> 12352 Massachusetts Louisiana 1984
#> 12353 Illinois Indiana 1984
#> 12354 New Mexico Kansas 1984
#> 12355 Florida Connecticut 1984
#> 12356 Nebraska Arkansas 1984
#> 12357 Idaho Missouri 1984
#> 12358 Montana Ohio 1984
#> 12359 Georgia Rhode Island 1984
#> 12360 Nevada New Mexico 1984
#> 12361 New Jersey Connecticut 1984
#> 12362 Michigan Tennessee 1984
#> 12363 Florida South Carolina 1984
#> 12364 Delaware Arkansas 1984
#> 12365 Connecticut Wyoming 1984
#> 12366 Oklahoma Indiana 1984
#> 12367 Arkansas Wisconsin 1984
#> 12368 Vermont New York 1984
#> 12369 California Colorado 1984
#> 12370 North Dakota Virginia 1984
#> 12371 Pennsylvania Texas 1984
#> 12372 Alaska South Dakota 1984
#> 12373 Kansas Vermont 1984
#> 12374 Florida Utah 1984
#> 12375 Illinois Iowa 1984
#> 12376 Colorado Washington 1984
#> 12377 Mississippi California 1984
#> 12378 Oregon Virginia 1984
#> 12379 Ohio Kansas 1984
#> 12380 Arizona North Carolina 1984
#> 12381 Pennsylvania Alabama 1984
#> 12382 Minnesota Rhode Island 1984
#> 12383 Arkansas Minnesota 1984
#> 12384 Pennsylvania California 1984
#> 12385 Kentucky Nebraska 1984
#> 12386 Iowa New Jersey 1984
#> 12387 Hawaii New Jersey 1984
#> 12388 New Mexico Mississippi 1984
#> 12389 New Mexico Alabama 1984
#> 12390 Maine North Dakota 1984
#> 12391 Pennsylvania Hawaii 1984
#> 12392 Rhode Island Ohio 1984
#> 12393 Illinois Maryland 1984
#> 12394 Minnesota Georgia 1984
#> 12395 Tennessee Massachusetts 1984
#> 12396 New Hampshire New York 1984
#> 12397 Illinois Maine 1984
#> 12398 Virginia Florida 1984
#> 12399 South Dakota Wisconsin 1984
#> 12400 Tennessee New York 1984
#> 12401 Kansas New Mexico 1984
#> 12402 Wisconsin Illinois 1984
#> 12403 New York Wyoming 1984
#> 12404 Kentucky Pennsylvania 1984
#> 12405 Vermont Rhode Island 1984
#> 12406 North Dakota Iowa 1984
#> 12407 North Carolina Michigan 1984
#> 12408 Montana California 1984
#> 12409 South Carolina Connecticut 1984
#> 12410 Hawaii Vermont 1984
#> 12411 Ohio Rhode Island 1984
#> 12412 Montana Oregon 1984
#> 12413 South Carolina New York 1984
#> 12414 Tennessee Georgia 1984
#> 12415 Virginia New York 1984
#> 12416 Missouri Minnesota 1984
#> 12417 Kentucky Alaska 1984
#> 12418 California Nevada 1984
#> 12419 Nevada Colorado 1984
#> 12420 Florida Michigan 1984
#> 12421 North Dakota Kentucky 1984
#> 12422 Rhode Island New York 1984
#> 12423 Nevada Wyoming 1984
#> 12424 New Mexico Delaware 1984
#> 12425 Rhode Island Minnesota 1984
#> 12426 Oklahoma Maryland 1984
#> 12427 Nevada Arkansas 1984
#> 12428 Wisconsin Hawaii 1984
#> 12429 Wisconsin Missouri 1984
#> 12430 Pennsylvania Virginia 1984
#> 12431 Minnesota Tennessee 1984
#> 12432 Minnesota Indiana 1984
#> 12433 Oregon West Virginia 1984
#> 12434 Mississippi Nebraska 1984
#> 12435 South Carolina Nevada 1984
#> 12436 Pennsylvania Oklahoma 1984
#> 12437 North Carolina Indiana 1984
#> 12438 Virginia New Hampshire 1984
#> 12439 Connecticut North Carolina 1984
#> 12440 Maryland Kentucky 1984
#> 12441 South Carolina Texas 1984
#> 12442 Kentucky South Dakota 1984
#> 12443 Massachusetts Connecticut 1984
#> 12444 Virginia Colorado 1984
#> 12445 Iowa Montana 1984
#> 12446 Delaware Wyoming 1984
#> 12447 Wisconsin Michigan 1984
#> 12448 California Illinois 1984
#> 12449 Nevada Utah 1984
#> 12450 Wyoming Arizona 1984
#> 12451 Michigan California 1984
#> 12452 Georgia Connecticut 1984
#> 12453 Connecticut Wisconsin 1984
#> 12454 South Carolina Vermont 1984
#> 12455 Wisconsin New York 1984
#> 12456 Oregon Iowa 1984
#> 12457 Michigan Arizona 1984
#> 12458 South Carolina Wyoming 1984
#> 12459 Nebraska Alabama 1984
#> 12460 Virginia Oregon 1984
#> 12461 Kentucky Florida 1984
#> 12462 California Virginia 1984
#> 12463 Louisiana Utah 1984
#> 12464 Pennsylvania Kansas 1984
#> 12465 Montana Michigan 1984
#> 12466 Florida Hawaii 1984
#> 12467 Minnesota New Hampshire 1984
#> 12468 Maryland Illinois 1984
#> 12469 Pennsylvania Minnesota 1984
#> 12470 North Carolina Minnesota 1984
#> 12471 New Jersey Alaska 1984
#> 12472 Missouri Kansas 1984
#> 12473 Mississippi Idaho 1984
#> 12474 Colorado Massachusetts 1984
#> 12475 Missouri Wisconsin 1984
#> 12476 Illinois West Virginia 1984
#> 12477 Pennsylvania Alaska 1984
#> 12478 South Dakota Maryland 1984
#> 12479 California Massachusetts 1984
#> 12480 Wisconsin Indiana 1984
#> 12481 Minnesota Wisconsin 1984
#> 12482 Vermont New Hampshire 1984
#> 12483 Connecticut Maryland 1984
#> 12484 California Idaho 1984
#> 12485 North Dakota Wyoming 1984
#> 12486 Virginia North Carolina 1984
#> 12487 Minnesota Missouri 1984
#> 12488 California North Dakota 1984
#> 12489 Arkansas North Dakota 1984
#> 12490 Illinois Oklahoma 1984
#> 12491 Minnesota Oklahoma 1984
#> 12492 New Jersey Nebraska 1984
#> 12493 Virginia Kansas 1984
#> 12494 Wisconsin Pennsylvania 1984
#> 12495 Maine Indiana 1984
#> 12496 Nebraska West Virginia 1984
#> 12497 Missouri Maine 1984
#> 12498 Oregon Colorado 1984
#> 12499 Delaware California 1984
#> 12500 California South Carolina 1984
#> 12501 New York Oregon 1985
#> 12502 New York Pennsylvania 1985
#> 12503 New York Illinois 1985
#> 12504 New York Rhode Island 1985
#> 12505 New York Michigan 1985
#> 12506 New York Connecticut 1985
#> 12507 New York Ohio 1985
#> 12508 New York New Jersey 1985
#> 12509 New York Maine 1985
#> 12510 New York New Hampshire 1985
#> 12511 New York Indiana 1985
#> 12512 New York Minnesota 1985
#> 12513 New York Florida 1985
#> 12514 New York California 1985
#> 12515 New York Kentucky 1985
#> 12516 New York Washington 1985
#> 12517 New York West Virginia 1985
#> 12518 New York Nebraska 1985
#> 12519 New York Virginia 1985
#> 12520 Colorado Georgia 1985
#> 12521 Colorado Kansas 1985
#> 12522 New York Maryland 1985
#> 12523 Minnesota Iowa 1985
#> 12524 New York Colorado 1985
#> 12525 New York Oklahoma 1985
#> 12526 Florida Mississippi 1985
#> 12527 New York Massachusetts 1985
#> 12528 New York Nevada 1985
#> 12529 New York Idaho 1985
#> 12530 New York Vermont 1985
#> 12531 New York Delaware 1985
#> 12532 Washington Missouri 1985
#> 12533 New York New Mexico 1985
#> 12534 New York Texas 1985
#> 12535 Oregon South Dakota 1985
#> 12536 Michigan Montana 1985
#> 12537 New York Tennessee 1985
#> 12538 New York North Carolina 1985
#> 12539 Rhode Island North Dakota 1985
#> 12540 Oregon Alaska 1985
#> 12541 New Jersey South Carolina 1985
#> 12542 Colorado Louisiana 1985
#> 12543 Oregon Wyoming 1985
#> 12544 New York Arkansas 1985
#> 12545 Massachusetts Wisconsin 1985
#> 12546 Florida Arizona 1985
#> 12547 Minnesota Alabama 1985
#> 12548 Connecticut New York 1985
#> 12549 New York Hawaii 1985
#> 12550 Colorado Minnesota 1985
#> 12551 Minnesota Utah 1985
#> 12552 California Oregon 1985
#> 12553 California Washington 1985
#> 12554 Colorado New Jersey 1985
#> 12555 California New York 1985
#> 12556 Colorado Pennsylvania 1985
#> 12557 Georgia South Carolina 1985
#> 12558 Connecticut Massachusetts 1985
#> 12559 Colorado Ohio 1985
#> 12560 Florida Virginia 1985
#> 12561 New Mexico Iowa 1985
#> 12562 Rhode Island Montana 1985
#> 12563 Washington Kansas 1985
#> 12564 New Jersey Rhode Island 1985
#> 12565 Idaho Delaware 1985
#> 12566 Florida Georgia 1985
#> 12567 Idaho Colorado 1985
#> 12568 Colorado Maryland 1985
#> 12569 Florida Louisiana 1985
#> 12570 Montana New Mexico 1985
#> 12571 Maryland Indiana 1985
#> 12572 Arkansas North Carolina 1985
#> 12573 Delaware South Dakota 1985
#> 12574 Rhode Island Missouri 1985
#> 12575 Connecticut New Hampshire 1985
#> 12576 Idaho Alabama 1985
#> 12577 Montana Kentucky 1985
#> 12578 Arkansas Nebraska 1985
#> 12579 Colorado Oklahoma 1985
#> 12580 Rhode Island Arizona 1985
#> 12581 Colorado California 1985
#> 12582 Montana Idaho 1985
#> 12583 Colorado North Dakota 1985
#> 12584 Arkansas Florida 1985
#> 12585 Minnesota Mississippi 1985
#> 12586 Oregon Wisconsin 1985
#> 12587 Maryland Arkansas 1985
#> 12588 Montana Maine 1985
#> 12589 Rhode Island Connecticut 1985
#> 12590 Arizona Utah 1985
#> 12591 Rhode Island Wyoming 1985
#> 12592 Florida Nevada 1985
#> 12593 Maine Vermont 1985
#> 12594 Michigan Delaware 1985
#> 12595 Nebraska Tennessee 1985
#> 12596 Michigan Illinois 1985
#> 12597 Montana Texas 1985
#> 12598 Montana Washington 1985
#> 12599 Massachusetts New York 1985
#> 12600 Connecticut Maryland 1985
#> 12601 California Pennsylvania 1985
#> 12602 Arkansas Montana 1985
#> 12603 Rhode Island Indiana 1985
#> 12604 Virginia Georgia 1985
#> 12605 Nevada Rhode Island 1985
#> 12606 Illinois Massachusetts 1985
#> 12607 Indiana New Jersey 1985
#> 12608 Maryland Michigan 1985
#> 12609 Arkansas California 1985
#> 12610 New Mexico West Virginia 1985
#> 12611 California Hawaii 1985
#> 12612 Colorado Oregon 1985
#> 12613 Kentucky Illinois 1985
#> 12614 Oregon Virginia 1985
#> 12615 Kentucky Minnesota 1985
#> 12616 California Alaska 1985
#> 12617 Colorado Maine 1985
#> 12618 Montana New Hampshire 1985
#> 12619 Virginia Alabama 1985
#> 12620 Minnesota Arizona 1985
#> 12621 Florida Colorado 1985
#> 12622 Oregon Montana 1985
#> 12623 Wisconsin New Mexico 1985
#> 12624 Michigan Iowa 1985
#> 12625 Colorado Arkansas 1985
#> 12626 Wisconsin Vermont 1985
#> 12627 Florida Oklahoma 1985
#> 12628 South Carolina Idaho 1985
#> 12629 Arkansas Louisiana 1985
#> 12630 Oregon Kentucky 1985
#> 12631 Connecticut Utah 1985
#> 12632 Indiana South Dakota 1985
#> 12633 Arkansas Indiana 1985
#> 12634 Illinois Nebraska 1985
#> 12635 Tennessee Florida 1985
#> 12636 Minnesota South Carolina 1985
#> 12637 Kansas Mississippi 1985
#> 12638 Idaho North Dakota 1985
#> 12639 Illinois Minnesota 1985
#> 12640 Michigan Georgia 1985
#> 12641 Delaware Missouri 1985
#> 12642 Oregon Michigan 1985
#> 12643 Rhode Island Washington 1985
#> 12644 Hawaii Alaska 1985
#> 12645 Maryland Delaware 1985
#> 12646 California North Carolina 1985
#> 12647 Arkansas Kansas 1985
#> 12648 Colorado Wisconsin 1985
#> 12649 Alaska Connecticut 1985
#> 12650 Pennsylvania Ohio 1985
#> 12651 New York Kansas 1985
#> 12652 Washington Rhode Island 1985
#> 12653 Utah Texas 1985
#> 12654 Hawaii Oregon 1985
#> 12655 Rhode Island New Mexico 1985
#> 12656 Vermont Connecticut 1985
#> 12657 Maryland Pennsylvania 1985
#> 12658 Michigan West Virginia 1985
#> 12659 Florida Wyoming 1985
#> 12660 Maryland Nevada 1985
#> 12661 California New Jersey 1985
#> 12662 Kentucky Arkansas 1985
#> 12663 Arkansas Alabama 1985
#> 12664 Michigan California 1985
#> 12665 Alabama Kentucky 1985
#> 12666 Delaware Iowa 1985
#> 12667 Washington Colorado 1985
#> 12668 Illinois Tennessee 1985
#> 12669 New Jersey Massachusetts 1985
#> 12670 California Minnesota 1985
#> 12671 New Mexico Hawaii 1985
#> 12672 New Jersey Illinois 1985
#> 12673 Kentucky New York 1985
#> 12674 Maryland North Carolina 1985
#> 12675 Montana Maryland 1985
#> 12676 Alaska New York 1985
#> 12677 Oregon Delaware 1985
#> 12678 Oregon Vermont 1985
#> 12679 Hawaii Idaho 1985
#> 12680 Maine Iowa 1985
#> 12681 Illinois Texas 1985
#> 12682 Arkansas Ohio 1985
#> 12683 California Wisconsin 1985
#> 12684 Kentucky Missouri 1985
#> 12685 Massachusetts North Carolina 1985
#> 12686 Massachusetts Florida 1985
#> 12687 Connecticut Nebraska 1985
#> 12688 Connecticut Louisiana 1985
#> 12689 Kentucky Colorado 1985
#> 12690 Kentucky Michigan 1985
#> 12691 Louisiana Nevada 1985
#> 12692 Minnesota Colorado 1985
#> 12693 Mississippi Arizona 1985
#> 12694 Massachusetts New Hampshire 1985
#> 12695 Massachusetts Rhode Island 1985
#> 12696 North Carolina Virginia 1985
#> 12697 Rhode Island Oregon 1985
#> 12698 New Hampshire North Dakota 1985
#> 12699 Nevada Kentucky 1985
#> 12700 Oregon Massachusetts 1985
#> 12701 Massachusetts Hawaii 1985
#> 12702 Alabama Arkansas 1985
#> 12703 Illinois Florida 1985
#> 12704 Iowa Oklahoma 1985
#> 12705 California New Mexico 1985
#> 12706 Delaware Connecticut 1985
#> 12707 Maine South Carolina 1985
#> 12708 Connecticut Illinois 1985
#> 12709 Florida Rhode Island 1985
#> 12710 Indiana New York 1985
#> 12711 Hawaii Washington 1985
#> 12712 Kentucky Tennessee 1985
#> 12713 Hawaii Indiana 1985
#> 12714 New York South Dakota 1985
#> 12715 Kansas Arkansas 1985
#> 12716 Illinois Virginia 1985
#> 12717 Rhode Island Maine 1985
#> 12718 Nevada Mississippi 1985
#> 12719 Connecticut New Jersey 1985
#> 12720 Pennsylvania California 1985
#> 12721 Illinois Pennsylvania 1985
#> 12722 New Jersey Wisconsin 1985
#> 12723 Louisiana Alaska 1985
#> 12724 Iowa Utah 1985
#> 12725 Minnesota West Virginia 1985
#> 12726 Colorado Montana 1985
#> 12727 Minnesota Kansas 1985
#> 12728 Virginia Nebraska 1985
#> 12729 Illinois New York 1985
#> 12730 Minnesota Washington 1985
#> 12731 Delaware Massachusetts 1985
#> 12732 Oregon Ohio 1985
#> 12733 Minnesota Nevada 1985
#> 12734 Alabama North Dakota 1985
#> 12735 Washington Illinois 1985
#> 12736 Florida South Dakota 1985
#> 12737 Colorado Hawaii 1985
#> 12738 Michigan Utah 1985
#> 12739 North Carolina Connecticut 1985
#> 12740 Washington New York 1985
#> 12741 Washington New Mexico 1985
#> 12742 Pennsylvania Wisconsin 1985
#> 12743 Maine North Carolina 1985
#> 12744 Minnesota Delaware 1985
#> 12745 Illinois Maine 1985
#> 12746 Nebraska Arkansas 1985
#> 12747 California Florida 1985
#> 12748 Florida Iowa 1985
#> 12749 West Virginia Kansas 1985
#> 12750 Iowa Massachusetts 1985
#> 12751 Maine Wisconsin 1985
#> 12752 New Mexico Rhode Island 1985
#> 12753 California Montana 1985
#> 12754 North Dakota Nebraska 1985
#> 12755 Minnesota New Jersey 1985
#> 12756 Minnesota Oregon 1985
#> 12757 Nebraska New Hampshire 1985
#> 12758 Wisconsin Idaho 1985
#> 12759 Oregon Minnesota 1985
#> 12760 Vermont Tennessee 1985
#> 12761 Hawaii Alabama 1985
#> 12762 Colorado Arizona 1985
#> 12763 Oregon Texas 1985
#> 12764 Illinois Michigan 1985
#> 12765 Louisiana Missouri 1985
#> 12766 Maine Maryland 1985
#> 12767 Oklahoma Georgia 1985
#> 12768 New Jersey Colorado 1985
#> 12769 Idaho Minnesota 1985
#> 12770 Illinois Idaho 1985
#> 12771 Hawaii Florida 1985
#> 12772 Washington Wyoming 1985
#> 12773 Minnesota California 1985
#> 12774 Oregon North Carolina 1985
#> 12775 North Carolina Louisiana 1985
#> 12776 Arkansas Rhode Island 1985
#> 12777 Wisconsin South Carolina 1985
#> 12778 Wisconsin Nevada 1985
#> 12779 Kentucky Louisiana 1985
#> 12780 California North Dakota 1985
#> 12781 New Mexico Washington 1985
#> 12782 Minnesota Indiana 1985
#> 12783 Tennessee Montana 1985
#> 12784 Kentucky Oklahoma 1985
#> 12785 Florida Nebraska 1985
#> 12786 New Mexico Alabama 1985
#> 12787 Nevada Oregon 1985
#> 12788 Louisiana Pennsylvania 1985
#> 12789 Colorado Michigan 1985
#> 12790 California Texas 1985
#> 12791 Kentucky Maryland 1985
#> 12792 Alabama Florida 1985
#> 12793 New Mexico New Hampshire 1985
#> 12794 Illinois California 1985
#> 12795 Minnesota Hawaii 1985
#> 12796 Nevada Montana 1985
#> 12797 Vermont Virginia 1985
#> 12798 Alaska South Dakota 1985
#> 12799 Illinois New Jersey 1985
#> 12800 Kansas Colorado 1985
#> 12801 Colorado Massachusetts 1985
#> 12802 New Mexico Utah 1985
#> 12803 Michigan Arizona 1985
#> 12804 Illinois Georgia 1985
#> 12805 Vermont Maine 1985
#> 12806 Kentucky Pennsylvania 1985
#> 12807 Illinois Rhode Island 1985
#> 12808 Maine North Dakota 1985
#> 12809 Arkansas Delaware 1985
#> 12810 South Carolina Connecticut 1985
#> 12811 Kentucky Idaho 1985
#> 12812 Montana West Virginia 1985
#> 12813 Maine New Mexico 1985
#> 12814 Maine Missouri 1985
#> 12815 North Carolina Indiana 1985
#> 12816 Maryland Kentucky 1985
#> 12817 Kentucky Maine 1985
#> 12818 New Jersey Louisiana 1985
#> 12819 Arkansas Colorado 1985
#> 12820 Rhode Island Nevada 1985
#> 12821 Kansas Wisconsin 1985
#> 12822 Arkansas Mississippi 1985
#> 12823 Florida Ohio 1985
#> 12824 New Jersey Vermont 1985
#> 12825 Florida Maryland 1985
#> 12826 Louisiana Tennessee 1985
#> 12827 South Carolina North Carolina 1985
#> 12828 North Dakota Maryland 1985
#> 12829 Illinois Alaska 1985
#> 12830 North Dakota Virginia 1985
#> 12831 South Carolina Illinois 1985
#> 12832 Delaware Wyoming 1985
#> 12833 Washington Pennsylvania 1985
#> 12834 Florida Arkansas 1985
#> 12835 Pennsylvania Virginia 1985
#> 12836 Florida Kansas 1985
#> 12837 Wisconsin Minnesota 1985
#> 12838 New Mexico Oklahoma 1985
#> 12839 New Hampshire Oregon 1985
#> 12840 Minnesota Tennessee 1985
#> 12841 Oregon New Mexico 1985
#> 12842 South Carolina Kentucky 1985
#> 12843 Oregon Alabama 1985
#> 12844 Rhode Island Wisconsin 1985
#> 12845 Connecticut Vermont 1985
#> 12846 Connecticut Maine 1985
#> 12847 New Hampshire Hawaii 1985
#> 12848 Iowa Kansas 1985
#> 12849 Oklahoma Indiana 1985
#> 12850 Rhode Island Ohio 1985
#> 12851 Arkansas Arizona 1985
#> 12852 Nevada Washington 1985
#> 12853 Indiana Idaho 1985
#> 12854 Virginia Connecticut 1985
#> 12855 Oregon Iowa 1985
#> 12856 New Jersey Delaware 1985
#> 12857 California Arkansas 1985
#> 12858 New Jersey Pennsylvania 1985
#> 12859 Connecticut Delaware 1985
#> 12860 Wyoming Arizona 1985
#> 12861 Wisconsin Colorado 1985
#> 12862 Idaho Missouri 1985
#> 12863 Montana Ohio 1985
#> 12864 Tennessee Massachusetts 1985
#> 12865 Georgia Rhode Island 1985
#> 12866 Vermont New York 1985
#> 12867 Pennsylvania Nebraska 1985
#> 12868 Florida Connecticut 1985
#> 12869 New York Alaska 1985
#> 12870 Louisiana New Mexico 1985
#> 12871 Alabama Indiana 1985
#> 12872 Illinois Alabama 1985
#> 12873 Kentucky New Mexico 1985
#> 12874 Minnesota Maine 1985
#> 12875 Nevada Georgia 1985
#> 12876 Illinois Maryland 1985
#> 12877 Kansas Vermont 1985
#> 12878 Pennsylvania North Dakota 1985
#> 12879 Arkansas Minnesota 1985
#> 12880 Illinois Montana 1985
#> 12881 Kentucky Massachusetts 1985
#> 12882 Illinois Iowa 1985
#> 12883 Colorado Washington 1985
#> 12884 Virginia Utah 1985
#> 12885 Connecticut Wyoming 1985
#> 12886 Wisconsin Massachusetts 1985
#> 12887 South Dakota West Virginia 1985
#> 12888 Minnesota Rhode Island 1985
#> 12889 Massachusetts Maine 1985
#> 12890 Iowa New Jersey 1985
#> 12891 Hawaii New Jersey 1985
#> 12892 New Mexico Mississippi 1985
#> 12893 Virginia Florida 1985
#> 12894 Utah Maryland 1985
#> 12895 Idaho Wyoming 1985
#> 12896 Hawaii West Virginia 1985
#> 12897 Pennsylvania Hawaii 1985
#> 12898 Maryland Texas 1985
#> 12899 Florida North Carolina 1985
#> 12900 New Hampshire New York 1985
#> 12901 Mississippi California 1985
#> 12902 Pennsylvania South Dakota 1985
#> 12903 Delaware Arkansas 1985
#> 12904 New York Wyoming 1985
#> 12905 Connecticut Alabama 1985
#> 12906 Tennessee New York 1985
#> 12907 North Dakota Iowa 1985
#> 12908 Wisconsin Illinois 1985
#> 12909 Iowa Arizona 1985
#> 12910 Vermont Rhode Island 1985
#> 12911 Montana California 1985
#> 12912 South Dakota Wisconsin 1985
#> 12913 Hawaii Vermont 1985
#> 12914 South Carolina New York 1985
#> 12915 Tennessee Georgia 1985
#> 12916 Arkansas Tennessee 1985
#> 12917 Florida Michigan 1985
#> 12918 Rhode Island New York 1985
#> 12919 California Virginia 1985
#> 12920 California Nevada 1985
#> 12921 New Mexico Delaware 1985
#> 12922 Kentucky Alaska 1985
#> 12923 Massachusetts Connecticut 1985
#> 12924 New Jersey Iowa 1985
#> 12925 Mississippi Wyoming 1985
#> 12926 Wisconsin Michigan 1985
#> 12927 Wisconsin Hawaii 1985
#> 12928 Pennsylvania Oklahoma 1985
#> 12929 Kansas South Carolina 1985
#> 12930 Mississippi Nevada 1985
#> 12931 Wisconsin Missouri 1985
#> 12932 Louisiana South Carolina 1985
#> 12933 Michigan North Carolina 1985
#> 12934 North Dakota Kentucky 1985
#> 12935 New Mexico North Carolina 1985
#> 12936 New Mexico Michigan 1985
#> 12937 Rhode Island California 1985
#> 12938 Rhode Island Minnesota 1985
#> 12939 Connecticut Oregon 1985
#> 12940 Nevada Utah 1985
#> 12941 Mississippi Nebraska 1985
#> 12942 Maine Nevada 1985
#> 12943 Washington West Virginia 1985
#> 12944 Maine Texas 1985
#> 12945 Pennsylvania Kansas 1985
#> 12946 Tennessee Arkansas 1985
#> 12947 Florida Kentucky 1985
#> 12948 Michigan Indiana 1985
#> 12949 Connecticut Kansas 1985
#> 12950 California Illinois 1985
#> 12951 Maryland Illinois 1985
#> 12952 Connecticut Colorado 1985
#> 12953 Michigan Missouri 1985
#> 12954 Delaware Louisiana 1985
#> 12955 Vermont New Hampshire 1985
#> 12956 Pennsylvania Indiana 1985
#> 12957 Missouri Wisconsin 1985
#> 12958 South Carolina Vermont 1985
#> 12959 Wisconsin New York 1985
#> 12960 Ohio New Hampshire 1985
#> 12961 South Dakota Nevada 1985
#> 12962 Alabama Georgia 1985
#> 12963 Florida Hawaii 1985
#> 12964 California Massachusetts 1985
#> 12965 Wisconsin Indiana 1985
#> 12966 Maine Indiana 1985
#> 12967 Arkansas New Mexico 1985
#> 12968 Pennsylvania Minnesota 1985
#> 12969 Montana Michigan 1985
#> 12970 Nebraska Maine 1985
#> 12971 Wyoming Illinois 1985
#> 12972 New Jersey Texas 1985
#> 12973 Missouri Kansas 1985
#> 12974 Mississippi Idaho 1985
#> 12975 California Georgia 1985
#> 12976 Virginia Kentucky 1985
#> 12977 North Carolina Minnesota 1985
#> 12978 New Jersey Michigan 1985
#> 12979 Alaska Nevada 1985
#> 12980 South Carolina Utah 1985
#> 12981 Kentucky South Dakota 1985
#> 12982 South Dakota Wyoming 1985
#> 12983 Massachusetts Pennsylvania 1985
#> 12984 Iowa Alabama 1985
#> 12985 New Jersey Oregon 1985
#> 12986 Hawaii North Dakota 1985
#> 12987 Illinois Oklahoma 1985
#> 12988 Utah Virginia 1985
#> 12989 Michigan Nebraska 1985
#> 12990 California Idaho 1985
#> 12991 Minnesota Missouri 1985
#> 12992 Delaware North Dakota 1985
#> 12993 Delaware Montana 1985
#> 12994 Minnesota Oklahoma 1985
#> 12995 Delaware California 1985
#> 12996 South Carolina Maryland 1985
#> 12997 Alaska Arizona 1985
#> 12998 Wisconsin Pennsylvania 1985
#> 12999 Virginia North Carolina 1985
#> 13000 Kentucky North Dakota 1985
#> 13001 New York Oregon 1986
#> 13002 New York Michigan 1986
#> 13003 New York Illinois 1986
#> 13004 New York Ohio 1986
#> 13005 New York New Jersey 1986
#> 13006 New York Pennsylvania 1986
#> 13007 New York Connecticut 1986
#> 13008 New York Florida 1986
#> 13009 New York Minnesota 1986
#> 13010 New York Maine 1986
#> 13011 New York New Hampshire 1986
#> 13012 New York Rhode Island 1986
#> 13013 New York Washington 1986
#> 13014 New York Indiana 1986
#> 13015 New York California 1986
#> 13016 Maine Iowa 1986
#> 13017 Massachusetts Colorado 1986
#> 13018 Oregon Kentucky 1986
#> 13019 Rhode Island Kansas 1986
#> 13020 New York Texas 1986
#> 13021 Washington Missouri 1986
#> 13022 New York Nebraska 1986
#> 13023 New York West Virginia 1986
#> 13024 New York Oklahoma 1986
#> 13025 New York Vermont 1986
#> 13026 Florida Mississippi 1986
#> 13027 New York Virginia 1986
#> 13028 New York Idaho 1986
#> 13029 Florida Georgia 1986
#> 13030 New York Maryland 1986
#> 13031 New York Nevada 1986
#> 13032 New York Massachusetts 1986
#> 13033 Michigan Delaware 1986
#> 13034 Washington South Dakota 1986
#> 13035 Rhode Island North Dakota 1986
#> 13036 Rhode Island Wyoming 1986
#> 13037 New York New Mexico 1986
#> 13038 New York North Carolina 1986
#> 13039 Michigan Montana 1986
#> 13040 Oregon Alaska 1986
#> 13041 Maryland South Carolina 1986
#> 13042 Florida Arizona 1986
#> 13043 Florida Louisiana 1986
#> 13044 New York Tennessee 1986
#> 13045 New York Arkansas 1986
#> 13046 Massachusetts Wisconsin 1986
#> 13047 Maryland Alabama 1986
#> 13048 California New York 1986
#> 13049 New York Hawaii 1986
#> 13050 Nevada Utah 1986
#> 13051 California Oregon 1986
#> 13052 Colorado Minnesota 1986
#> 13053 Idaho Colorado 1986
#> 13054 California Washington 1986
#> 13055 Massachusetts New York 1986
#> 13056 New Jersey Rhode Island 1986
#> 13057 Michigan Georgia 1986
#> 13058 Colorado North Dakota 1986
#> 13059 Montana Iowa 1986
#> 13060 Idaho Delaware 1986
#> 13061 Arkansas Virginia 1986
#> 13062 Illinois Massachusetts 1986
#> 13063 Colorado Ohio 1986
#> 13064 Rhode Island New Mexico 1986
#> 13065 Arkansas Montana 1986
#> 13066 Rhode Island New Hampshire 1986
#> 13067 Louisiana South Carolina 1986
#> 13068 Arkansas Indiana 1986
#> 13069 Rhode Island Maryland 1986
#> 13070 Rhode Island Connecticut 1986
#> 13071 Montana New Jersey 1986
#> 13072 Michigan Kansas 1986
#> 13073 Rhode Island Missouri 1986
#> 13074 Rhode Island Arizona 1986
#> 13075 Florida Kentucky 1986
#> 13076 New York Alabama 1986
#> 13077 Rhode Island Maine 1986
#> 13078 Florida Oklahoma 1986
#> 13079 Washington Wyoming 1986
#> 13080 Nevada Nebraska 1986
#> 13081 Rhode Island Pennsylvania 1986
#> 13082 Arkansas North Carolina 1986
#> 13083 Kentucky Arkansas 1986
#> 13084 Colorado Louisiana 1986
#> 13085 Rhode Island South Dakota 1986
#> 13086 Rhode Island Utah 1986
#> 13087 Montana Idaho 1986
#> 13088 Louisiana Tennessee 1986
#> 13089 Arkansas California 1986
#> 13090 Rhode Island Montana 1986
#> 13091 Oregon Wisconsin 1986
#> 13092 Maryland Indiana 1986
#> 13093 Idaho Nevada 1986
#> 13094 Maine Vermont 1986
#> 13095 California Florida 1986
#> 13096 Minnesota Mississippi 1986
#> 13097 Colorado Oregon 1986
#> 13098 Montana Washington 1986
#> 13099 New Jersey Illinois 1986
#> 13100 New York Delaware 1986
#> 13101 Illinois Texas 1986
#> 13102 California Hawaii 1986
#> 13103 Colorado Maryland 1986
#> 13104 Washington Pennsylvania 1986
#> 13105 Colorado California 1986
#> 13106 New Mexico New Hampshire 1986
#> 13107 Connecticut New Jersey 1986
#> 13108 North Carolina Georgia 1986
#> 13109 Kentucky Michigan 1986
#> 13110 Delaware New Mexico 1986
#> 13111 Oregon Maine 1986
#> 13112 Colorado Arkansas 1986
#> 13113 Kentucky Minnesota 1986
#> 13114 Minnesota Kansas 1986
#> 13115 Connecticut New York 1986
#> 13116 Connecticut Massachusetts 1986
#> 13117 Nevada West Virginia 1986
#> 13118 Pennsylvania Alaska 1986
#> 13119 Oregon Iowa 1986
#> 13120 Louisiana Ohio 1986
#> 13121 Louisiana Nevada 1986
#> 13122 Illinois Florida 1986
#> 13123 North Carolina Virginia 1986
#> 13124 Nevada Rhode Island 1986
#> 13125 Colorado Oklahoma 1986
#> 13126 Florida Colorado 1986
#> 13127 Arkansas Alabama 1986
#> 13128 Massachusetts South Carolina 1986
#> 13129 Minnesota Arizona 1986
#> 13130 California Illinois 1986
#> 13131 Rhode Island Indiana 1986
#> 13132 South Carolina Idaho 1986
#> 13133 Idaho Kansas 1986
#> 13134 Utah Texas 1986
#> 13135 Pennsylvania Nebraska 1986
#> 13136 Rhode Island Wisconsin 1986
#> 13137 Oregon Vermont 1986
#> 13138 Washington Connecticut 1986
#> 13139 Oregon North Carolina 1986
#> 13140 Maryland Delaware 1986
#> 13141 Delaware North Dakota 1986
#> 13142 Pennsylvania Louisiana 1986
#> 13143 Maryland Michigan 1986
#> 13144 Minnesota Alabama 1986
#> 13145 Oregon Montana 1986
#> 13146 California New Jersey 1986
#> 13147 Rhode Island Washington 1986
#> 13148 Delaware Missouri 1986
#> 13149 Nebraska Tennessee 1986
#> 13150 Illinois Minnesota 1986
#> 13151 Arkansas Mississippi 1986
#> 13152 Rhode Island Oregon 1986
#> 13153 Florida South Dakota 1986
#> 13154 Rhode Island Massachusetts 1986
#> 13155 Florida Nebraska 1986
#> 13156 Hawaii Alaska 1986
#> 13157 Rhode Island Illinois 1986
#> 13158 Alaska New York 1986
#> 13159 Rhode Island Kentucky 1986
#> 13160 Montana Maryland 1986
#> 13161 Tennessee Arkansas 1986
#> 13162 Illinois Virginia 1986
#> 13163 California New Mexico 1986
#> 13164 Connecticut New Hampshire 1986
#> 13165 Washington Colorado 1986
#> 13166 Kentucky Pennsylvania 1986
#> 13167 South Carolina Wyoming 1986
#> 13168 Alabama Florida 1986
#> 13169 Minnesota West Virginia 1986
#> 13170 Arizona Utah 1986
#> 13171 Montana Hawaii 1986
#> 13172 Michigan California 1986
#> 13173 California Minnesota 1986
#> 13174 California Wisconsin 1986
#> 13175 Hawaii Oregon 1986
#> 13176 Oregon Georgia 1986
#> 13177 Oregon Massachusetts 1986
#> 13178 Georgia South Carolina 1986
#> 13179 Arizona North Carolina 1986
#> 13180 Colorado Iowa 1986
#> 13181 Oregon Michigan 1986
#> 13182 Kentucky Colorado 1986
#> 13183 Wisconsin Vermont 1986
#> 13184 Hawaii North Dakota 1986
#> 13185 Colorado Montana 1986
#> 13186 Wisconsin Arizona 1986
#> 13187 Oregon Delaware 1986
#> 13188 Louisiana Pennsylvania 1986
#> 13189 Rhode Island Idaho 1986
#> 13190 Florida Rhode Island 1986
#> 13191 Nevada Maine 1986
#> 13192 Louisiana Georgia 1986
#> 13193 Vermont Connecticut 1986
#> 13194 Kentucky Missouri 1986
#> 13195 Pennsylvania Ohio 1986
#> 13196 Connecticut Louisiana 1986
#> 13197 Maryland Pennsylvania 1986
#> 13198 Oregon Minnesota 1986
#> 13199 Maryland Nevada 1986
#> 13200 Kentucky Illinois 1986
#> 13201 Iowa Kansas 1986
#> 13202 Kansas Wisconsin 1986
#> 13203 Oregon Virginia 1986
#> 13204 Wisconsin New Mexico 1986
#> 13205 Georgia New Jersey 1986
#> 13206 Virginia Utah 1986
#> 13207 Connecticut Colorado 1986
#> 13208 Nevada Washington 1986
#> 13209 Illinois Hawaii 1986
#> 13210 North Dakota Nebraska 1986
#> 13211 Hawaii Florida 1986
#> 13212 New Hampshire West Virginia 1986
#> 13213 Kentucky New York 1986
#> 13214 Massachusetts Rhode Island 1986
#> 13215 Idaho South Dakota 1986
#> 13216 Wisconsin Oklahoma 1986
#> 13217 Hawaii Idaho 1986
#> 13218 Wisconsin North Carolina 1986
#> 13219 Louisiana South Dakota 1986
#> 13220 Alaska Connecticut 1986
#> 13221 Minnesota Arkansas 1986
#> 13222 Minnesota Tennessee 1986
#> 13223 Minnesota Delaware 1986
#> 13224 Minnesota Indiana 1986
#> 13225 Maine North Carolina 1986
#> 13226 Kentucky New Mexico 1986
#> 13227 New Jersey South Carolina 1986
#> 13228 New Mexico Rhode Island 1986
#> 13229 California Montana 1986
#> 13230 Georgia Mississippi 1986
#> 13231 Kentucky Massachusetts 1986
#> 13232 Minnesota Maine 1986
#> 13233 Louisiana Florida 1986
#> 13234 Kentucky Maryland 1986
#> 13235 Indiana Kentucky 1986
#> 13236 California Rhode Island 1986
#> 13237 Tennessee Florida 1986
#> 13238 Kansas Utah 1986
#> 13239 Louisiana Missouri 1986
#> 13240 Kentucky North Dakota 1986
#> 13241 Florida Maryland 1986
#> 13242 Mississippi Arizona 1986
#> 13243 Pennsylvania New York 1986
#> 13244 New Mexico Hawaii 1986
#> 13245 Arkansas Nebraska 1986
#> 13246 Florida Nevada 1986
#> 13247 Colorado Washington 1986
#> 13248 Massachusetts Pennsylvania 1986
#> 13249 New Jersey Massachusetts 1986
#> 13250 Vermont Tennessee 1986
#> 13251 New Jersey Wisconsin 1986
#> 13252 Arkansas Wyoming 1986
#> 13253 Nevada Oregon 1986
#> 13254 Idaho Minnesota 1986
#> 13255 Kentucky Louisiana 1986
#> 13256 Louisiana Kansas 1986
#> 13257 Kentucky Idaho 1986
#> 13258 Nebraska Arkansas 1986
#> 13259 Oregon Ohio 1986
#> 13260 Hawaii Indiana 1986
#> 13261 Vermont Rhode Island 1986
#> 13262 Indiana Maine 1986
#> 13263 Minnesota Oregon 1986
#> 13264 California North Carolina 1986
#> 13265 Maryland Kansas 1986
#> 13266 California Alaska 1986
#> 13267 Maine Missouri 1986
#> 13268 Nebraska Virginia 1986
#> 13269 Minnesota California 1986
#> 13270 Rhode Island Oklahoma 1986
#> 13271 North Carolina Connecticut 1986
#> 13272 Mississippi Iowa 1986
#> 13273 Illinois Michigan 1986
#> 13274 Illinois Tennessee 1986
#> 13275 New Mexico Alabama 1986
#> 13276 North Dakota Kentucky 1986
#> 13277 Oregon South Dakota 1986
#> 13278 Michigan Illinois 1986
#> 13279 Wisconsin Idaho 1986
#> 13280 Maryland California 1986
#> 13281 Kansas South Carolina 1986
#> 13282 Illinois Iowa 1986
#> 13283 Massachusetts Florida 1986
#> 13284 California Texas 1986
#> 13285 North Carolina North Dakota 1986
#> 13286 Colorado Michigan 1986
#> 13287 Louisiana Alaska 1986
#> 13288 Louisiana Montana 1986
#> 13289 Minnesota Washington 1986
#> 13290 Washington New York 1986
#> 13291 Idaho Alabama 1986
#> 13292 Pennsylvania Minnesota 1986
#> 13293 Minnesota Iowa 1986
#> 13294 New Hampshire New York 1986
#> 13295 Minnesota Colorado 1986
#> 13296 Delaware Massachusetts 1986
#> 13297 Maine Texas 1986
#> 13298 Kentucky Arizona 1986
#> 13299 Idaho Missouri 1986
#> 13300 South Dakota Wisconsin 1986
#> 13301 Washington Illinois 1986
#> 13302 Delaware Connecticut 1986
#> 13303 Kentucky Vermont 1986
#> 13304 Minnesota Nevada 1986
#> 13305 Nevada Montana 1986
#> 13306 Kentucky Oklahoma 1986
#> 13307 Illinois Rhode Island 1986
#> 13308 Minnesota New Mexico 1986
#> 13309 Pennsylvania Colorado 1986
#> 13310 Georgia Rhode Island 1986
#> 13311 Maine Wisconsin 1986
#> 13312 Wisconsin Massachusetts 1986
#> 13313 Indiana Idaho 1986
#> 13314 Kansas Arkansas 1986
#> 13315 Michigan West Virginia 1986
#> 13316 New Jersey Utah 1986
#> 13317 Illinois Georgia 1986
#> 13318 Oregon Texas 1986
#> 13319 South Carolina Connecticut 1986
#> 13320 Vermont Wyoming 1986
#> 13321 New Mexico Delaware 1986
#> 13322 Arkansas New Hampshire 1986
#> 13323 New Mexico Mississippi 1986
#> 13324 Maine New Mexico 1986
#> 13325 North Dakota Iowa 1986
#> 13326 North Carolina Indiana 1986
#> 13327 Kentucky Tennessee 1986
#> 13328 California New Hampshire 1986
#> 13329 Indiana South Dakota 1986
#> 13330 Alabama California 1986
#> 13331 Oregon Hawaii 1986
#> 13332 Kentucky Maine 1986
#> 13333 Maryland New Jersey 1986
#> 13334 New Mexico Washington 1986
#> 13335 Maine Maryland 1986
#> 13336 New Jersey Louisiana 1986
#> 13337 New Jersey Vermont 1986
#> 13338 Idaho New York 1986
#> 13339 Wisconsin Michigan 1986
#> 13340 Tennessee Georgia 1986
#> 13341 Connecticut North Carolina 1986
#> 13342 Iowa Ohio 1986
#> 13343 Vermont New Hampshire 1986
#> 13344 New Jersey Hawaii 1986
#> 13345 Virginia Kentucky 1986
#> 13346 Vermont Virginia 1986
#> 13347 Utah Maryland 1986
#> 13348 Arizona West Virginia 1986
#> 13349 South Carolina Illinois 1986
#> 13350 Nevada Mississippi 1986
#> 13351 New Hampshire Oregon 1986
#> 13352 Connecticut Maine 1986
#> 13353 Rhode Island Nevada 1986
#> 13354 New Jersey Nebraska 1986
#> 13355 Oklahoma Kansas 1986
#> 13356 Kentucky North Carolina 1986
#> 13357 Minnesota Oklahoma 1986
#> 13358 Florida Arkansas 1986
#> 13359 Wyoming Arizona 1986
#> 13360 Alabama Indiana 1986
#> 13361 Kentucky Utah 1986
#> 13362 Mississippi New Mexico 1986
#> 13363 New Jersey Alaska 1986
#> 13364 Virginia Connecticut 1986
#> 13365 New Jersey Pennsylvania 1986
#> 13366 Nebraska Alabama 1986
#> 13367 Idaho North Dakota 1986
#> 13368 Pennsylvania Wisconsin 1986
#> 13369 North Dakota Virginia 1986
#> 13370 Nebraska Iowa 1986
#> 13371 Connecticut Delaware 1986
#> 13372 Louisiana Illinois 1986
#> 13373 New Mexico Oklahoma 1986
#> 13374 Oklahoma Indiana 1986
#> 13375 New Jersey Delaware 1986
#> 13376 Connecticut Wyoming 1986
#> 13377 California South Carolina 1986
#> 13378 Tennessee Massachusetts 1986
#> 13379 Wisconsin Minnesota 1986
#> 13380 Wisconsin Hawaii 1986
#> 13381 Alaska Nevada 1986
#> 13382 Illinois California 1986
#> 13383 Florida Connecticut 1986
#> 13384 Kentucky Nebraska 1986
#> 13385 Louisiana Maryland 1986
#> 13386 Oregon Connecticut 1986
#> 13387 Tennessee Montana 1986
#> 13388 South Dakota North Carolina 1986
#> 13389 Colorado Wisconsin 1986
#> 13390 Massachusetts Maine 1986
#> 13391 Michigan Iowa 1986
#> 13392 Illinois Maryland 1986
#> 13393 Maine New Hampshire 1986
#> 13394 Pennsylvania Texas 1986
#> 13395 Michigan Arizona 1986
#> 13396 Kansas Vermont 1986
#> 13397 Arkansas Minnesota 1986
#> 13398 Illinois Montana 1986
#> 13399 Montana Ohio 1986
#> 13400 Delaware Arkansas 1986
#> 13401 Mississippi North Carolina 1986
#> 13402 Oregon Alabama 1986
#> 13403 Nebraska Louisiana 1986
#> 13404 Hawaii Vermont 1986
#> 13405 Vermont New York 1986
#> 13406 Illinois Maine 1986
#> 13407 Pennsylvania Rhode Island 1986
#> 13408 Minnesota New Jersey 1986
#> 13409 Louisiana Oklahoma 1986
#> 13410 Kansas Colorado 1986
#> 13411 Maine North Dakota 1986
#> 13412 Kentucky Alaska 1986
#> 13413 Louisiana New Mexico 1986
#> 13414 Nevada New Jersey 1986
#> 13415 Hawaii Washington 1986
#> 13416 Idaho Ohio 1986
#> 13417 Missouri Wisconsin 1986
#> 13418 Indiana Hawaii 1986
#> 13419 Kansas Nebraska 1986
#> 13420 Connecticut Nebraska 1986
#> 13421 New York Wyoming 1986
#> 13422 Ohio Tennessee 1986
#> 13423 Illinois Pennsylvania 1986
#> 13424 Kansas Iowa 1986
#> 13425 Mississippi California 1986
#> 13426 Louisiana North Dakota 1986
#> 13427 Tennessee New York 1986
#> 13428 New York Missouri 1986
#> 13429 New York Kentucky 1986
#> 13430 Indiana New Jersey 1986
#> 13431 Virginia Florida 1986
#> 13432 Montana California 1986
#> 13433 Kentucky Wisconsin 1986
#> 13434 Hawaii West Virginia 1986
#> 13435 South Carolina New York 1986
#> 13436 Wisconsin Illinois 1986
#> 13437 New Jersey Arizona 1986
#> 13438 Arkansas Tennessee 1986
#> 13439 Alabama North Dakota 1986
#> 13440 Arkansas Delaware 1986
#> 13441 Nebraska West Virginia 1986
#> 13442 Florida Michigan 1986
#> 13443 South Carolina South Dakota 1986
#> 13444 Hawaii Arkansas 1986
#> 13445 California Nevada 1986
#> 13446 Delaware Wyoming 1986
#> 13447 Washington North Dakota 1986
#> 13448 Massachusetts Connecticut 1986
#> 13449 Texas Massachusetts 1986
#> 13450 New Jersey Iowa 1986
#> 13451 California Virginia 1986
#> 13452 West Virginia Georgia 1986
#> 13453 Alabama Maryland 1986
#> 13454 Michigan Alabama 1986
#> 13455 Wisconsin Missouri 1986
#> 13456 Louisiana New Hampshire 1986
#> 13457 New Mexico North Carolina 1986
#> 13458 Maryland Illinois 1986
#> 13459 California Georgia 1986
#> 13460 Connecticut Oregon 1986
#> 13461 South Carolina Nevada 1986
#> 13462 Kentucky Texas 1986
#> 13463 Illinois Idaho 1986
#> 13464 Louisiana Idaho 1986
#> 13465 Hawaii Tennessee 1986
#> 13466 Pennsylvania Indiana 1986
#> 13467 Rhode Island Minnesota 1986
#> 13468 Nevada Wyoming 1986
#> 13469 South Carolina Utah 1986
#> 13470 Illinois Indiana 1986
#> 13471 Pennsylvania California 1986
#> 13472 Texas Kentucky 1986
#> 13473 Massachusetts New Mexico 1986
#> 13474 Nevada Louisiana 1986
#> 13475 Minnesota Missouri 1986
#> 13476 New Jersey Oregon 1986
#> 13477 Illinois Oklahoma 1986
#> 13478 Pennsylvania Kansas 1986
#> 13479 Oregon Arizona 1986
#> 13480 Nebraska Maine 1986
#> 13481 Idaho Vermont 1986
#> 13482 Maryland New York 1986
#> 13483 Montana Michigan 1986
#> 13484 Illinois Ohio 1986
#> 13485 California Massachusetts 1986
#> 13486 Wisconsin Indiana 1986
#> 13487 South Carolina Alabama 1986
#> 13488 Colorado Vermont 1986
#> 13489 Delaware New Hampshire 1986
#> 13490 Maine Nevada 1986
#> 13491 Pennsylvania Illinois 1986
#> 13492 Louisiana Texas 1986
#> 13493 Iowa Texas 1986
#> 13494 Mississippi Georgia 1986
#> 13495 North Dakota Wyoming 1986
#> 13496 North Carolina Minnesota 1986
#> 13497 New Jersey Michigan 1986
#> 13498 Oregon Oklahoma 1986
#> 13499 Arkansas Colorado 1986
#> 13500 Oklahoma Maryland 1986
#> 13501 New York Ohio 1987
#> 13502 New York Oregon 1987
#> 13503 New York Connecticut 1987
#> 13504 New York Michigan 1987
#> 13505 New York Illinois 1987
#> 13506 New York Minnesota 1987
#> 13507 New York Florida 1987
#> 13508 New York New Jersey 1987
#> 13509 New York Indiana 1987
#> 13510 Oregon Kentucky 1987
#> 13511 New York New Hampshire 1987
#> 13512 New York California 1987
#> 13513 New York Rhode Island 1987
#> 13514 New York Iowa 1987
#> 13515 New York Maine 1987
#> 13516 Massachusetts Colorado 1987
#> 13517 New York Pennsylvania 1987
#> 13518 New York Washington 1987
#> 13519 Colorado Kansas 1987
#> 13520 Washington Missouri 1987
#> 13521 Oregon South Dakota 1987
#> 13522 New York Texas 1987
#> 13523 Florida Mississippi 1987
#> 13524 New York West Virginia 1987
#> 13525 New York Idaho 1987
#> 13526 Florida Georgia 1987
#> 13527 New York Vermont 1987
#> 13528 Connecticut Delaware 1987
#> 13529 New York Maryland 1987
#> 13530 Minnesota Virginia 1987
#> 13531 New York New Mexico 1987
#> 13532 Oregon Alaska 1987
#> 13533 New York Oklahoma 1987
#> 13534 New York North Carolina 1987
#> 13535 New York Nebraska 1987
#> 13536 Oregon Wyoming 1987
#> 13537 New York Nevada 1987
#> 13538 Oregon North Dakota 1987
#> 13539 Florida South Carolina 1987
#> 13540 Michigan Montana 1987
#> 13541 New York Massachusetts 1987
#> 13542 Florida Arizona 1987
#> 13543 Florida Louisiana 1987
#> 13544 New York Hawaii 1987
#> 13545 New York Tennessee 1987
#> 13546 Massachusetts Wisconsin 1987
#> 13547 Minnesota Alabama 1987
#> 13548 Connecticut New York 1987
#> 13549 New York Arkansas 1987
#> 13550 Nevada Utah 1987
#> 13551 California Oregon 1987
#> 13552 Idaho Colorado 1987
#> 13553 Colorado Minnesota 1987
#> 13554 California Washington 1987
#> 13555 Colorado Ohio 1987
#> 13556 Idaho Delaware 1987
#> 13557 New Jersey Rhode Island 1987
#> 13558 North Carolina Virginia 1987
#> 13559 Florida Oklahoma 1987
#> 13560 Michigan Kansas 1987
#> 13561 Florida Kentucky 1987
#> 13562 Illinois Massachusetts 1987
#> 13563 Maine Iowa 1987
#> 13564 Virginia Georgia 1987
#> 13565 Colorado New Jersey 1987
#> 13566 California New York 1987
#> 13567 Washington Montana 1987
#> 13568 Michigan South Carolina 1987
#> 13569 Oregon Maine 1987
#> 13570 California Florida 1987
#> 13571 Pennsylvania Indiana 1987
#> 13572 Montana New Mexico 1987
#> 13573 Michigan North Dakota 1987
#> 13574 Rhode Island Connecticut 1987
#> 13575 Montana Idaho 1987
#> 13576 Indiana California 1987
#> 13577 Rhode Island Missouri 1987
#> 13578 Oregon Arizona 1987
#> 13579 Colorado Louisiana 1987
#> 13580 New Mexico Pennsylvania 1987
#> 13581 Colorado Maryland 1987
#> 13582 Idaho South Dakota 1987
#> 13583 Arkansas Nebraska 1987
#> 13584 Florida Nevada 1987
#> 13585 Indiana Wisconsin 1987
#> 13586 New Jersey Illinois 1987
#> 13587 Connecticut New Hampshire 1987
#> 13588 Illinois North Carolina 1987
#> 13589 Minnesota Mississippi 1987
#> 13590 Nebraska Tennessee 1987
#> 13591 Arkansas Alabama 1987
#> 13592 California Hawaii 1987
#> 13593 Florida Texas 1987
#> 13594 Utah Wyoming 1987
#> 13595 Florida Utah 1987
#> 13596 Maine Vermont 1987
#> 13597 Colorado Arkansas 1987
#> 13598 Colorado Oregon 1987
#> 13599 Nebraska Virginia 1987
#> 13600 Montana Washington 1987
#> 13601 North Carolina Indiana 1987
#> 13602 Oregon Rhode Island 1987
#> 13603 Maryland Michigan 1987
#> 13604 South Dakota North Carolina 1987
#> 13605 Michigan Delaware 1987
#> 13606 Connecticut Maryland 1987
#> 13607 Connecticut Massachusetts 1987
#> 13608 Massachusetts New York 1987
#> 13609 Minnesota Iowa 1987
#> 13610 Minnesota West Virginia 1987
#> 13611 Pennsylvania Alaska 1987
#> 13612 New York Alabama 1987
#> 13613 Oregon Vermont 1987
#> 13614 Colorado Oklahoma 1987
#> 13615 Arkansas Kansas 1987
#> 13616 New Jersey New Mexico 1987
#> 13617 California Georgia 1987
#> 13618 Florida Colorado 1987
#> 13619 Indiana New Jersey 1987
#> 13620 Illinois Florida 1987
#> 13621 Texas Arkansas 1987
#> 13622 Montana New Hampshire 1987
#> 13623 Pennsylvania Ohio 1987
#> 13624 Maine South Carolina 1987
#> 13625 Illinois Nebraska 1987
#> 13626 Oregon Montana 1987
#> 13627 Indiana South Dakota 1987
#> 13628 Washington Connecticut 1987
#> 13629 Colorado Wisconsin 1987
#> 13630 Rhode Island Maine 1987
#> 13631 Delaware North Dakota 1987
#> 13632 California Illinois 1987
#> 13633 Illinois Texas 1987
#> 13634 Oregon Michigan 1987
#> 13635 Alabama Florida 1987
#> 13636 Kentucky Minnesota 1987
#> 13637 Michigan Arizona 1987
#> 13638 North Dakota Indiana 1987
#> 13639 Georgia Idaho 1987
#> 13640 Illinois Tennessee 1987
#> 13641 Arkansas California 1987
#> 13642 Pennsylvania Louisiana 1987
#> 13643 Maryland Delaware 1987
#> 13644 Idaho Nevada 1987
#> 13645 Rhode Island Kentucky 1987
#> 13646 Alaska New York 1987
#> 13647 Texas Missouri 1987
#> 13648 Oregon Massachusetts 1987
#> 13649 Michigan Alabama 1987
#> 13650 Rhode Island Wyoming 1987
#> 13651 California New Jersey 1987
#> 13652 Rhode Island Pennsylvania 1987
#> 13653 Illinois Minnesota 1987
#> 13654 Arkansas Mississippi 1987
#> 13655 Minnesota Arkansas 1987
#> 13656 Colorado California 1987
#> 13657 Hawaii Oregon 1987
#> 13658 Idaho Montana 1987
#> 13659 Hawaii Alaska 1987
#> 13660 New Mexico Iowa 1987
#> 13661 Idaho Utah 1987
#> 13662 Maryland Illinois 1987
#> 13663 California Minnesota 1987
#> 13664 Rhode Island Washington 1987
#> 13665 New Mexico Hawaii 1987
#> 13666 Minnesota Kansas 1987
#> 13667 Idaho Missouri 1987
#> 13668 Louisiana Rhode Island 1987
#> 13669 Washington New Mexico 1987
#> 13670 Washington Colorado 1987
#> 13671 Kentucky Virginia 1987
#> 13672 New Hampshire West Virginia 1987
#> 13673 Arkansas Ohio 1987
#> 13674 Connecticut Maine 1987
#> 13675 New Jersey Louisiana 1987
#> 13676 Rhode Island Massachusetts 1987
#> 13677 Connecticut Pennsylvania 1987
#> 13678 Hawaii Washington 1987
#> 13679 South Dakota Wisconsin 1987
#> 13680 Connecticut Virginia 1987
#> 13681 Colorado Idaho 1987
#> 13682 Michigan South Dakota 1987
#> 13683 Illinois New Hampshire 1987
#> 13684 Arkansas Montana 1987
#> 13685 Michigan Illinois 1987
#> 13686 Idaho Rhode Island 1987
#> 13687 New Jersey Oregon 1987
#> 13688 Oregon Hawaii 1987
#> 13689 Texas Maryland 1987
#> 13690 Oregon Connecticut 1987
#> 13691 Wisconsin Vermont 1987
#> 13692 Maryland New Mexico 1987
#> 13693 Connecticut New Jersey 1987
#> 13694 Colorado North Carolina 1987
#> 13695 Illinois South Carolina 1987
#> 13696 Minnesota Maine 1987
#> 13697 Minnesota Delaware 1987
#> 13698 Oregon Wisconsin 1987
#> 13699 Michigan Georgia 1987
#> 13700 Washington Pennsylvania 1987
#> 13701 North Carolina South Carolina 1987
#> 13702 Oregon Minnesota 1987
#> 13703 North Carolina Connecticut 1987
#> 13704 Maine Nebraska 1987
#> 13705 Alabama North Dakota 1987
#> 13706 Tennessee Arkansas 1987
#> 13707 Maine Nevada 1987
#> 13708 Georgia Kentucky 1987
#> 13709 Georgia Indiana 1987
#> 13710 New York Utah 1987
#> 13711 Michigan Missouri 1987
#> 13712 Montana Michigan 1987
#> 13713 Connecticut Colorado 1987
#> 13714 Washington New York 1987
#> 13715 Minnesota Indiana 1987
#> 13716 Minnesota Arizona 1987
#> 13717 Nevada West Virginia 1987
#> 13718 Hawaii Florida 1987
#> 13719 Pennsylvania Rhode Island 1987
#> 13720 Kentucky New York 1987
#> 13721 Iowa Oklahoma 1987
#> 13722 West Virginia Kansas 1987
#> 13723 Colorado North Dakota 1987
#> 13724 Maine New Hampshire 1987
#> 13725 New Hampshire Florida 1987
#> 13726 Maine Oregon 1987
#> 13727 Delaware Iowa 1987
#> 13728 Illinois Hawaii 1987
#> 13729 South Carolina Idaho 1987
#> 13730 Vermont Tennessee 1987
#> 13731 California Montana 1987
#> 13732 Georgia Mississippi 1987
#> 13733 California Texas 1987
#> 13734 North Carolina Maryland 1987
#> 13735 Florida Nebraska 1987
#> 13736 Oregon Georgia 1987
#> 13737 Minnesota Tennessee 1987
#> 13738 California Wisconsin 1987
#> 13739 Nevada Washington 1987
#> 13740 Wisconsin North Carolina 1987
#> 13741 New Jersey Massachusetts 1987
#> 13742 Nebraska Alabama 1987
#> 13743 Maryland Nebraska 1987
#> 13744 Kentucky Louisiana 1987
#> 13745 Alaska Nevada 1987
#> 13746 Florida Iowa 1987
#> 13747 Oregon Ohio 1987
#> 13748 Nevada New Hampshire 1987
#> 13749 North Dakota Oklahoma 1987
#> 13750 Idaho Minnesota 1987
#> 13751 Georgia Rhode Island 1987
#> 13752 Vermont Connecticut 1987
#> 13753 Maine Maryland 1987
#> 13754 Mississippi New Mexico 1987
#> 13755 Minnesota California 1987
#> 13756 Maine North Carolina 1987
#> 13757 Nevada Kansas 1987
#> 13758 Wisconsin Indiana 1987
#> 13759 Wyoming Arizona 1987
#> 13760 Vermont New York 1987
#> 13761 North Dakota Kentucky 1987
#> 13762 Connecticut Louisiana 1987
#> 13763 Illinois Idaho 1987
#> 13764 Maine Wisconsin 1987
#> 13765 Minnesota New Jersey 1987
#> 13766 Montana Colorado 1987
#> 13767 Arkansas Wyoming 1987
#> 13768 Louisiana Illinois 1987
#> 13769 California Rhode Island 1987
#> 13770 Rhode Island South Dakota 1987
#> 13771 California Alaska 1987
#> 13772 Rhode Island North Dakota 1987
#> 13773 Illinois California 1987
#> 13774 Florida Maryland 1987
#> 13775 California North Carolina 1987
#> 13776 Tennessee Florida 1987
#> 13777 Massachusetts Connecticut 1987
#> 13778 Illinois Virginia 1987
#> 13779 Illinois Michigan 1987
#> 13780 New York Delaware 1987
#> 13781 Maine Missouri 1987
#> 13782 Louisiana Alaska 1987
#> 13783 Pennsylvania Oklahoma 1987
#> 13784 New Mexico Alabama 1987
#> 13785 Idaho New York 1987
#> 13786 Florida Connecticut 1987
#> 13787 Minnesota Utah 1987
#> 13788 Virginia Indiana 1987
#> 13789 Louisiana Montana 1987
#> 13790 Oregon Delaware 1987
#> 13791 Minnesota Washington 1987
#> 13792 Maryland Nevada 1987
#> 13793 Mississippi Arizona 1987
#> 13794 Pennsylvania New Mexico 1987
#> 13795 Florida South Dakota 1987
#> 13796 Illinois Vermont 1987
#> 13797 Indiana Maine 1987
#> 13798 Washington Wyoming 1987
#> 13799 Massachusetts Pennsylvania 1987
#> 13800 Nebraska Pennsylvania 1987
#> 13801 Delaware Massachusetts 1987
#> 13802 Minnesota Colorado 1987
#> 13803 North Dakota California 1987
#> 13804 California Maryland 1987
#> 13805 Washington Illinois 1987
#> 13806 Kentucky Arkansas 1987
#> 13807 Florida Rhode Island 1987
#> 13808 Massachusetts Maine 1987
#> 13809 Arkansas Colorado 1987
#> 13810 Illinois New Jersey 1987
#> 13811 Massachusetts Florida 1987
#> 13812 Nebraska Arkansas 1987
#> 13813 Kentucky Missouri 1987
#> 13814 Idaho North Dakota 1987
#> 13815 Arkansas Connecticut 1987
#> 13816 New Jersey Texas 1987
#> 13817 Illinois Georgia 1987
#> 13818 Wisconsin Massachusetts 1987
#> 13819 Montana Hawaii 1987
#> 13820 Massachusetts Kansas 1987
#> 13821 Michigan West Virginia 1987
#> 13822 Maine Texas 1987
#> 13823 Illinois Rhode Island 1987
#> 13824 Montana Oregon 1987
#> 13825 New Mexico Delaware 1987
#> 13826 Kentucky Massachusetts 1987
#> 13827 Pennsylvania Montana 1987
#> 13828 New Mexico Mississippi 1987
#> 13829 Kentucky Michigan 1987
#> 13830 Nevada Idaho 1987
#> 13831 Florida Ohio 1987
#> 13832 Kentucky Idaho 1987
#> 13833 Wisconsin Rhode Island 1987
#> 13834 Arkansas Wisconsin 1987
#> 13835 California Virginia 1987
#> 13836 Wisconsin Michigan 1987
#> 13837 New Jersey Iowa 1987
#> 13838 Wisconsin South Carolina 1987
#> 13839 Mississippi Maine 1987
#> 13840 Tennessee New York 1987
#> 13841 Colorado Georgia 1987
#> 13842 New Jersey Wisconsin 1987
#> 13843 Arkansas West Virginia 1987
#> 13844 Rhode Island Minnesota 1987
#> 13845 Virginia Kentucky 1987
#> 13846 New Jersey Hawaii 1987
#> 13847 Colorado Washington 1987
#> 13848 Delaware Missouri 1987
#> 13849 Colorado Utah 1987
#> 13850 Idaho New Mexico 1987
#> 13851 Louisiana Tennessee 1987
#> 13852 Missouri Indiana 1987
#> 13853 Tennessee Illinois 1987
#> 13854 Connecticut Nebraska 1987
#> 13855 Nevada Mississippi 1987
#> 13856 California Massachusetts 1987
#> 13857 New Mexico Oregon 1987
#> 13858 Maryland California 1987
#> 13859 Rhode Island Arizona 1987
#> 13860 Michigan California 1987
#> 13861 Michigan Ohio 1987
#> 13862 Wisconsin Pennsylvania 1987
#> 13863 New Jersey Alaska 1987
#> 13864 Delaware Oklahoma 1987
#> 13865 Wisconsin Colorado 1987
#> 13866 North Dakota Virginia 1987
#> 13867 Rhode Island Ohio 1987
#> 13868 Wisconsin Nevada 1987
#> 13869 Colorado Arizona 1987
#> 13870 Connecticut North Carolina 1987
#> 13871 Colorado Vermont 1987
#> 13872 New Hampshire New York 1987
#> 13873 Wisconsin New York 1987
#> 13874 New Jersey Michigan 1987
#> 13875 Iowa Kansas 1987
#> 13876 Florida Indiana 1987
#> 13877 New Jersey Delaware 1987
#> 13878 Tennessee Georgia 1987
#> 13879 Idaho Alabama 1987
#> 13880 Wisconsin Minnesota 1987
#> 13881 Wisconsin Hawaii 1987
#> 13882 Louisiana Oklahoma 1987
#> 13883 Virginia Utah 1987
#> 13884 New Jersey Idaho 1987
#> 13885 Oregon New Mexico 1987
#> 13886 West Virginia Florida 1987
#> 13887 New Jersey Pennsylvania 1987
#> 13888 Nebraska Maine 1987
#> 13889 West Virginia Nevada 1987
#> 13890 Tennessee Montana 1987
#> 13891 South Carolina South Dakota 1987
#> 13892 Wisconsin Arizona 1987
#> 13893 Florida North Carolina 1987
#> 13894 Hawaii Vermont 1987
#> 13895 Kentucky Alaska 1987
#> 13896 Pennsylvania Wisconsin 1987
#> 13897 Vermont New Hampshire 1987
#> 13898 Nevada Montana 1987
#> 13899 Arkansas Minnesota 1987
#> 13900 Utah Washington 1987
#> 13901 Vermont Virginia 1987
#> 13902 Montana Ohio 1987
#> 13903 North Dakota Nebraska 1987
#> 13904 Wisconsin Idaho 1987
#> 13905 Delaware Arkansas 1987
#> 13906 Connecticut Wyoming 1987
#> 13907 Kentucky Vermont 1987
#> 13908 New Mexico Maine 1987
#> 13909 Illinois Iowa 1987
#> 13910 Florida Kansas 1987
#> 13911 Wisconsin Georgia 1987
#> 13912 Nebraska Louisiana 1987
#> 13913 Oregon Alabama 1987
#> 13914 Iowa New Jersey 1987
#> 13915 Oregon Nebraska 1987
#> 13916 Tennessee Massachusetts 1987
#> 13917 Maine New Mexico 1987
#> 13918 Delaware Montana 1987
#> 13919 Kansas Colorado 1987
#> 13920 Illinois Pennsylvania 1987
#> 13921 New Mexico Rhode Island 1987
#> 13922 California New Mexico 1987
#> 13923 Indiana Hawaii 1987
#> 13924 Arkansas Texas 1987
#> 13925 Ohio Tennessee 1987
#> 13926 Mississippi California 1987
#> 13927 Illinois Maryland 1987
#> 13928 Kansas Arkansas 1987
#> 13929 New York Wyoming 1987
#> 13930 New York Kentucky 1987
#> 13931 North Dakota Iowa 1987
#> 13932 Alabama Maryland 1987
#> 13933 Hawaii West Virginia 1987
#> 13934 South Carolina New York 1987
#> 13935 Rhode Island Mississippi 1987
#> 13936 Alabama California 1987
#> 13937 Kentucky Tennessee 1987
#> 13938 Washington North Dakota 1987
#> 13939 Wisconsin Illinois 1987
#> 13940 Kansas Nebraska 1987
#> 13941 Arkansas Tennessee 1987
#> 13942 Vermont Rhode Island 1987
#> 13943 Arkansas Delaware 1987
#> 13944 California Nevada 1987
#> 13945 Hawaii Arkansas 1987
#> 13946 Idaho Hawaii 1987
#> 13947 Rhode Island New York 1987
#> 13948 Connecticut Kansas 1987
#> 13949 Colorado New Hampshire 1987
#> 13950 Oregon Iowa 1987
#> 13951 Texas Massachusetts 1987
#> 13952 Minnesota Oregon 1987
#> 13953 Florida New Jersey 1987
#> 13954 Wisconsin Missouri 1987
#> 13955 Oklahoma Indiana 1987
#> 13956 Florida Michigan 1987
#> 13957 Oregon Nevada 1987
#> 13958 Oregon Texas 1987
#> 13959 Georgia Louisiana 1987
#> 13960 Louisiana New Mexico 1987
#> 13961 Rhode Island Maryland 1987
#> 13962 Nevada Wyoming 1987
#> 13963 Connecticut Oregon 1987
#> 13964 Iowa Montana 1987
#> 13965 Rhode Island New Mexico 1987
#> 13966 California South Carolina 1987
#> 13967 Connecticut Florida 1987
#> 13968 Louisiana Idaho 1987
#> 13969 Missouri Wisconsin 1987
#> 13970 Maine Michigan 1987
#> 13971 Texas Oklahoma 1987
#> 13972 Mississippi Nevada 1987
#> 13973 Oklahoma Kentucky 1987
#> 13974 Hawaii Virginia 1987
#> 13975 Mississippi Nebraska 1987
#> 13976 Hawaii Tennessee 1987
#> 13977 Washington West Virginia 1987
#> 13978 Utah Maryland 1987
#> 13979 South Carolina Illinois 1987
#> 13980 New Jersey Washington 1987
#> 13981 Rhode Island Louisiana 1987
#> 13982 Wyoming Utah 1987
#> 13983 Idaho Vermont 1987
#> 13984 Tennessee North Dakota 1987
#> 13985 Colorado Montana 1987
#> 13986 New Mexico Oklahoma 1987
#> 13987 Michigan Indiana 1987
#> 13988 Kentucky Illinois 1987
#> 13989 South Carolina Alabama 1987
#> 13990 Wyoming Illinois 1987
#> 13991 Pennsylvania Kansas 1987
#> 13992 Alaska Connecticut 1987
#> 13993 Delaware Wyoming 1987
#> 13994 Oregon North Carolina 1987
#> 13995 South Dakota Hawaii 1987
#> 13996 Wisconsin Alaska 1987
#> 13997 Pennsylvania California 1987
#> 13998 Oregon Utah 1987
#> 13999 Delaware Texas 1987
#> 14000 California Connecticut 1987
#> 14001 New York Ohio 1988
#> 14002 New York Oregon 1988
#> 14003 New York Michigan 1988
#> 14004 New York Minnesota 1988
#> 14005 New York New Jersey 1988
#> 14006 New York Illinois 1988
#> 14007 New York California 1988
#> 14008 New York Indiana 1988
#> 14009 New York Connecticut 1988
#> 14010 New York Florida 1988
#> 14011 New York New Hampshire 1988
#> 14012 New York Iowa 1988
#> 14013 Massachusetts Colorado 1988
#> 14014 New York Maine 1988
#> 14015 New York Washington 1988
#> 14016 Oregon Kentucky 1988
#> 14017 New York Pennsylvania 1988
#> 14018 New York Rhode Island 1988
#> 14019 New York West Virginia 1988
#> 14020 Colorado Kansas 1988
#> 14021 New York Oklahoma 1988
#> 14022 Washington Missouri 1988
#> 14023 New York Idaho 1988
#> 14024 New York Maryland 1988
#> 14025 Oregon South Dakota 1988
#> 14026 Florida Mississippi 1988
#> 14027 Florida Georgia 1988
#> 14028 New York Vermont 1988
#> 14029 New York Nebraska 1988
#> 14030 Florida South Carolina 1988
#> 14031 Florida Texas 1988
#> 14032 New York North Carolina 1988
#> 14033 Oregon Alaska 1988
#> 14034 New York New Mexico 1988
#> 14035 Oregon Wyoming 1988
#> 14036 Connecticut Delaware 1988
#> 14037 Minnesota Virginia 1988
#> 14038 Florida Louisiana 1988
#> 14039 Massachusetts Wisconsin 1988
#> 14040 Colorado North Dakota 1988
#> 14041 Delaware Montana 1988
#> 14042 California Arkansas 1988
#> 14043 New York Nevada 1988
#> 14044 New York Hawaii 1988
#> 14045 Florida Arizona 1988
#> 14046 New York Massachusetts 1988
#> 14047 New York Tennessee 1988
#> 14048 Connecticut New York 1988
#> 14049 Minnesota Alabama 1988
#> 14050 Florida Utah 1988
#> 14051 California Oregon 1988
#> 14052 California Washington 1988
#> 14053 Idaho Colorado 1988
#> 14054 Colorado Ohio 1988
#> 14055 Colorado Minnesota 1988
#> 14056 Idaho Delaware 1988
#> 14057 Florida Oklahoma 1988
#> 14058 Florida Kentucky 1988
#> 14059 Delaware North Dakota 1988
#> 14060 Florida North Carolina 1988
#> 14061 California New York 1988
#> 14062 Michigan Kansas 1988
#> 14063 Minnesota Iowa 1988
#> 14064 Colorado New Jersey 1988
#> 14065 California Georgia 1988
#> 14066 California South Carolina 1988
#> 14067 New Jersey Rhode Island 1988
#> 14068 Alabama Florida 1988
#> 14069 Kentucky Arkansas 1988
#> 14070 Illinois Massachusetts 1988
#> 14071 Rhode Island Missouri 1988
#> 14072 Idaho Nevada 1988
#> 14073 New York Texas 1988
#> 14074 Oregon Arizona 1988
#> 14075 Montana New Mexico 1988
#> 14076 Oregon Montana 1988
#> 14077 Maryland Indiana 1988
#> 14078 Connecticut Virginia 1988
#> 14079 Oregon Maine 1988
#> 14080 Rhode Island Connecticut 1988
#> 14081 Colorado Oregon 1988
#> 14082 Colorado Maryland 1988
#> 14083 Colorado Louisiana 1988
#> 14084 California Hawaii 1988
#> 14085 Montana Idaho 1988
#> 14086 Colorado Pennsylvania 1988
#> 14087 Indiana California 1988
#> 14088 Indiana Wisconsin 1988
#> 14089 Connecticut New Hampshire 1988
#> 14090 Minnesota Mississippi 1988
#> 14091 Indiana South Dakota 1988
#> 14092 Arkansas Nebraska 1988
#> 14093 Virginia Alabama 1988
#> 14094 Colorado Illinois 1988
#> 14095 North Dakota Utah 1988
#> 14096 Illinois Vermont 1988
#> 14097 Montana Washington 1988
#> 14098 Rhode Island Indiana 1988
#> 14099 Rhode Island Wyoming 1988
#> 14100 Maine Iowa 1988
#> 14101 Michigan Delaware 1988
#> 14102 Florida Colorado 1988
#> 14103 California Massachusetts 1988
#> 14104 Oregon Rhode Island 1988
#> 14105 California Florida 1988
#> 14106 Louisiana Tennessee 1988
#> 14107 Maryland Michigan 1988
#> 14108 Virginia Georgia 1988
#> 14109 California North Carolina 1988
#> 14110 Minnesota West Virginia 1988
#> 14111 California Texas 1988
#> 14112 Oregon Vermont 1988
#> 14113 Florida Arkansas 1988
#> 14114 Connecticut Maryland 1988
#> 14115 Montana New Hampshire 1988
#> 14116 Rhode Island Pennsylvania 1988
#> 14117 Colorado Wisconsin 1988
#> 14118 Rhode Island Maine 1988
#> 14119 New Jersey Alaska 1988
#> 14120 Idaho South Dakota 1988
#> 14121 Oregon Connecticut 1988
#> 14122 Minnesota Kansas 1988
#> 14123 Illinois Nebraska 1988
#> 14124 Massachusetts New York 1988
#> 14125 Florida Virginia 1988
#> 14126 California New Jersey 1988
#> 14127 California New Mexico 1988
#> 14128 Georgia Montana 1988
#> 14129 Florida Nevada 1988
#> 14130 Oregon Minnesota 1988
#> 14131 Iowa North Carolina 1988
#> 14132 Minnesota Oklahoma 1988
#> 14133 Idaho Alabama 1988
#> 14134 Maine South Carolina 1988
#> 14135 California North Dakota 1988
#> 14136 Idaho Utah 1988
#> 14137 Idaho Missouri 1988
#> 14138 Virginia Illinois 1988
#> 14139 Arkansas Indiana 1988
#> 14140 Louisiana Ohio 1988
#> 14141 Utah Wyoming 1988
#> 14142 Colorado Idaho 1988
#> 14143 Hawaii Oregon 1988
#> 14144 Arkansas California 1988
#> 14145 Maryland Delaware 1988
#> 14146 Tennessee Florida 1988
#> 14147 California Minnesota 1988
#> 14148 Rhode Island Kentucky 1988
#> 14149 Alaska New York 1988
#> 14150 Georgia Virginia 1988
#> 14151 Illinois Minnesota 1988
#> 14152 Michigan Arizona 1988
#> 14153 Virginia Iowa 1988
#> 14154 Arkansas Mississippi 1988
#> 14155 Nebraska Tennessee 1988
#> 14156 Colorado California 1988
#> 14157 Arkansas Louisiana 1988
#> 14158 Oregon Michigan 1988
#> 14159 Montana Alaska 1988
#> 14160 Colorado Massachusetts 1988
#> 14161 Wisconsin New Mexico 1988
#> 14162 Connecticut Montana 1988
#> 14163 California Rhode Island 1988
#> 14164 New Jersey Washington 1988
#> 14165 New York North Dakota 1988
#> 14166 Maine Nevada 1988
#> 14167 New Jersey Texas 1988
#> 14168 Indiana New Jersey 1988
#> 14169 Michigan Florida 1988
#> 14170 Michigan Missouri 1988
#> 14171 Minnesota Hawaii 1988
#> 14172 Delaware Kansas 1988
#> 14173 Washington Colorado 1988
#> 14174 Wisconsin South Carolina 1988
#> 14175 Washington Pennsylvania 1988
#> 14176 Delaware Iowa 1988
#> 14177 Florida South Dakota 1988
#> 14178 Connecticut Maine 1988
#> 14179 California Ohio 1988
#> 14180 Wisconsin Rhode Island 1988
#> 14181 Rhode Island New Mexico 1988
#> 14182 Maryland Illinois 1988
#> 14183 Hawaii Idaho 1988
#> 14184 Oregon Wisconsin 1988
#> 14185 Iowa Arkansas 1988
#> 14186 Iowa Massachusetts 1988
#> 14187 New Jersey Louisiana 1988
#> 14188 Florida Connecticut 1988
#> 14189 Illinois New Hampshire 1988
#> 14190 Delaware West Virginia 1988
#> 14191 Rhode Island Montana 1988
#> 14192 Pennsylvania New York 1988
#> 14193 New York Utah 1988
#> 14194 New Jersey Oregon 1988
#> 14195 Rhode Island Washington 1988
#> 14196 Minnesota Arizona 1988
#> 14197 South Dakota Nebraska 1988
#> 14198 South Carolina Delaware 1988
#> 14199 Michigan Illinois 1988
#> 14200 Washington Connecticut 1988
#> 14201 Arkansas Alabama 1988
#> 14202 Minnesota Maine 1988
#> 14203 Florida Maryland 1988
#> 14204 Washington Indiana 1988
#> 14205 Michigan Georgia 1988
#> 14206 Georgia Mississippi 1988
#> 14207 Kentucky New York 1988
#> 14208 Minnesota Tennessee 1988
#> 14209 Illinois Hawaii 1988
#> 14210 Illinois Ohio 1988
#> 14211 Kentucky Minnesota 1988
#> 14212 Kentucky Missouri 1988
#> 14213 Kentucky Maryland 1988
#> 14214 Delaware Oklahoma 1988
#> 14215 Louisiana Rhode Island 1988
#> 14216 Virginia Colorado 1988
#> 14217 Mississippi Arizona 1988
#> 14218 New Jersey Massachusetts 1988
#> 14219 Montana Michigan 1988
#> 14220 Oregon North Carolina 1988
#> 14221 Minnesota South Carolina 1988
#> 14222 Tennessee Arkansas 1988
#> 14223 Maine New Hampshire 1988
#> 14224 Nebraska Idaho 1988
#> 14225 Louisiana Montana 1988
#> 14226 Minnesota California 1988
#> 14227 Connecticut New Jersey 1988
#> 14228 Hawaii Washington 1988
#> 14229 North Dakota Maryland 1988
#> 14230 Maine Oregon 1988
#> 14231 North Dakota New Mexico 1988
#> 14232 Connecticut Louisiana 1988
#> 14233 Indiana Kentucky 1988
#> 14234 Hawaii Alaska 1988
#> 14235 Rhode Island Vermont 1988
#> 14236 Michigan West Virginia 1988
#> 14237 Delaware Nevada 1988
#> 14238 California Virginia 1988
#> 14239 Alabama North Dakota 1988
#> 14240 New Mexico Iowa 1988
#> 14241 California Wisconsin 1988
#> 14242 Illinois Virginia 1988
#> 14243 Massachusetts Connecticut 1988
#> 14244 Connecticut Colorado 1988
#> 14245 Massachusetts Florida 1988
#> 14246 Virginia Maine 1988
#> 14247 Oregon Ohio 1988
#> 14248 Michigan Indiana 1988
#> 14249 California Illinois 1988
#> 14250 Arkansas Kansas 1988
#> 14251 Washington Wyoming 1988
#> 14252 Nebraska Pennsylvania 1988
#> 14253 South Dakota North Carolina 1988
#> 14254 Pennsylvania Rhode Island 1988
#> 14255 Hawaii Florida 1988
#> 14256 Iowa Wisconsin 1988
#> 14257 Idaho Minnesota 1988
#> 14258 Nebraska Alabama 1988
#> 14259 South Carolina Idaho 1988
#> 14260 Maine Missouri 1988
#> 14261 Delaware Massachusetts 1988
#> 14262 Maine North Dakota 1988
#> 14263 Idaho Montana 1988
#> 14264 Georgia Connecticut 1988
#> 14265 Colorado Tennessee 1988
#> 14266 Kansas Hawaii 1988
#> 14267 Minnesota New Jersey 1988
#> 14268 Iowa Colorado 1988
#> 14269 Rhode Island Wisconsin 1988
#> 14270 New Hampshire Hawaii 1988
#> 14271 Louisiana Kansas 1988
#> 14272 Rhode Island South Dakota 1988
#> 14273 Delaware Arkansas 1988
#> 14274 Arkansas Wyoming 1988
#> 14275 California Nebraska 1988
#> 14276 Wyoming Arizona 1988
#> 14277 Illinois California 1988
#> 14278 Michigan Alabama 1988
#> 14279 North Dakota Kentucky 1988
#> 14280 Florida Nebraska 1988
#> 14281 Illinois Texas 1988
#> 14282 Minnesota Indiana 1988
#> 14283 Nebraska Georgia 1988
#> 14284 California Vermont 1988
#> 14285 North Carolina Louisiana 1988
#> 14286 Alabama Michigan 1988
#> 14287 Alaska Nevada 1988
#> 14288 Louisiana Alaska 1988
#> 14289 Idaho New York 1988
#> 14290 New Jersey Pennsylvania 1988
#> 14291 New York Delaware 1988
#> 14292 Washington New York 1988
#> 14293 Mississippi Idaho 1988
#> 14294 Oregon Delaware 1988
#> 14295 Connecticut Massachusetts 1988
#> 14296 Minnesota Washington 1988
#> 14297 Pennsylvania Montana 1988
#> 14298 Pennsylvania Oklahoma 1988
#> 14299 New Mexico Oklahoma 1988
#> 14300 Kentucky Louisiana 1988
#> 14301 Indiana Maine 1988
#> 14302 Florida Rhode Island 1988
#> 14303 West Virginia Florida 1988
#> 14304 Kentucky Colorado 1988
#> 14305 Pennsylvania Utah 1988
#> 14306 Mississippi Missouri 1988
#> 14307 North Dakota California 1988
#> 14308 Indiana Idaho 1988
#> 14309 Illinois Pennsylvania 1988
#> 14310 California Maryland 1988
#> 14311 Hawaii Tennessee 1988
#> 14312 Georgia Rhode Island 1988
#> 14313 Louisiana South Dakota 1988
#> 14314 Vermont Connecticut 1988
#> 14315 Kentucky Virginia 1988
#> 14316 New Jersey Illinois 1988
#> 14317 Texas Georgia 1988
#> 14318 Massachusetts Maine 1988
#> 14319 Nevada New Hampshire 1988
#> 14320 Illinois New Jersey 1988
#> 14321 Maine North Carolina 1988
#> 14322 Wisconsin Michigan 1988
#> 14323 Louisiana Pennsylvania 1988
#> 14324 Kentucky Massachusetts 1988
#> 14325 Florida Iowa 1988
#> 14326 Minnesota Delaware 1988
#> 14327 Wisconsin California 1988
#> 14328 Maine Wisconsin 1988
#> 14329 Virginia West Virginia 1988
#> 14330 Washington Illinois 1988
#> 14331 Idaho North Dakota 1988
#> 14332 Oregon Kansas 1988
#> 14333 Idaho Arkansas 1988
#> 14334 Virginia Rhode Island 1988
#> 14335 Kentucky Tennessee 1988
#> 14336 Michigan Tennessee 1988
#> 14337 New York Kentucky 1988
#> 14338 Illinois Rhode Island 1988
#> 14339 Montana Oregon 1988
#> 14340 Tennessee New York 1988
#> 14341 California Nevada 1988
#> 14342 Alabama Connecticut 1988
#> 14343 Arkansas Wisconsin 1988
#> 14344 New Jersey South Carolina 1988
#> 14345 Kentucky Michigan 1988
#> 14346 New Mexico Delaware 1988
#> 14347 Alaska New Mexico 1988
#> 14348 California Alaska 1988
#> 14349 Oregon Oklahoma 1988
#> 14350 New Jersey Hawaii 1988
#> 14351 Mississippi Nebraska 1988
#> 14352 Colorado Georgia 1988
#> 14353 Maine Michigan 1988
#> 14354 New Mexico Alabama 1988
#> 14355 Florida New Jersey 1988
#> 14356 Rhode Island Minnesota 1988
#> 14357 Virginia Indiana 1988
#> 14358 Maine Nebraska 1988
#> 14359 Wisconsin North Carolina 1988
#> 14360 Kentucky Utah 1988
#> 14361 Hawaii North Dakota 1988
#> 14362 Virginia Kentucky 1988
#> 14363 Illinois Idaho 1988
#> 14364 Michigan Wyoming 1988
#> 14365 New Mexico Oregon 1988
#> 14366 North Dakota Virginia 1988
#> 14367 Illinois Florida 1988
#> 14368 Illinois South Carolina 1988
#> 14369 Louisiana New Mexico 1988
#> 14370 Colorado Washington 1988
#> 14371 Wisconsin Arizona 1988
#> 14372 Wisconsin Vermont 1988
#> 14373 New Jersey Michigan 1988
#> 14374 Maryland California 1988
#> 14375 Kansas Alaska 1988
#> 14376 Texas Missouri 1988
#> 14377 Delaware Alabama 1988
#> 14378 West Virginia Nevada 1988
#> 14379 Georgia Illinois 1988
#> 14380 Pennsylvania Indiana 1988
#> 14381 Illinois West Virginia 1988
#> 14382 New Hampshire New York 1988
#> 14383 Minnesota Texas 1988
#> 14384 Louisiana Oklahoma 1988
#> 14385 Wisconsin Colorado 1988
#> 14386 Colorado Arizona 1988
#> 14387 Oregon Alabama 1988
#> 14388 Idaho Florida 1988
#> 14389 Minnesota Colorado 1988
#> 14390 Vermont Virginia 1988
#> 14391 Rhode Island Maryland 1988
#> 14392 Mississippi Maine 1988
#> 14393 New Jersey Utah 1988
#> 14394 Texas Massachusetts 1988
#> 14395 Wisconsin Minnesota 1988
#> 14396 Indiana Hawaii 1988
#> 14397 Montana Ohio 1988
#> 14398 Missouri Kansas 1988
#> 14399 Wisconsin Massachusetts 1988
#> 14400 Wisconsin Nevada 1988
#> 14401 Virginia Montana 1988
#> 14402 Illinois Maryland 1988
#> 14403 Nebraska Arkansas 1988
#> 14404 Connecticut North Carolina 1988
#> 14405 New Jersey Delaware 1988
#> 14406 Tennessee Montana 1988
#> 14407 Wisconsin Idaho 1988
#> 14408 Hawaii Vermont 1988
#> 14409 Pennsylvania New Mexico 1988
#> 14410 Arkansas Minnesota 1988
#> 14411 Illinois Iowa 1988
#> 14412 Minnesota Arkansas 1988
#> 14413 Connecticut Wyoming 1988
#> 14414 Hawaii West Virginia 1988
#> 14415 Delaware Rhode Island 1988
#> 14416 Nevada New Mexico 1988
#> 14417 South Dakota Nevada 1988
#> 14418 Iowa New Jersey 1988
#> 14419 California South Dakota 1988
#> 14420 Alaska Nebraska 1988
#> 14421 Ohio Tennessee 1988
#> 14422 Louisiana Wisconsin 1988
#> 14423 Rhode Island Ohio 1988
#> 14424 Virginia Kansas 1988
#> 14425 Colorado Vermont 1988
#> 14426 Vermont New York 1988
#> 14427 Indiana Montana 1988
#> 14428 Rhode Island Mississippi 1988
#> 14429 South Carolina South Dakota 1988
#> 14430 Tennessee Georgia 1988
#> 14431 Oklahoma Indiana 1988
#> 14432 Idaho Ohio 1988
#> 14433 Nevada West Virginia 1988
#> 14434 New Mexico Rhode Island 1988
#> 14435 Mississippi California 1988
#> 14436 New York Wyoming 1988
#> 14437 South Dakota Wisconsin 1988
#> 14438 South Carolina New York 1988
#> 14439 Arkansas Montana 1988
#> 14440 Maine Texas 1988
#> 14441 Nevada Montana 1988
#> 14442 New Mexico Kansas 1988
#> 14443 California Connecticut 1988
#> 14444 Tennessee Massachusetts 1988
#> 14445 Idaho Iowa 1988
#> 14446 Washington North Dakota 1988
#> 14447 Illinois Maine 1988
#> 14448 New Mexico Mississippi 1988
#> 14449 Arkansas Tennessee 1988
#> 14450 Arkansas Delaware 1988
#> 14451 Rhode Island Hawaii 1988
#> 14452 Wisconsin Illinois 1988
#> 14453 Hawaii Arkansas 1988
#> 14454 Connecticut Florida 1988
#> 14455 Oregon Utah 1988
#> 14456 Indiana Louisiana 1988
#> 14457 Colorado New Hampshire 1988
#> 14458 Kentucky Idaho 1988
#> 14459 Nevada Hawaii 1988
#> 14460 Kentucky Washington 1988
#> 14461 Oregon Texas 1988
#> 14462 Minnesota Oregon 1988
#> 14463 California Kentucky 1988
#> 14464 South Dakota South Carolina 1988
#> 14465 Florida Michigan 1988
#> 14466 Connecticut Oregon 1988
#> 14467 Oregon Iowa 1988
#> 14468 Maine Florida 1988
#> 14469 Oklahoma Georgia 1988
#> 14470 Texas New Mexico 1988
#> 14471 Alaska Connecticut 1988
#> 14472 New Hampshire Vermont 1988
#> 14473 Missouri Wisconsin 1988
#> 14474 South Dakota Wyoming 1988
#> 14475 Utah Alaska 1988
#> 14476 Delaware Missouri 1988
#> 14477 New Jersey Wisconsin 1988
#> 14478 Vermont New Hampshire 1988
#> 14479 Iowa Nebraska 1988
#> 14480 Wisconsin Maryland 1988
#> 14481 Kentucky North Dakota 1988
#> 14482 Georgia Louisiana 1988
#> 14483 Missouri New Hampshire 1988
#> 14484 Massachusetts Georgia 1988
#> 14485 Rhode Island Arizona 1988
#> 14486 Michigan Hawaii 1988
#> 14487 Texas Oklahoma 1988
#> 14488 Michigan California 1988
#> 14489 Pennsylvania Illinois 1988
#> 14490 Louisiana Idaho 1988
#> 14491 Colorado Arkansas 1988
#> 14492 Mississippi North Carolina 1988
#> 14493 Florida Indiana 1988
#> 14494 Kentucky Alabama 1988
#> 14495 Pennsylvania Wisconsin 1988
#> 14496 Kentucky Illinois 1988
#> 14497 Nevada Mississippi 1988
#> 14498 South Dakota Texas 1988
#> 14499 Minnesota Missouri 1988
#> 14500 Maryland New York 1988
#> 14501 New York Ohio 1989
#> 14502 New York Michigan 1989
#> 14503 New York Oregon 1989
#> 14504 New York Minnesota 1989
#> 14505 Massachusetts Colorado 1989
#> 14506 New York New Jersey 1989
#> 14507 New York Illinois 1989
#> 14508 New York Indiana 1989
#> 14509 Oregon Kentucky 1989
#> 14510 New York Iowa 1989
#> 14511 New York California 1989
#> 14512 New York Florida 1989
#> 14513 New York Connecticut 1989
#> 14514 New York New Hampshire 1989
#> 14515 New York Washington 1989
#> 14516 Washington Missouri 1989
#> 14517 Florida Oklahoma 1989
#> 14518 New York West Virginia 1989
#> 14519 New York Pennsylvania 1989
#> 14520 Colorado Kansas 1989
#> 14521 Florida Georgia 1989
#> 14522 Oregon South Dakota 1989
#> 14523 New York Maine 1989
#> 14524 New York Rhode Island 1989
#> 14525 Florida Virginia 1989
#> 14526 New York Maryland 1989
#> 14527 Florida Louisiana 1989
#> 14528 Florida South Carolina 1989
#> 14529 Florida Mississippi 1989
#> 14530 New York Idaho 1989
#> 14531 New York Nebraska 1989
#> 14532 New York Wisconsin 1989
#> 14533 New York Texas 1989
#> 14534 Oregon Alaska 1989
#> 14535 New York Vermont 1989
#> 14536 New York North Carolina 1989
#> 14537 Oregon Wyoming 1989
#> 14538 Rhode Island Delaware 1989
#> 14539 Florida Arizona 1989
#> 14540 New York New Mexico 1989
#> 14541 Delaware Montana 1989
#> 14542 New York Hawaii 1989
#> 14543 California Arkansas 1989
#> 14544 Colorado North Dakota 1989
#> 14545 New York Massachusetts 1989
#> 14546 New York Nevada 1989
#> 14547 Minnesota Alabama 1989
#> 14548 New York Tennessee 1989
#> 14549 Connecticut New York 1989
#> 14550 Florida Utah 1989
#> 14551 California Oregon 1989
#> 14552 Idaho Colorado 1989
#> 14553 New York Oklahoma 1989
#> 14554 California Washington 1989
#> 14555 Colorado Ohio 1989
#> 14556 Colorado Minnesota 1989
#> 14557 Idaho Delaware 1989
#> 14558 Oregon Maine 1989
#> 14559 California Florida 1989
#> 14560 Florida Kentucky 1989
#> 14561 Connecticut Virginia 1989
#> 14562 Minnesota New Jersey 1989
#> 14563 New Jersey Rhode Island 1989
#> 14564 Illinois North Carolina 1989
#> 14565 Delaware North Dakota 1989
#> 14566 Michigan Kansas 1989
#> 14567 Minnesota Wisconsin 1989
#> 14568 California South Carolina 1989
#> 14569 Minnesota Iowa 1989
#> 14570 California Georgia 1989
#> 14571 Rhode Island Indiana 1989
#> 14572 Montana New Mexico 1989
#> 14573 Illinois Massachusetts 1989
#> 14574 Kentucky Arkansas 1989
#> 14575 Oregon Arizona 1989
#> 14576 Florida Missouri 1989
#> 14577 California New York 1989
#> 14578 Colorado Louisiana 1989
#> 14579 Idaho Nevada 1989
#> 14580 Colorado Maryland 1989
#> 14581 California Montana 1989
#> 14582 Florida Texas 1989
#> 14583 Rhode Island Wyoming 1989
#> 14584 Colorado Pennsylvania 1989
#> 14585 Colorado Oregon 1989
#> 14586 California Hawaii 1989
#> 14587 Colorado Illinois 1989
#> 14588 Indiana California 1989
#> 14589 Colorado Idaho 1989
#> 14590 Maryland Delaware 1989
#> 14591 Montana Nebraska 1989
#> 14592 Rhode Island Connecticut 1989
#> 14593 Idaho South Dakota 1989
#> 14594 Connecticut New Hampshire 1989
#> 14595 Minnesota Mississippi 1989
#> 14596 North Dakota Utah 1989
#> 14597 Montana Washington 1989
#> 14598 Illinois Vermont 1989
#> 14599 Illinois Tennessee 1989
#> 14600 Maryland Indiana 1989
#> 14601 Alabama Florida 1989
#> 14602 New York Alabama 1989
#> 14603 Maine Iowa 1989
#> 14604 Connecticut Maryland 1989
#> 14605 Florida Colorado 1989
#> 14606 California Massachusetts 1989
#> 14607 Oregon Rhode Island 1989
#> 14608 Minnesota Kansas 1989
#> 14609 Minnesota West Virginia 1989
#> 14610 Connecticut Michigan 1989
#> 14611 Massachusetts New York 1989
#> 14612 California New Jersey 1989
#> 14613 New York Montana 1989
#> 14614 Florida Arkansas 1989
#> 14615 Colorado Wisconsin 1989
#> 14616 South Dakota North Carolina 1989
#> 14617 New Jersey Alaska 1989
#> 14618 Oregon Vermont 1989
#> 14619 Montana New Hampshire 1989
#> 14620 Rhode Island Maine 1989
#> 14621 Nevada Idaho 1989
#> 14622 Minnesota Oklahoma 1989
#> 14623 Indiana South Dakota 1989
#> 14624 Maine Nevada 1989
#> 14625 Kansas Virginia 1989
#> 14626 Virginia Georgia 1989
#> 14627 Oregon Connecticut 1989
#> 14628 California North Dakota 1989
#> 14629 Maine South Carolina 1989
#> 14630 California Texas 1989
#> 14631 Arkansas Alabama 1989
#> 14632 Illinois Pennsylvania 1989
#> 14633 Oregon Minnesota 1989
#> 14634 Maryland Illinois 1989
#> 14635 Utah Wyoming 1989
#> 14636 Wisconsin New Mexico 1989
#> 14637 Idaho Utah 1989
#> 14638 Wisconsin California 1989
#> 14639 Arkansas Indiana 1989
#> 14640 Louisiana Ohio 1989
#> 14641 Hawaii Oregon 1989
#> 14642 California Minnesota 1989
#> 14643 Tennessee Florida 1989
#> 14644 Alaska New York 1989
#> 14645 Oregon Louisiana 1989
#> 14646 Illinois Minnesota 1989
#> 14647 Florida Nebraska 1989
#> 14648 Michigan Arizona 1989
#> 14649 Colorado California 1989
#> 14650 California North Carolina 1989
#> 14651 Arkansas Mississippi 1989
#> 14652 Rhode Island Missouri 1989
#> 14653 Delaware Iowa 1989
#> 14654 Rhode Island Kentucky 1989
#> 14655 Rhode Island Idaho 1989
#> 14656 Montana Alaska 1989
#> 14657 Colorado Massachusetts 1989
#> 14658 Illinois Hawaii 1989
#> 14659 South Dakota Tennessee 1989
#> 14660 New Jersey Washington 1989
#> 14661 California New Mexico 1989
#> 14662 New Jersey Virginia 1989
#> 14663 Arkansas Kansas 1989
#> 14664 California Rhode Island 1989
#> 14665 Oregon Michigan 1989
#> 14666 Florida Connecticut 1989
#> 14667 New York North Dakota 1989
#> 14668 New Jersey Texas 1989
#> 14669 Indiana Wisconsin 1989
#> 14670 Connecticut New Jersey 1989
#> 14671 Michigan Florida 1989
#> 14672 Michigan Alabama 1989
#> 14673 Oregon Delaware 1989
#> 14674 California Nebraska 1989
#> 14675 Washington Colorado 1989
#> 14676 Michigan West Virginia 1989
#> 14677 Michigan Montana 1989
#> 14678 Wisconsin South Carolina 1989
#> 14679 Maine Oregon 1989
#> 14680 Michigan Illinois 1989
#> 14681 Connecticut Maine 1989
#> 14682 Florida Nevada 1989
#> 14683 California Ohio 1989
#> 14684 Wisconsin Rhode Island 1989
#> 14685 West Virginia Georgia 1989
#> 14686 Kentucky Pennsylvania 1989
#> 14687 Arkansas Illinois 1989
#> 14688 Iowa Arkansas 1989
#> 14689 Iowa Massachusetts 1989
#> 14690 Illinois New Hampshire 1989
#> 14691 Pennsylvania New York 1989
#> 14692 North Carolina Minnesota 1989
#> 14693 Michigan South Dakota 1989
#> 14694 Iowa Montana 1989
#> 14695 Rhode Island Washington 1989
#> 14696 Iowa North Carolina 1989
#> 14697 Kansas Missouri 1989
#> 14698 Maryland Michigan 1989
#> 14699 Minnesota Delaware 1989
#> 14700 Michigan Indiana 1989
#> 14701 Minnesota California 1989
#> 14702 Indiana New Jersey 1989
#> 14703 Washington Connecticut 1989
#> 14704 Minnesota Maine 1989
#> 14705 Kentucky Tennessee 1989
#> 14706 Minnesota Hawaii 1989
#> 14707 Rhode Island New Mexico 1989
#> 14708 Florida Maryland 1989
#> 14709 Georgia Mississippi 1989
#> 14710 Kentucky New York 1989
#> 14711 Alabama North Dakota 1989
#> 14712 Pennsylvania Utah 1989
#> 14713 New Mexico Iowa 1989
#> 14714 California Wisconsin 1989
#> 14715 Illinois Ohio 1989
#> 14716 New Jersey Louisiana 1989
#> 14717 South Carolina Idaho 1989
#> 14718 Washington Pennsylvania 1989
#> 14719 New Jersey Massachusetts 1989
#> 14720 Louisiana Rhode Island 1989
#> 14721 Delaware Oklahoma 1989
#> 14722 Connecticut Colorado 1989
#> 14723 Louisiana Montana 1989
#> 14724 Minnesota Arizona 1989
#> 14725 Minnesota South Carolina 1989
#> 14726 Tennessee Arkansas 1989
#> 14727 Nevada Nebraska 1989
#> 14728 Kentucky Virginia 1989
#> 14729 Maine New Hampshire 1989
#> 14730 New Jersey Oregon 1989
#> 14731 Oregon North Carolina 1989
#> 14732 Montana Maryland 1989
#> 14733 Michigan Missouri 1989
#> 14734 Massachusetts Florida 1989
#> 14735 Hawaii Washington 1989
#> 14736 Iowa Colorado 1989
#> 14737 Massachusetts Kansas 1989
#> 14738 Connecticut Louisiana 1989
#> 14739 North Dakota New Mexico 1989
#> 14740 Indiana Kentucky 1989
#> 14741 Kentucky Georgia 1989
#> 14742 Montana Colorado 1989
#> 14743 California Indiana 1989
#> 14744 Hawaii Alaska 1989
#> 14745 New York Delaware 1989
#> 14746 Delaware Nevada 1989
#> 14747 Kentucky Idaho 1989
#> 14748 Idaho Wyoming 1989
#> 14749 New Jersey Pennsylvania 1989
#> 14750 Massachusetts Connecticut 1989
#> 14751 Louisiana Virginia 1989
#> 14752 Idaho New York 1989
#> 14753 Virginia Iowa 1989
#> 14754 Iowa Tennessee 1989
#> 14755 Mississippi Arizona 1989
#> 14756 Montana Michigan 1989
#> 14757 Kentucky Louisiana 1989
#> 14758 Oregon Ohio 1989
#> 14759 Pennsylvania Rhode Island 1989
#> 14760 Hawaii Florida 1989
#> 14761 Oregon Wisconsin 1989
#> 14762 Arkansas California 1989
#> 14763 Connecticut Vermont 1989
#> 14764 Louisiana Kansas 1989
#> 14765 Hawaii West Virginia 1989
#> 14766 Delaware Massachusetts 1989
#> 14767 Maine North Dakota 1989
#> 14768 Rhode Island Maryland 1989
#> 14769 Georgia Connecticut 1989
#> 14770 Idaho Missouri 1989
#> 14771 Iowa Wisconsin 1989
#> 14772 Kansas Hawaii 1989
#> 14773 Iowa Oklahoma 1989
#> 14774 Virginia Kentucky 1989
#> 14775 New Hampshire Hawaii 1989
#> 14776 Ohio Alabama 1989
#> 14777 Nevada Montana 1989
#> 14778 Delaware Arkansas 1989
#> 14779 Florida New Jersey 1989
#> 14780 Wyoming Arizona 1989
#> 14781 Kentucky Utah 1989
#> 14782 Connecticut Minnesota 1989
#> 14783 Illinois Texas 1989
#> 14784 North Dakota Nebraska 1989
#> 14785 Alaska Nevada 1989
#> 14786 Mississippi Maine 1989
#> 14787 Louisiana Alaska 1989
#> 14788 Washington New York 1989
#> 14789 Wisconsin Michigan 1989
#> 14790 Maryland California 1989
#> 14791 Connecticut Massachusetts 1989
#> 14792 Minnesota Washington 1989
#> 14793 Minnesota Nebraska 1989
#> 14794 New Jersey Utah 1989
#> 14795 Nevada Florida 1989
#> 14796 Maine Missouri 1989
#> 14797 California Illinois 1989
#> 14798 Idaho New Mexico 1989
#> 14799 Maryland Massachusetts 1989
#> 14800 Wisconsin Minnesota 1989
#> 14801 Florida Rhode Island 1989
#> 14802 Wisconsin Vermont 1989
#> 14803 Alabama Indiana 1989
#> 14804 Indiana Maine 1989
#> 14805 Wisconsin Alaska 1989
#> 14806 New Mexico Oklahoma 1989
#> 14807 Arkansas South Dakota 1989
#> 14808 South Dakota Nevada 1989
#> 14809 Washington Illinois 1989
#> 14810 Tennessee Massachusetts 1989
#> 14811 Georgia Rhode Island 1989
#> 14812 Illinois Iowa 1989
#> 14813 Kentucky Illinois 1989
#> 14814 Vermont Connecticut 1989
#> 14815 Louisiana Pennsylvania 1989
#> 14816 Pennsylvania West Virginia 1989
#> 14817 Kentucky Oregon 1989
#> 14818 Massachusetts Maine 1989
#> 14819 Arkansas Montana 1989
#> 14820 New Jersey Illinois 1989
#> 14821 Virginia California 1989
#> 14822 Tennessee Nebraska 1989
#> 14823 Rhode Island Wisconsin 1989
#> 14824 Nevada New Hampshire 1989
#> 14825 Michigan Wyoming 1989
#> 14826 Rhode Island Michigan 1989
#> 14827 Maine North Carolina 1989
#> 14828 Illinois New Jersey 1989
#> 14829 Rhode Island South Dakota 1989
#> 14830 North Carolina Maryland 1989
#> 14831 Nevada Kansas 1989
#> 14832 Idaho North Dakota 1989
#> 14833 Arizona Montana 1989
#> 14834 Nevada Georgia 1989
#> 14835 Idaho Arkansas 1989
#> 14836 Illinois Rhode Island 1989
#> 14837 Tennessee New York 1989
#> 14838 North Dakota Kentucky 1989
#> 14839 Missouri West Virginia 1989
#> 14840 Arkansas Connecticut 1989
#> 14841 Hawaii Vermont 1989
#> 14842 Florida Iowa 1989
#> 14843 Oregon Montana 1989
#> 14844 California Nevada 1989
#> 14845 Oregon Kansas 1989
#> 14846 New Jersey South Carolina 1989
#> 14847 New Jersey Hawaii 1989
#> 14848 Michigan Delaware 1989
#> 14849 Oregon Utah 1989
#> 14850 Georgia Louisiana 1989
#> 14851 North Dakota Maine 1989
#> 14852 Arkansas Colorado 1989
#> 14853 Colorado New Jersey 1989
#> 14854 California Alaska 1989
#> 14855 Minnesota Tennessee 1989
#> 14856 Wisconsin Colorado 1989
#> 14857 Indiana Hawaii 1989
#> 14858 New Mexico Delaware 1989
#> 14859 North Dakota Virginia 1989
#> 14860 Iowa South Carolina 1989
#> 14861 Kansas Wisconsin 1989
#> 14862 Wisconsin North Carolina 1989
#> 14863 Pennsylvania Indiana 1989
#> 14864 Hawaii North Dakota 1989
#> 14865 Kentucky Minnesota 1989
#> 14866 New Mexico Alabama 1989
#> 14867 Utah Maryland 1989
#> 14868 New Mexico Oregon 1989
#> 14869 Illinois Florida 1989
#> 14870 Delaware Missouri 1989
#> 14871 Florida Michigan 1989
#> 14872 Indiana Virginia 1989
#> 14873 Colorado Washington 1989
#> 14874 Wisconsin Arizona 1989
#> 14875 Arizona Arkansas 1989
#> 14876 Pennsylvania Oklahoma 1989
#> 14877 Louisiana New Mexico 1989
#> 14878 Minnesota Indiana 1989
#> 14879 Michigan California 1989
#> 14880 Indiana Montana 1989
#> 14881 Missouri Kansas 1989
#> 14882 Maine Connecticut 1989
#> 14883 Washington Wyoming 1989
#> 14884 New Hampshire New York 1989
#> 14885 Minnesota Texas 1989
#> 14886 South Carolina South Dakota 1989
#> 14887 Colorado Arizona 1989
#> 14888 Oregon Alabama 1989
#> 14889 Louisiana Oklahoma 1989
#> 14890 Minnesota Colorado 1989
#> 14891 Illinois Maryland 1989
#> 14892 Hawaii Oklahoma 1989
#> 14893 New Jersey Idaho 1989
#> 14894 New York Wyoming 1989
#> 14895 Georgia Tennessee 1989
#> 14896 Montana Ohio 1989
#> 14897 Illinois Georgia 1989
#> 14898 Wisconsin Massachusetts 1989
#> 14899 Arizona Alabama 1989
#> 14900 Wisconsin Nevada 1989
#> 14901 Louisiana Missouri 1989
#> 14902 Illinois Idaho 1989
#> 14903 Wisconsin Idaho 1989
#> 14904 Delaware Wyoming 1989
#> 14905 Colorado Tennessee 1989
#> 14906 Oklahoma Indiana 1989
#> 14907 West Virginia Nevada 1989
#> 14908 West Virginia Florida 1989
#> 14909 Iowa Nebraska 1989
#> 14910 Florida North Carolina 1989
#> 14911 Connecticut North Carolina 1989
#> 14912 Nebraska Louisiana 1989
#> 14913 Pennsylvania Minnesota 1989
#> 14914 Connecticut Delaware 1989
#> 14915 Minnesota Arkansas 1989
#> 14916 Connecticut Wyoming 1989
#> 14917 Nevada New Mexico 1989
#> 14918 Washington New Mexico 1989
#> 14919 Iowa New Jersey 1989
#> 14920 Tennessee Montana 1989
#> 14921 North Dakota California 1989
#> 14922 Rhode Island Ohio 1989
#> 14923 Oregon Idaho 1989
#> 14924 Nevada West Virginia 1989
#> 14925 Vermont Rhode Island 1989
#> 14926 Vermont New York 1989
#> 14927 Kentucky Michigan 1989
#> 14928 New Jersey Delaware 1989
#> 14929 Maryland Missouri 1989
#> 14930 Texas Massachusetts 1989
#> 14931 Kansas Vermont 1989
#> 14932 Idaho Ohio 1989
#> 14933 Alabama Maryland 1989
#> 14934 Ohio Tennessee 1989
#> 14935 Missouri Wisconsin 1989
#> 14936 Maine Wisconsin 1989
#> 14937 South Carolina New York 1989
#> 14938 Pennsylvania Montana 1989
#> 14939 Mississippi California 1989
#> 14940 Tennessee Georgia 1989
#> 14941 Montana Oregon 1989
#> 14942 Illinois Michigan 1989
#> 14943 North Carolina Colorado 1989
#> 14944 Maine Texas 1989
#> 14945 Kentucky Massachusetts 1989
#> 14946 Hawaii Alabama 1989
#> 14947 South Dakota Wisconsin 1989
#> 14948 Delaware Rhode Island 1989
#> 14949 California Connecticut 1989
#> 14950 New York Kentucky 1989
#> 14951 Minnesota New Mexico 1989
#> 14952 Idaho Iowa 1989
#> 14953 Hawaii Delaware 1989
#> 14954 Maine Florida 1989
#> 14955 Wisconsin Illinois 1989
#> 14956 Washington North Dakota 1989
#> 14957 New Mexico Mississippi 1989
#> 14958 Arkansas Delaware 1989
#> 14959 Hawaii Arkansas 1989
#> 14960 Mississippi Pennsylvania 1989
#> 14961 Wisconsin Missouri 1989
#> 14962 Nevada Hawaii 1989
#> 14963 Georgia Hawaii 1989
#> 14964 Colorado New Hampshire 1989
#> 14965 Kentucky Washington 1989
#> 14966 Ohio Louisiana 1989
#> 14967 Oregon Texas 1989
#> 14968 California Kentucky 1989
#> 14969 Arizona South Dakota 1989
#> 14970 South Dakota South Carolina 1989
#> 14971 Connecticut Oregon 1989
#> 14972 Texas Oklahoma 1989
#> 14973 Connecticut Florida 1989
#> 14974 Wyoming Louisiana 1989
#> 14975 Oregon Iowa 1989
#> 14976 Louisiana Mississippi 1989
#> 14977 Wisconsin Kansas 1989
#> 14978 Alabama South Carolina 1989
#> 14979 Wisconsin Maryland 1989
#> 14980 Virginia Indiana 1989
#> 14981 California Vermont 1989
#> 14982 New Hampshire Florida 1989
#> 14983 Alabama Georgia 1989
#> 14984 Illinois Alaska 1989
#> 14985 Alaska Connecticut 1989
#> 14986 Louisiana Idaho 1989
#> 14987 South Dakota Kentucky 1989
#> 14988 Pennsylvania Virginia 1989
#> 14989 Pennsylvania Illinois 1989
#> 14990 North Dakota Wyoming 1989
#> 14991 Vermont New Hampshire 1989
#> 14992 Iowa Wyoming 1989
#> 14993 Hawaii Tennessee 1989
#> 14994 Kentucky Alabama 1989
#> 14995 Kentucky North Dakota 1989
#> 14996 Missouri New Hampshire 1989
#> 14997 Texas New Mexico 1989
#> 14998 Iowa Kansas 1989
#> 14999 Michigan Nevada 1989
#> 15000 Rhode Island Illinois 1989
#> 15001 New York Minnesota 1990
#> 15002 New York Ohio 1990
#> 15003 New York Oregon 1990
#> 15004 New York Michigan 1990
#> 15005 Massachusetts Colorado 1990
#> 15006 New York Iowa 1990
#> 15007 New York Illinois 1990
#> 15008 New York Florida 1990
#> 15009 New York New Jersey 1990
#> 15010 Massachusetts Indiana 1990
#> 15011 Oregon Kentucky 1990
#> 15012 Florida Georgia 1990
#> 15013 New York Washington 1990
#> 15014 Washington Missouri 1990
#> 15015 New York Connecticut 1990
#> 15016 New York West Virginia 1990
#> 15017 New York California 1990
#> 15018 Florida Louisiana 1990
#> 15019 Colorado Kansas 1990
#> 15020 Florida Oklahoma 1990
#> 15021 Oregon South Dakota 1990
#> 15022 Florida South Carolina 1990
#> 15023 Massachusetts Rhode Island 1990
#> 15024 Florida Mississippi 1990
#> 15025 Florida Texas 1990
#> 15026 New York Pennsylvania 1990
#> 15027 New York Vermont 1990
#> 15028 New York New Hampshire 1990
#> 15029 Oregon Alaska 1990
#> 15030 Florida Virginia 1990
#> 15031 New York Nebraska 1990
#> 15032 New York Maine 1990
#> 15033 New York Tennessee 1990
#> 15034 New York Maryland 1990
#> 15035 New York Idaho 1990
#> 15036 Oregon Montana 1990
#> 15037 New York Wisconsin 1990
#> 15038 New York North Carolina 1990
#> 15039 Florida Arizona 1990
#> 15040 California North Dakota 1990
#> 15041 Oregon New Mexico 1990
#> 15042 New York Delaware 1990
#> 15043 Minnesota Alabama 1990
#> 15044 New York Hawaii 1990
#> 15045 Florida Arkansas 1990
#> 15046 New York Nevada 1990
#> 15047 Oregon Wyoming 1990
#> 15048 Florida Utah 1990
#> 15049 New York Massachusetts 1990
#> 15050 Connecticut New York 1990
#> 15051 California Oregon 1990
#> 15052 California Florida 1990
#> 15053 Colorado Minnesota 1990
#> 15054 Idaho Colorado 1990
#> 15055 California Washington 1990
#> 15056 Colorado Ohio 1990
#> 15057 New York Oklahoma 1990
#> 15058 Oregon Maine 1990
#> 15059 Delaware Indiana 1990
#> 15060 Florida Kentucky 1990
#> 15061 New York New Mexico 1990
#> 15062 Minnesota New Jersey 1990
#> 15063 Illinois North Carolina 1990
#> 15064 California Arkansas 1990
#> 15065 Minnesota Virginia 1990
#> 15066 Illinois Delaware 1990
#> 15067 Delaware Montana 1990
#> 15068 California South Carolina 1990
#> 15069 Delaware North Dakota 1990
#> 15070 Minnesota Iowa 1990
#> 15071 Minnesota Wisconsin 1990
#> 15072 Florida Missouri 1990
#> 15073 Illinois Massachusetts 1990
#> 15074 California Hawaii 1990
#> 15075 Florida Nebraska 1990
#> 15076 Oregon Rhode Island 1990
#> 15077 Illinois Texas 1990
#> 15078 Florida Nevada 1990
#> 15079 Washington Kansas 1990
#> 15080 Colorado Maryland 1990
#> 15081 Colorado Louisiana 1990
#> 15082 Illinois Pennsylvania 1990
#> 15083 California Georgia 1990
#> 15084 California New York 1990
#> 15085 Oregon Arizona 1990
#> 15086 Indiana California 1990
#> 15087 Idaho Wyoming 1990
#> 15088 Idaho South Dakota 1990
#> 15089 Florida Connecticut 1990
#> 15090 Illinois New Hampshire 1990
#> 15091 Idaho Utah 1990
#> 15092 Colorado Oregon 1990
#> 15093 Colorado Illinois 1990
#> 15094 Illinois Tennessee 1990
#> 15095 Florida Idaho 1990
#> 15096 Idaho Delaware 1990
#> 15097 Minnesota Mississippi 1990
#> 15098 Illinois Vermont 1990
#> 15099 Maine Iowa 1990
#> 15100 Florida Alabama 1990
#> 15101 Montana Washington 1990
#> 15102 New York Rhode Island 1990
#> 15103 California New Jersey 1990
#> 15104 Rhode Island Maine 1990
#> 15105 Florida Colorado 1990
#> 15106 Massachusetts New York 1990
#> 15107 Hawaii Alaska 1990
#> 15108 New Jersey Michigan 1990
#> 15109 Maine West Virginia 1990
#> 15110 Kentucky Arkansas 1990
#> 15111 Massachusetts Connecticut 1990
#> 15112 California Minnesota 1990
#> 15113 Florida North Carolina 1990
#> 15114 Colorado North Dakota 1990
#> 15115 California Massachusetts 1990
#> 15116 Maryland Indiana 1990
#> 15117 Virginia Georgia 1990
#> 15118 Michigan Florida 1990
#> 15119 Georgia New Mexico 1990
#> 15120 Michigan Montana 1990
#> 15121 Oregon Vermont 1990
#> 15122 California Nevada 1990
#> 15123 Rhode Island Wisconsin 1990
#> 15124 Rhode Island Maryland 1990
#> 15125 New York Texas 1990
#> 15126 Maryland Virginia 1990
#> 15127 Indiana South Dakota 1990
#> 15128 Minnesota Oklahoma 1990
#> 15129 Oregon Idaho 1990
#> 15130 Massachusetts Hawaii 1990
#> 15131 Nevada Nebraska 1990
#> 15132 Maine South Carolina 1990
#> 15133 Illinois Minnesota 1990
#> 15134 Oregon Pennsylvania 1990
#> 15135 Wisconsin California 1990
#> 15136 California Illinois 1990
#> 15137 California Delaware 1990
#> 15138 Florida Ohio 1990
#> 15139 Oregon Wisconsin 1990
#> 15140 California Montana 1990
#> 15141 North Dakota Utah 1990
#> 15142 Arkansas Kansas 1990
#> 15143 New York Kansas 1990
#> 15144 Maryland Illinois 1990
#> 15145 Oregon Minnesota 1990
#> 15146 Connecticut New Hampshire 1990
#> 15147 Oregon Michigan 1990
#> 15148 Rhode Island Wyoming 1990
#> 15149 Rhode Island Washington 1990
#> 15150 New Mexico Iowa 1990
#> 15151 Hawaii Oregon 1990
#> 15152 Colorado Massachusetts 1990
#> 15153 Alaska New York 1990
#> 15154 California Alaska 1990
#> 15155 Florida Indiana 1990
#> 15156 Kentucky Virginia 1990
#> 15157 California Rhode Island 1990
#> 15158 Minnesota Arkansas 1990
#> 15159 Iowa Nevada 1990
#> 15160 Florida Tennessee 1990
#> 15161 Hawaii Connecticut 1990
#> 15162 Oregon Louisiana 1990
#> 15163 Michigan Arizona 1990
#> 15164 Colorado New Jersey 1990
#> 15165 Colorado California 1990
#> 15166 Maine Florida 1990
#> 15167 Minnesota Oregon 1990
#> 15168 California Nebraska 1990
#> 15169 California North Carolina 1990
#> 15170 Arkansas Alabama 1990
#> 15171 Florida Maryland 1990
#> 15172 New York Missouri 1990
#> 15173 North Dakota New Mexico 1990
#> 15174 Hawaii North Dakota 1990
#> 15175 Indiana Kentucky 1990
#> 15176 Louisiana Mississippi 1990
#> 15177 Minnesota Delaware 1990
#> 15178 California Wisconsin 1990
#> 15179 New York Utah 1990
#> 15180 Montana New Hampshire 1990
#> 15181 Pennsylvania Ohio 1990
#> 15182 Florida Pennsylvania 1990
#> 15183 Wisconsin South Carolina 1990
#> 15184 Washington Colorado 1990
#> 15185 Michigan West Virginia 1990
#> 15186 Minnesota Nebraska 1990
#> 15187 New Jersey Washington 1990
#> 15188 New Jersey Rhode Island 1990
#> 15189 California Texas 1990
#> 15190 Arkansas Montana 1990
#> 15191 Minnesota Maine 1990
#> 15192 Colorado Hawaii 1990
#> 15193 West Virginia Georgia 1990
#> 15194 Oregon Delaware 1990
#> 15195 Michigan Alabama 1990
#> 15196 Washington Indiana 1990
#> 15197 Iowa Massachusetts 1990
#> 15198 Michigan South Dakota 1990
#> 15199 Minnesota Kansas 1990
#> 15200 Pennsylvania New York 1990
#> 15201 North Carolina Minnesota 1990
#> 15202 Rhode Island Idaho 1990
#> 15203 Vermont Connecticut 1990
#> 15204 Utah Wyoming 1990
#> 15205 Michigan Indiana 1990
#> 15206 Michigan Illinois 1990
#> 15207 Tennessee Florida 1990
#> 15208 Montana Maryland 1990
#> 15209 Washington Alaska 1990
#> 15210 Wisconsin North Carolina 1990
#> 15211 Minnesota California 1990
#> 15212 Maine Missouri 1990
#> 15213 Delaware Iowa 1990
#> 15214 New York Alabama 1990
#> 15215 Alaska North Dakota 1990
#> 15216 Montana Tennessee 1990
#> 15217 Kentucky New York 1990
#> 15218 Connecticut Louisiana 1990
#> 15219 North Dakota Kentucky 1990
#> 15220 Illinois Michigan 1990
#> 15221 New Jersey Louisiana 1990
#> 15222 Oregon Ohio 1990
#> 15223 Indiana New Jersey 1990
#> 15224 New Jersey Massachusetts 1990
#> 15225 Delaware Nevada 1990
#> 15226 Delaware Oklahoma 1990
#> 15227 Connecticut Colorado 1990
#> 15228 Nevada Idaho 1990
#> 15229 Minnesota West Virginia 1990
#> 15230 Wisconsin New Mexico 1990
#> 15231 Louisiana Missouri 1990
#> 15232 Minnesota Arizona 1990
#> 15233 California Virginia 1990
#> 15234 Minnesota South Carolina 1990
#> 15235 Washington Hawaii 1990
#> 15236 Maine New Hampshire 1990
#> 15237 Virginia Oregon 1990
#> 15238 Alabama Florida 1990
#> 15239 Rhode Island Connecticut 1990
#> 15240 Kansas Arkansas 1990
#> 15241 Wisconsin Rhode Island 1990
#> 15242 Montana Michigan 1990
#> 15243 Maine North Carolina 1990
#> 15244 Idaho Missouri 1990
#> 15245 Hawaii Florida 1990
#> 15246 Hawaii Washington 1990
#> 15247 Washington Montana 1990
#> 15248 Connecticut Maine 1990
#> 15249 Montana Colorado 1990
#> 15250 Kentucky Georgia 1990
#> 15251 New Jersey Wisconsin 1990
#> 15252 Connecticut New Jersey 1990
#> 15253 Wisconsin Vermont 1990
#> 15254 Wisconsin Maryland 1990
#> 15255 Connecticut Virginia 1990
#> 15256 Colorado Idaho 1990
#> 15257 Virginia Iowa 1990
#> 15258 Missouri Kansas 1990
#> 15259 Washington Illinois 1990
#> 15260 Colorado Tennessee 1990
#> 15261 New Jersey Pennsylvania 1990
#> 15262 Pennsylvania Rhode Island 1990
#> 15263 Connecticut Minnesota 1990
#> 15264 Florida Washington 1990
#> 15265 Louisiana Alaska 1990
#> 15266 Illinois Ohio 1990
#> 15267 Oregon Connecticut 1990
#> 15268 Kentucky Louisiana 1990
#> 15269 Montana New Mexico 1990
#> 15270 Arkansas California 1990
#> 15271 Colorado Texas 1990
#> 15272 Oregon West Virginia 1990
#> 15273 Maine Vermont 1990
#> 15274 Tennessee Arkansas 1990
#> 15275 Massachusetts Oregon 1990
#> 15276 Oregon Kansas 1990
#> 15277 Wisconsin Massachusetts 1990
#> 15278 Delaware Massachusetts 1990
#> 15279 Iowa Minnesota 1990
#> 15280 Louisiana Nevada 1990
#> 15281 Nevada Montana 1990
#> 15282 South Carolina Illinois 1990
#> 15283 Wyoming Arizona 1990
#> 15284 Massachusetts Florida 1990
#> 15285 Kentucky Idaho 1990
#> 15286 Iowa Colorado 1990
#> 15287 Arkansas Mississippi 1990
#> 15288 Arkansas Connecticut 1990
#> 15289 New York Wyoming 1990
#> 15290 Florida Massachusetts 1990
#> 15291 Illinois Missouri 1990
#> 15292 Indiana Montana 1990
#> 15293 Massachusetts North Dakota 1990
#> 15294 Louisiana Kansas 1990
#> 15295 Massachusetts Kentucky 1990
#> 15296 Louisiana Alabama 1990
#> 15297 Minnesota Indiana 1990
#> 15298 Massachusetts Pennsylvania 1990
#> 15299 Alabama North Dakota 1990
#> 15300 New Mexico Delaware 1990
#> 15301 Oregon California 1990
#> 15302 Kansas Wisconsin 1990
#> 15303 Alabama Maine 1990
#> 15304 Illinois Nebraska 1990
#> 15305 Idaho New York 1990
#> 15306 Washington New York 1990
#> 15307 Nevada Hawaii 1990
#> 15308 Connecticut Massachusetts 1990
#> 15309 Rhode Island New Mexico 1990
#> 15310 Louisiana Illinois 1990
#> 15311 Iowa North Carolina 1990
#> 15312 Minnesota Washington 1990
#> 15313 Arizona Rhode Island 1990
#> 15314 Texas Kentucky 1990
#> 15315 Georgia Mississippi 1990
#> 15316 New Mexico Oklahoma 1990
#> 15317 Mississippi Arizona 1990
#> 15318 Washington Wyoming 1990
#> 15319 Wisconsin Pennsylvania 1990
#> 15320 New Hampshire Indiana 1990
#> 15321 Georgia Rhode Island 1990
#> 15322 Illinois Iowa 1990
#> 15323 Michigan Nevada 1990
#> 15324 Kentucky Tennessee 1990
#> 15325 Virginia California 1990
#> 15326 Massachusetts Maine 1990
#> 15327 Maryland Michigan 1990
#> 15328 Nevada New Hampshire 1990
#> 15329 Illinois New Jersey 1990
#> 15330 Idaho Florida 1990
#> 15331 Hawaii Idaho 1990
#> 15332 Illinois California 1990
#> 15333 Arizona Oregon 1990
#> 15334 Oklahoma Missouri 1990
#> 15335 Illinois Maryland 1990
#> 15336 Vermont Rhode Island 1990
#> 15337 Wisconsin Michigan 1990
#> 15338 Delaware Arkansas 1990
#> 15339 Iowa Oklahoma 1990
#> 15340 Nevada Georgia 1990
#> 15341 Maine New Mexico 1990
#> 15342 Arkansas Delaware 1990
#> 15343 Kentucky Pennsylvania 1990
#> 15344 Illinois Virginia 1990
#> 15345 Montana Hawaii 1990
#> 15346 Florida Iowa 1990
#> 15347 New Jersey South Carolina 1990
#> 15348 New Jersey Iowa 1990
#> 15349 Michigan Delaware 1990
#> 15350 Hawaii Arkansas 1990
#> 15351 California Connecticut 1990
#> 15352 Kentucky Alabama 1990
#> 15353 Colorado New Hampshire 1990
#> 15354 South Dakota Nevada 1990
#> 15355 Kentucky Utah 1990
#> 15356 California Ohio 1990
#> 15357 Oregon Texas 1990
#> 15358 Arkansas Colorado 1990
#> 15359 South Carolina Idaho 1990
#> 15360 Florida New Jersey 1990
#> 15361 North Dakota Virginia 1990
#> 15362 Washington South Dakota 1990
#> 15363 Wyoming Maine 1990
#> 15364 Minnesota Tennessee 1990
#> 15365 Iowa South Carolina 1990
#> 15366 New Mexico Alabama 1990
#> 15367 Connecticut Oregon 1990
#> 15368 Arizona Arkansas 1990
#> 15369 Oregon North Carolina 1990
#> 15370 Colorado Utah 1990
#> 15371 Maryland Maine 1990
#> 15372 Florida Michigan 1990
#> 15373 Tennessee Montana 1990
#> 15374 Kentucky Maryland 1990
#> 15375 Indiana Wisconsin 1990
#> 15376 Alaska Nebraska 1990
#> 15377 Wisconsin Minnesota 1990
#> 15378 Wisconsin Arizona 1990
#> 15379 Wisconsin Indiana 1990
#> 15380 Wisconsin Alaska 1990
#> 15381 Alaska Nevada 1990
#> 15382 New Jersey Alaska 1990
#> 15383 Colorado Arkansas 1990
#> 15384 Maryland Massachusetts 1990
#> 15385 Colorado Vermont 1990
#> 15386 Hawaii Oklahoma 1990
#> 15387 Utah Maryland 1990
#> 15388 Michigan Wyoming 1990
#> 15389 South Dakota North Carolina 1990
#> 15390 New Hampshire New York 1990
#> 15391 New Jersey Illinois 1990
#> 15392 Minnesota Florida 1990
#> 15393 Florida South Dakota 1990
#> 15394 Montana Nebraska 1990
#> 15395 Kentucky Arizona 1990
#> 15396 Illinois West Virginia 1990
#> 15397 Maine Nebraska 1990
#> 15398 Louisiana New Mexico 1990
#> 15399 Louisiana Oklahoma 1990
#> 15400 Minnesota Colorado 1990
#> 15401 Nebraska Louisiana 1990
#> 15402 Oklahoma Indiana 1990
#> 15403 Hawaii Vermont 1990
#> 15404 Connecticut Hawaii 1990
#> 15405 New Jersey Utah 1990
#> 15406 Oregon Alabama 1990
#> 15407 North Dakota Rhode Island 1990
#> 15408 Kentucky Alaska 1990
#> 15409 Kentucky Illinois 1990
#> 15410 Illinois Georgia 1990
#> 15411 Washington North Dakota 1990
#> 15412 Minnesota New Mexico 1990
#> 15413 Maine Nevada 1990
#> 15414 Hawaii Montana 1990
#> 15415 South Carolina South Dakota 1990
#> 15416 Wisconsin Idaho 1990
#> 15417 Delaware Wyoming 1990
#> 15418 Arkansas Texas 1990
#> 15419 California South Dakota 1990
#> 15420 Connecticut Ohio 1990
#> 15421 Alabama Georgia 1990
#> 15422 Pennsylvania Minnesota 1990
#> 15423 Missouri Mississippi 1990
#> 15424 Kentucky Ohio 1990
#> 15425 Iowa Arkansas 1990
#> 15426 Connecticut Wyoming 1990
#> 15427 Louisiana Tennessee 1990
#> 15428 Nevada West Virginia 1990
#> 15429 Hawaii Rhode Island 1990
#> 15430 New Jersey Delaware 1990
#> 15431 Iowa New Jersey 1990
#> 15432 Kentucky Michigan 1990
#> 15433 Ohio Tennessee 1990
#> 15434 Vermont New York 1990
#> 15435 Illinois Maine 1990
#> 15436 Hawaii Delaware 1990
#> 15437 Louisiana Montana 1990
#> 15438 Tennessee Massachusetts 1990
#> 15439 Maine Wisconsin 1990
#> 15440 Maryland Kansas 1990
#> 15441 Wisconsin Hawaii 1990
#> 15442 Rhode Island California 1990
#> 15443 Idaho Wisconsin 1990
#> 15444 Missouri Wisconsin 1990
#> 15445 South Carolina New York 1990
#> 15446 California New Mexico 1990
#> 15447 Mississippi California 1990
#> 15448 Maine Texas 1990
#> 15449 Iowa Wisconsin 1990
#> 15450 Kansas New Mexico 1990
#> 15451 Maine Montana 1990
#> 15452 North Carolina Colorado 1990
#> 15453 New Mexico Kansas 1990
#> 15454 Kentucky Massachusetts 1990
#> 15455 Arizona Montana 1990
#> 15456 Montana California 1990
#> 15457 New York Kentucky 1990
#> 15458 Delaware Rhode Island 1990
#> 15459 Tennessee New York 1990
#> 15460 New Mexico Mississippi 1990
#> 15461 Tennessee Georgia 1990
#> 15462 Wisconsin Illinois 1990
#> 15463 Ohio Louisiana 1990
#> 15464 Indiana Oregon 1990
#> 15465 Missouri North Dakota 1990
#> 15466 Kentucky Washington 1990
#> 15467 Wisconsin Missouri 1990
#> 15468 South Carolina Wisconsin 1990
#> 15469 Georgia Louisiana 1990
#> 15470 California Kentucky 1990
#> 15471 Oregon Iowa 1990
#> 15472 North Dakota Maryland 1990
#> 15473 South Dakota South Carolina 1990
#> 15474 Missouri West Virginia 1990
#> 15475 Wyoming Oklahoma 1990
#> 15476 Oregon Utah 1990
#> 15477 Alabama Kansas 1990
#> 15478 Wisconsin Colorado 1990
#> 15479 Connecticut Florida 1990
#> 15480 Hawaii Tennessee 1990
#> 15481 Alabama South Carolina 1990
#> 15482 Wisconsin Wyoming 1990
#> 15483 Ohio Utah 1990
#> 15484 Alaska Connecticut 1990
#> 15485 Louisiana Idaho 1990
#> 15486 Pennsylvania Indiana 1990
#> 15487 Missouri Maine 1990
#> 15488 Kentucky Minnesota 1990
#> 15489 West Virginia Florida 1990
#> 15490 Arkansas Virginia 1990
#> 15491 Illinois Idaho 1990
#> 15492 Maine South Dakota 1990
#> 15493 Georgia Connecticut 1990
#> 15494 Vermont New Hampshire 1990
#> 15495 Minnesota Missouri 1990
#> 15496 Missouri New Hampshire 1990
#> 15497 South Dakota Texas 1990
#> 15498 South Dakota Wyoming 1990
#> 15499 Wisconsin Texas 1990
#> 15500 Idaho Vermont 1990
#> 15501 New York Minnesota 1991
#> 15502 New York Oregon 1991
#> 15503 New York Michigan 1991
#> 15504 New York Ohio 1991
#> 15505 Minnesota Iowa 1991
#> 15506 New York New Jersey 1991
#> 15507 Oregon Kentucky 1991
#> 15508 Massachusetts Colorado 1991
#> 15509 Florida Georgia 1991
#> 15510 Oregon South Dakota 1991
#> 15511 New York Indiana 1991
#> 15512 Florida Mississippi 1991
#> 15513 New York Illinois 1991
#> 15514 New York Connecticut 1991
#> 15515 California Florida 1991
#> 15516 Florida Louisiana 1991
#> 15517 New York Oklahoma 1991
#> 15518 New York Washington 1991
#> 15519 Minnesota Virginia 1991
#> 15520 Washington Missouri 1991
#> 15521 New York California 1991
#> 15522 Massachusetts Rhode Island 1991
#> 15523 Colorado Kansas 1991
#> 15524 New York West Virginia 1991
#> 15525 New York Vermont 1991
#> 15526 New York Maryland 1991
#> 15527 New York New Hampshire 1991
#> 15528 Florida South Carolina 1991
#> 15529 Florida Arizona 1991
#> 15530 New York Tennessee 1991
#> 15531 Oregon Alaska 1991
#> 15532 Florida Texas 1991
#> 15533 New York Nebraska 1991
#> 15534 New York Idaho 1991
#> 15535 New York Pennsylvania 1991
#> 15536 New York Maine 1991
#> 15537 Oregon Montana 1991
#> 15538 California Wisconsin 1991
#> 15539 Florida Utah 1991
#> 15540 Minnesota Alabama 1991
#> 15541 Colorado North Dakota 1991
#> 15542 New York North Carolina 1991
#> 15543 Oregon New Mexico 1991
#> 15544 Rhode Island Delaware 1991
#> 15545 New York Hawaii 1991
#> 15546 Florida Arkansas 1991
#> 15547 New York Nevada 1991
#> 15548 Oregon Wyoming 1991
#> 15549 New York Massachusetts 1991
#> 15550 Oregon New York 1991
#> 15551 California Oregon 1991
#> 15552 Colorado Ohio 1991
#> 15553 New York Florida 1991
#> 15554 Idaho Colorado 1991
#> 15555 California Washington 1991
#> 15556 Colorado Minnesota 1991
#> 15557 Florida Oklahoma 1991
#> 15558 Oregon Maine 1991
#> 15559 Florida Kentucky 1991
#> 15560 Minnesota New Jersey 1991
#> 15561 Illinois Iowa 1991
#> 15562 Idaho Delaware 1991
#> 15563 Rhode Island Wisconsin 1991
#> 15564 Florida Virginia 1991
#> 15565 New York New Mexico 1991
#> 15566 Illinois North Carolina 1991
#> 15567 Illinois Massachusetts 1991
#> 15568 California Arkansas 1991
#> 15569 Wisconsin Indiana 1991
#> 15570 Delaware North Dakota 1991
#> 15571 Illinois Pennsylvania 1991
#> 15572 Florida Connecticut 1991
#> 15573 Delaware Montana 1991
#> 15574 California South Carolina 1991
#> 15575 Wisconsin Maryland 1991
#> 15576 Oregon Arizona 1991
#> 15577 Oregon Rhode Island 1991
#> 15578 Florida Missouri 1991
#> 15579 Illinois Georgia 1991
#> 15580 Idaho Utah 1991
#> 15581 Delaware South Dakota 1991
#> 15582 Florida Nebraska 1991
#> 15583 Illinois Texas 1991
#> 15584 Florida Idaho 1991
#> 15585 Florida Nevada 1991
#> 15586 Washington Kansas 1991
#> 15587 Wisconsin California 1991
#> 15588 Colorado Louisiana 1991
#> 15589 Massachusetts New York 1991
#> 15590 California Hawaii 1991
#> 15591 New Jersey Illinois 1991
#> 15592 Idaho Wyoming 1991
#> 15593 Illinois New Hampshire 1991
#> 15594 Oregon Vermont 1991
#> 15595 Illinois Tennessee 1991
#> 15596 Florida Alabama 1991
#> 15597 Iowa Wisconsin 1991
#> 15598 Minnesota Oregon 1991
#> 15599 Minnesota Mississippi 1991
#> 15600 Maryland Delaware 1991
#> 15601 Rhode Island Washington 1991
#> 15602 California New Jersey 1991
#> 15603 Georgia Indiana 1991
#> 15604 Rhode Island Maine 1991
#> 15605 North Carolina Georgia 1991
#> 15606 Oregon Idaho 1991
#> 15607 Maine West Virginia 1991
#> 15608 New York Iowa 1991
#> 15609 Colorado Michigan 1991
#> 15610 Oregon Connecticut 1991
#> 15611 Florida Colorado 1991
#> 15612 California Minnesota 1991
#> 15613 Illinois Florida 1991
#> 15614 California North Dakota 1991
#> 15615 New York Rhode Island 1991
#> 15616 Hawaii Alaska 1991
#> 15617 Montana Maryland 1991
#> 15618 Connecticut Massachusetts 1991
#> 15619 Hawaii California 1991
#> 15620 California Illinois 1991
#> 15621 Hawaii Virginia 1991
#> 15622 Maine South Carolina 1991
#> 15623 Indiana South Dakota 1991
#> 15624 Illinois Vermont 1991
#> 15625 Georgia New Mexico 1991
#> 15626 Kentucky Arkansas 1991
#> 15627 California New York 1991
#> 15628 Michigan Montana 1991
#> 15629 California Nevada 1991
#> 15630 North Dakota Washington 1991
#> 15631 New York Texas 1991
#> 15632 Minnesota Oklahoma 1991
#> 15633 California North Carolina 1991
#> 15634 Massachusetts Hawaii 1991
#> 15635 California Ohio 1991
#> 15636 Nevada Nebraska 1991
#> 15637 Oregon Minnesota 1991
#> 15638 Connecticut New Hampshire 1991
#> 15639 Maine Indiana 1991
#> 15640 Massachusetts Connecticut 1991
#> 15641 Oregon Pennsylvania 1991
#> 15642 Illinois Minnesota 1991
#> 15643 Hawaii Oregon 1991
#> 15644 Minnesota Utah 1991
#> 15645 Illinois Michigan 1991
#> 15646 Minnesota California 1991
#> 15647 Wisconsin Massachusetts 1991
#> 15648 Arkansas Kansas 1991
#> 15649 California Montana 1991
#> 15650 Colorado Maryland 1991
#> 15651 Florida North Carolina 1991
#> 15652 Florida Washington 1991
#> 15653 Maryland Virginia 1991
#> 15654 Florida Massachusetts 1991
#> 15655 Oregon Louisiana 1991
#> 15656 Washington Colorado 1991
#> 15657 Rhode Island Wyoming 1991
#> 15658 California Alaska 1991
#> 15659 Florida Tennessee 1991
#> 15660 Florida New Jersey 1991
#> 15661 Nevada Florida 1991
#> 15662 California Rhode Island 1991
#> 15663 New Jersey New Mexico 1991
#> 15664 Delaware Iowa 1991
#> 15665 Minnesota Arkansas 1991
#> 15666 Iowa Nevada 1991
#> 15667 New York Kansas 1991
#> 15668 Maryland Illinois 1991
#> 15669 Maryland Alabama 1991
#> 15670 Michigan Delaware 1991
#> 15671 Michigan Arizona 1991
#> 15672 Oregon West Virginia 1991
#> 15673 Michigan Georgia 1991
#> 15674 Illinois Kentucky 1991
#> 15675 Montana New Hampshire 1991
#> 15676 Hawaii North Dakota 1991
#> 15677 Minnesota Maine 1991
#> 15678 Colorado Oregon 1991
#> 15679 Minnesota South Carolina 1991
#> 15680 Maine Nebraska 1991
#> 15681 Illinois New York 1991
#> 15682 New York Utah 1991
#> 15683 Connecticut New Jersey 1991
#> 15684 Delaware Missouri 1991
#> 15685 Florida Pennsylvania 1991
#> 15686 Georgia Mississippi 1991
#> 15687 Minnesota Hawaii 1991
#> 15688 Colorado Wisconsin 1991
#> 15689 Arkansas Ohio 1991
#> 15690 New Jersey Rhode Island 1991
#> 15691 California Texas 1991
#> 15692 Rhode Island Connecticut 1991
#> 15693 Colorado South Dakota 1991
#> 15694 North Carolina Kentucky 1991
#> 15695 Minnesota Indiana 1991
#> 15696 New Jersey Massachusetts 1991
#> 15697 Arkansas Alabama 1991
#> 15698 Arkansas Montana 1991
#> 15699 Minnesota Colorado 1991
#> 15700 Louisiana Alaska 1991
#> 15701 Maine Florida 1991
#> 15702 Rhode Island Maryland 1991
#> 15703 Minnesota Kansas 1991
#> 15704 Nebraska Idaho 1991
#> 15705 North Carolina Minnesota 1991
#> 15706 Michigan Illinois 1991
#> 15707 Florida Iowa 1991
#> 15708 Montana Virginia 1991
#> 15709 Maine Michigan 1991
#> 15710 Arizona Missouri 1991
#> 15711 Hawaii Florida 1991
#> 15712 Utah Wyoming 1991
#> 15713 Maine New Hampshire 1991
#> 15714 Arkansas Mississippi 1991
#> 15715 Washington Connecticut 1991
#> 15716 Minnesota Delaware 1991
#> 15717 Wisconsin North Carolina 1991
#> 15718 Delaware Massachusetts 1991
#> 15719 Maine Iowa 1991
#> 15720 Alaska North Dakota 1991
#> 15721 Colorado California 1991
#> 15722 Montana Tennessee 1991
#> 15723 Arizona Rhode Island 1991
#> 15724 Connecticut New York 1991
#> 15725 Iowa Illinois 1991
#> 15726 Hawaii Washington 1991
#> 15727 Oregon Delaware 1991
#> 15728 New Jersey Louisiana 1991
#> 15729 Pennsylvania Ohio 1991
#> 15730 Virginia Oregon 1991
#> 15731 Delaware Nevada 1991
#> 15732 Minnesota Arizona 1991
#> 15733 Delaware Oklahoma 1991
#> 15734 Michigan West Virginia 1991
#> 15735 Rhode Island Idaho 1991
#> 15736 Michigan Indiana 1991
#> 15737 Wisconsin South Carolina 1991
#> 15738 North Dakota New Mexico 1991
#> 15739 Oregon Wisconsin 1991
#> 15740 Kansas Arkansas 1991
#> 15741 New York Alabama 1991
#> 15742 Arkansas Connecticut 1991
#> 15743 Maine North Carolina 1991
#> 15744 Washington Montana 1991
#> 15745 Montana Colorado 1991
#> 15746 Michigan Missouri 1991
#> 15747 Connecticut Maine 1991
#> 15748 California Georgia 1991
#> 15749 Idaho Missouri 1991
#> 15750 Minnesota Nebraska 1991
#> 15751 Pennsylvania New York 1991
#> 15752 Tennessee Arkansas 1991
#> 15753 Connecticut Louisiana 1991
#> 15754 Kansas Hawaii 1991
#> 15755 Maine Vermont 1991
#> 15756 Hawaii Minnesota 1991
#> 15757 Florida Ohio 1991
#> 15758 Wisconsin Michigan 1991
#> 15759 Wisconsin Idaho 1991
#> 15760 Washington Alaska 1991
#> 15761 Connecticut Colorado 1991
#> 15762 Tennessee Florida 1991
#> 15763 Wyoming Arizona 1991
#> 15764 New Jersey Pennsylvania 1991
#> 15765 Oregon Ohio 1991
#> 15766 Minnesota Washington 1991
#> 15767 Colorado Tennessee 1991
#> 15768 Kentucky Louisiana 1991
#> 15769 Wisconsin Maine 1991
#> 15770 Massachusetts Kansas 1991
#> 15771 Alaska Nebraska 1991
#> 15772 Florida Maryland 1991
#> 15773 Michigan Florida 1991
#> 15774 Utah California 1991
#> 15775 Wisconsin Vermont 1991
#> 15776 Illinois New Jersey 1991
#> 15777 Maryland Massachusetts 1991
#> 15778 Minnesota West Virginia 1991
#> 15779 Nevada Rhode Island 1991
#> 15780 Nevada Utah 1991
#> 15781 Colorado Texas 1991
#> 15782 Illinois California 1991
#> 15783 Massachusetts Oregon 1991
#> 15784 Louisiana Nevada 1991
#> 15785 Nevada Montana 1991
#> 15786 Massachusetts Wisconsin 1991
#> 15787 Florida Indiana 1991
#> 15788 Vermont Connecticut 1991
#> 15789 Alaska New York 1991
#> 15790 Pennsylvania New Mexico 1991
#> 15791 Iowa Colorado 1991
#> 15792 Florida South Dakota 1991
#> 15793 Nevada Idaho 1991
#> 15794 California Massachusetts 1991
#> 15795 Washington Illinois 1991
#> 15796 Kansas Wisconsin 1991
#> 15797 New York Delaware 1991
#> 15798 Rhode Island Hawaii 1991
#> 15799 Virginia Iowa 1991
#> 15800 Louisiana Alabama 1991
#> 15801 Indiana Montana 1991
#> 15802 North Dakota Kentucky 1991
#> 15803 Tennessee Missouri 1991
#> 15804 Massachusetts North Dakota 1991
#> 15805 California Delaware 1991
#> 15806 Massachusetts Pennsylvania 1991
#> 15807 Georgia Kentucky 1991
#> 15808 Idaho Kansas 1991
#> 15809 Kentucky Minnesota 1991
#> 15810 Maryland Maine 1991
#> 15811 Maine Arizona 1991
#> 15812 Kentucky North Carolina 1991
#> 15813 Montana Michigan 1991
#> 15814 Louisiana Virginia 1991
#> 15815 Nevada Georgia 1991
#> 15816 Virginia Indiana 1991
#> 15817 New Mexico Iowa 1991
#> 15818 Minnesota New Hampshire 1991
#> 15819 New Mexico Oklahoma 1991
#> 15820 South Carolina Illinois 1991
#> 15821 Washington Indiana 1991
#> 15822 Pennsylvania Rhode Island 1991
#> 15823 Washington Wyoming 1991
#> 15824 Wisconsin Pennsylvania 1991
#> 15825 Maine New Mexico 1991
#> 15826 Massachusetts Florida 1991
#> 15827 Virginia California 1991
#> 15828 Indiana New Jersey 1991
#> 15829 Alabama Virginia 1991
#> 15830 Michigan Nevada 1991
#> 15831 New Jersey Idaho 1991
#> 15832 Georgia Rhode Island 1991
#> 15833 Missouri Indiana 1991
#> 15834 California New Mexico 1991
#> 15835 Arkansas Minnesota 1991
#> 15836 Iowa Oklahoma 1991
#> 15837 Kentucky South Dakota 1991
#> 15838 Michigan Wyoming 1991
#> 15839 Nebraska Mississippi 1991
#> 15840 Nevada Washington 1991
#> 15841 Maine Wisconsin 1991
#> 15842 Illinois Rhode Island 1991
#> 15843 Arizona Oregon 1991
#> 15844 Illinois Maryland 1991
#> 15845 Kentucky New York 1991
#> 15846 Montana California 1991
#> 15847 Delaware Arkansas 1991
#> 15848 Arkansas North Dakota 1991
#> 15849 Kansas New Mexico 1991
#> 15850 California Nebraska 1991
#> 15851 New Jersey South Carolina 1991
#> 15852 Kentucky Pennsylvania 1991
#> 15853 Tennessee Georgia 1991
#> 15854 Oregon Kansas 1991
#> 15855 New Jersey Iowa 1991
#> 15856 Delaware North Carolina 1991
#> 15857 Kentucky Idaho 1991
#> 15858 Hawaii Arkansas 1991
#> 15859 Vermont Rhode Island 1991
#> 15860 Colorado New Jersey 1991
#> 15861 California Connecticut 1991
#> 15862 Oregon Michigan 1991
#> 15863 South Dakota Nevada 1991
#> 15864 New Mexico Kansas 1991
#> 15865 Kansas California 1991
#> 15866 Oregon Texas 1991
#> 15867 Ohio Alabama 1991
#> 15868 Arkansas Colorado 1991
#> 15869 Colorado New Hampshire 1991
#> 15870 Oklahoma Georgia 1991
#> 15871 Minnesota Tennessee 1991
#> 15872 Colorado Hawaii 1991
#> 15873 Iowa South Carolina 1991
#> 15874 New Mexico Delaware 1991
#> 15875 Illinois Nebraska 1991
#> 15876 Arizona Arkansas 1991
#> 15877 Connecticut Illinois 1991
#> 15878 Iowa Utah 1991
#> 15879 Hawaii Rhode Island 1991
#> 15880 Wisconsin Minnesota 1991
#> 15881 New Jersey Wisconsin 1991
#> 15882 Virginia Louisiana 1991
#> 15883 Tennessee Montana 1991
#> 15884 Louisiana New Mexico 1991
#> 15885 Maine Maryland 1991
#> 15886 Colorado Vermont 1991
#> 15887 New Mexico Maine 1991
#> 15888 Wisconsin Alaska 1991
#> 15889 North Dakota Virginia 1991
#> 15890 Nebraska Alabama 1991
#> 15891 Alaska Nevada 1991
#> 15892 New Jersey Alaska 1991
#> 15893 Kentucky Illinois 1991
#> 15894 Louisiana Oklahoma 1991
#> 15895 Connecticut Utah 1991
#> 15896 North Dakota Ohio 1991
#> 15897 Colorado Arkansas 1991
#> 15898 Georgia Tennessee 1991
#> 15899 West Virginia Missouri 1991
#> 15900 Hawaii Vermont 1991
#> 15901 New Hampshire New York 1991
#> 15902 Florida Michigan 1991
#> 15903 Utah New Hampshire 1991
#> 15904 Hawaii Oklahoma 1991
#> 15905 New Mexico Mississippi 1991
#> 15906 Utah Maryland 1991
#> 15907 New Mexico Alabama 1991
#> 15908 Montana Nebraska 1991
#> 15909 Mississippi Arizona 1991
#> 15910 Pennsylvania Wisconsin 1991
#> 15911 Illinois West Virginia 1991
#> 15912 Washington New York 1991
#> 15913 Illinois Idaho 1991
#> 15914 Colorado Arizona 1991
#> 15915 Kentucky Tennessee 1991
#> 15916 New Jersey Michigan 1991
#> 15917 South Dakota North Carolina 1991
#> 15918 Oregon Alabama 1991
#> 15919 South Carolina Vermont 1991
#> 15920 Missouri Maine 1991
#> 15921 Kentucky Alaska 1991
#> 15922 New York Wyoming 1991
#> 15923 Maine Nevada 1991
#> 15924 Hawaii Montana 1991
#> 15925 New Jersey Utah 1991
#> 15926 Oklahoma Indiana 1991
#> 15927 Delaware Wyoming 1991
#> 15928 Louisiana Missouri 1991
#> 15929 Arkansas Texas 1991
#> 15930 Nebraska Louisiana 1991
#> 15931 Washington North Dakota 1991
#> 15932 Iowa New Jersey 1991
#> 15933 South Carolina South Dakota 1991
#> 15934 Iowa Arkansas 1991
#> 15935 Connecticut Wyoming 1991
#> 15936 Tennessee Massachusetts 1991
#> 15937 Nevada West Virginia 1991
#> 15938 Idaho New York 1991
#> 15939 Idaho Florida 1991
#> 15940 Wisconsin New Mexico 1991
#> 15941 Wisconsin Hawaii 1991
#> 15942 Alabama Florida 1991
#> 15943 North Dakota Missouri 1991
#> 15944 Vermont New York 1991
#> 15945 Kentucky Michigan 1991
#> 15946 New Hampshire Hawaii 1991
#> 15947 Louisiana Montana 1991
#> 15948 Missouri Mississippi 1991
#> 15949 California South Dakota 1991
#> 15950 Missouri Wisconsin 1991
#> 15951 Wisconsin Rhode Island 1991
#> 15952 New Jersey Delaware 1991
#> 15953 Maine Delaware 1991
#> 15954 New Jersey California 1991
#> 15955 Ohio Tennessee 1991
#> 15956 South Carolina New York 1991
#> 15957 Wisconsin Illinois 1991
#> 15958 Maine Texas 1991
#> 15959 Kentucky Massachusetts 1991
#> 15960 Maine Montana 1991
#> 15961 North Carolina Colorado 1991
#> 15962 Mississippi California 1991
#> 15963 South Dakota Wisconsin 1991
#> 15964 Hawaii Delaware 1991
#> 15965 Arizona Montana 1991
#> 15966 Tennessee New York 1991
#> 15967 Tennessee California 1991
#> 15968 North Carolina Indiana 1991
#> 15969 Hawaii Illinois 1991
#> 15970 Arkansas Delaware 1991
#> 15971 Indiana Oregon 1991
#> 15972 Ohio Louisiana 1991
#> 15973 Nevada Hawaii 1991
#> 15974 New York Virginia 1991
#> 15975 Missouri North Dakota 1991
#> 15976 Maryland Kansas 1991
#> 15977 New Mexico New Hampshire 1991
#> 15978 Alabama Kansas 1991
#> 15979 Louisiana Idaho 1991
#> 15980 Connecticut Florida 1991
#> 15981 Oregon Iowa 1991
#> 15982 South Dakota South Carolina 1991
#> 15983 Missouri West Virginia 1991
#> 15984 Wyoming Oklahoma 1991
#> 15985 Wisconsin Colorado 1991
#> 15986 Ohio Utah 1991
#> 15987 North Carolina Maryland 1991
#> 15988 Missouri Virginia 1991
#> 15989 North Dakota Maryland 1991
#> 15990 Utah Washington 1991
#> 15991 Georgia Louisiana 1991
#> 15992 Connecticut Oregon 1991
#> 15993 Florida New Mexico 1991
#> 15994 Alaska Connecticut 1991
#> 15995 Alabama South Carolina 1991
#> 15996 Michigan Alabama 1991
#> 15997 Maine South Dakota 1991
#> 15998 Hawaii Tennessee 1991
#> 15999 Michigan North Carolina 1991
#> 16000 Rhode Island Minnesota 1991
#> 16001 New York Oregon 1992
#> 16002 New York Minnesota 1992
#> 16003 New York Michigan 1992
#> 16004 New Jersey Ohio 1992
#> 16005 Massachusetts Connecticut 1992
#> 16006 Minnesota Iowa 1992
#> 16007 Oregon Kentucky 1992
#> 16008 New York New Jersey 1992
#> 16009 Massachusetts Colorado 1992
#> 16010 Oregon South Dakota 1992
#> 16011 Minnesota Indiana 1992
#> 16012 California Florida 1992
#> 16013 Florida Georgia 1992
#> 16014 Florida Arizona 1992
#> 16015 New Jersey Illinois 1992
#> 16016 New York Oklahoma 1992
#> 16017 Florida Mississippi 1992
#> 16018 Washington Missouri 1992
#> 16019 New York Rhode Island 1992
#> 16020 New York Tennessee 1992
#> 16021 Minnesota Virginia 1992
#> 16022 New York Washington 1992
#> 16023 New York Maryland 1992
#> 16024 New York California 1992
#> 16025 Colorado Kansas 1992
#> 16026 Oregon Montana 1992
#> 16027 Florida Louisiana 1992
#> 16028 Colorado North Dakota 1992
#> 16029 New York Pennsylvania 1992
#> 16030 Oregon Alaska 1992
#> 16031 New York New Hampshire 1992
#> 16032 New York West Virginia 1992
#> 16033 New York Nebraska 1992
#> 16034 New York Idaho 1992
#> 16035 Oregon Vermont 1992
#> 16036 Florida Texas 1992
#> 16037 Florida Utah 1992
#> 16038 Florida South Carolina 1992
#> 16039 Minnesota Alabama 1992
#> 16040 Rhode Island Maine 1992
#> 16041 California Arkansas 1992
#> 16042 Oregon New Mexico 1992
#> 16043 New York North Carolina 1992
#> 16044 Rhode Island Wisconsin 1992
#> 16045 California Nevada 1992
#> 16046 New York Hawaii 1992
#> 16047 Idaho Wyoming 1992
#> 16048 Rhode Island Delaware 1992
#> 16049 New Jersey Massachusetts 1992
#> 16050 Connecticut New York 1992
#> 16051 California Oregon 1992
#> 16052 Colorado Minnesota 1992
#> 16053 Idaho Colorado 1992
#> 16054 California Washington 1992
#> 16055 Minnesota New Jersey 1992
#> 16056 Connecticut Wisconsin 1992
#> 16057 Florida Oklahoma 1992
#> 16058 New York Florida 1992
#> 16059 Illinois Massachusetts 1992
#> 16060 Oregon Maine 1992
#> 16061 New Jersey Rhode Island 1992
#> 16062 Oregon Ohio 1992
#> 16063 Illinois Iowa 1992
#> 16064 Idaho Delaware 1992
#> 16065 New Jersey Vermont 1992
#> 16066 Florida Virginia 1992
#> 16067 Georgia Indiana 1992
#> 16068 Delaware North Dakota 1992
#> 16069 Delaware Montana 1992
#> 16070 California Illinois 1992
#> 16071 Florida Kentucky 1992
#> 16072 California North Carolina 1992
#> 16073 Wisconsin Maryland 1992
#> 16074 Florida Arkansas 1992
#> 16075 Oregon Connecticut 1992
#> 16076 Massachusetts New Mexico 1992
#> 16077 Illinois Pennsylvania 1992
#> 16078 Oregon Arizona 1992
#> 16079 Virginia Georgia 1992
#> 16080 Delaware South Dakota 1992
#> 16081 Maine South Carolina 1992
#> 16082 Minnesota California 1992
#> 16083 Idaho Utah 1992
#> 16084 Florida Idaho 1992
#> 16085 Nevada Nebraska 1992
#> 16086 Illinois Tennessee 1992
#> 16087 Washington Kansas 1992
#> 16088 Florida Nevada 1992
#> 16089 Colorado Louisiana 1992
#> 16090 California Hawaii 1992
#> 16091 Illinois Texas 1992
#> 16092 Colorado Oregon 1992
#> 16093 Florida Missouri 1992
#> 16094 Oregon Wyoming 1992
#> 16095 Connecticut Massachusetts 1992
#> 16096 Illinois New Hampshire 1992
#> 16097 California New York 1992
#> 16098 New Jersey Alaska 1992
#> 16099 Iowa North Carolina 1992
#> 16100 Minnesota Mississippi 1992
#> 16101 Florida Alabama 1992
#> 16102 North Dakota Washington 1992
#> 16103 California New Jersey 1992
#> 16104 Oregon Rhode Island 1992
#> 16105 Wisconsin Indiana 1992
#> 16106 California Minnesota 1992
#> 16107 New Jersey Michigan 1992
#> 16108 New York Maine 1992
#> 16109 Connecticut Colorado 1992
#> 16110 Florida West Virginia 1992
#> 16111 Illinois Delaware 1992
#> 16112 Minnesota Nevada 1992
#> 16113 New York Connecticut 1992
#> 16114 Kentucky Illinois 1992
#> 16115 Virginia Florida 1992
#> 16116 New York Iowa 1992
#> 16117 Massachusetts Hawaii 1992
#> 16118 Louisiana Montana 1992
#> 16119 Montana Maryland 1992
#> 16120 New Jersey Wisconsin 1992
#> 16121 Rhode Island Ohio 1992
#> 16122 Wisconsin California 1992
#> 16123 California North Dakota 1992
#> 16124 California South Carolina 1992
#> 16125 Massachusetts New York 1992
#> 16126 Florida Washington 1992
#> 16127 Oregon Idaho 1992
#> 16128 Florida Nebraska 1992
#> 16129 Colorado South Dakota 1992
#> 16130 Minnesota Oklahoma 1992
#> 16131 Florida Connecticut 1992
#> 16132 Oregon Minnesota 1992
#> 16133 Hawaii Virginia 1992
#> 16134 Minnesota Arkansas 1992
#> 16135 California Georgia 1992
#> 16136 Georgia New Mexico 1992
#> 16137 Connecticut Vermont 1992
#> 16138 Connecticut New Hampshire 1992
#> 16139 New York Texas 1992
#> 16140 California Colorado 1992
#> 16141 Wisconsin Massachusetts 1992
#> 16142 Minnesota Utah 1992
#> 16143 Oregon Pennsylvania 1992
#> 16144 Colorado Michigan 1992
#> 16145 Arkansas Rhode Island 1992
#> 16146 Florida New Jersey 1992
#> 16147 Illinois Minnesota 1992
#> 16148 Hawaii California 1992
#> 16149 California Montana 1992
#> 16150 Florida Oregon 1992
#> 16151 Colorado Maryland 1992
#> 16152 Oregon Wisconsin 1992
#> 16153 Kentucky Arkansas 1992
#> 16154 Nebraska Tennessee 1992
#> 16155 Nevada Georgia 1992
#> 16156 Michigan Kansas 1992
#> 16157 Utah Wyoming 1992
#> 16158 Oregon Louisiana 1992
#> 16159 Oregon West Virginia 1992
#> 16160 Connecticut Delaware 1992
#> 16161 Florida Massachusetts 1992
#> 16162 Michigan Illinois 1992
#> 16163 Michigan Indiana 1992
#> 16164 Minnesota Nebraska 1992
#> 16165 Maryland Kentucky 1992
#> 16166 Montana Alaska 1992
#> 16167 Alaska New York 1992
#> 16168 Minnesota Kansas 1992
#> 16169 Illinois Missouri 1992
#> 16170 Delaware Iowa 1992
#> 16171 Florida North Carolina 1992
#> 16172 Michigan Montana 1992
#> 16173 Michigan Arizona 1992
#> 16174 Massachusetts Indiana 1992
#> 16175 Delaware Alabama 1992
#> 16176 Utah New Mexico 1992
#> 16177 Delaware Connecticut 1992
#> 16178 Rhode Island Washington 1992
#> 16179 Montana New Hampshire 1992
#> 16180 Alaska North Dakota 1992
#> 16181 Maine Oregon 1992
#> 16182 Minnesota Maine 1992
#> 16183 Kentucky Mississippi 1992
#> 16184 Connecticut New Jersey 1992
#> 16185 California Nebraska 1992
#> 16186 Virginia Illinois 1992
#> 16187 Illinois Ohio 1992
#> 16188 Indiana South Dakota 1992
#> 16189 Minnesota South Carolina 1992
#> 16190 Nevada Florida 1992
#> 16191 Florida Pennsylvania 1992
#> 16192 Rhode Island Maryland 1992
#> 16193 Wisconsin Missouri 1992
#> 16194 Wisconsin Vermont 1992
#> 16195 Minnesota Hawaii 1992
#> 16196 Pennsylvania New York 1992
#> 16197 Alaska Nevada 1992
#> 16198 Oregon Alabama 1992
#> 16199 Rhode Island Wyoming 1992
#> 16200 California Texas 1992
#> 16201 Washington Montana 1992
#> 16202 Kansas Virginia 1992
#> 16203 Iowa Idaho 1992
#> 16204 Arkansas Kansas 1992
#> 16205 Hawaii Florida 1992
#> 16206 Oregon Iowa 1992
#> 16207 Montana Connecticut 1992
#> 16208 Hawaii Oregon 1992
#> 16209 Minnesota Delaware 1992
#> 16210 Georgia Kentucky 1992
#> 16211 Hawaii Washington 1992
#> 16212 Minnesota Arizona 1992
#> 16213 Idaho Minnesota 1992
#> 16214 Alabama Michigan 1992
#> 16215 Illinois Idaho 1992
#> 16216 Washington Alaska 1992
#> 16217 Kentucky Nevada 1992
#> 16218 Connecticut Oregon 1992
#> 16219 Rhode Island Colorado 1992
#> 16220 Tennessee Florida 1992
#> 16221 Kansas Louisiana 1992
#> 16222 Florida Ohio 1992
#> 16223 Connecticut North Carolina 1992
#> 16224 Kansas Wisconsin 1992
#> 16225 Hawaii North Dakota 1992
#> 16226 Iowa Colorado 1992
#> 16227 Illinois New Jersey 1992
#> 16228 Massachusetts Georgia 1992
#> 16229 California Rhode Island 1992
#> 16230 Delaware Massachusetts 1992
#> 16231 Connecticut Maine 1992
#> 16232 New Jersey Utah 1992
#> 16233 Utah California 1992
#> 16234 Kentucky New York 1992
#> 16235 Idaho Missouri 1992
#> 16236 Illinois Alabama 1992
#> 16237 New York New Mexico 1992
#> 16238 Pennsylvania Rhode Island 1992
#> 16239 Minnesota Florida 1992
#> 16240 Delaware Tennessee 1992
#> 16241 Maryland Delaware 1992
#> 16242 Wisconsin Oklahoma 1992
#> 16243 Montana Virginia 1992
#> 16244 Maryland Pennsylvania 1992
#> 16245 Wisconsin South Carolina 1992
#> 16246 Nevada Idaho 1992
#> 16247 Minnesota West Virginia 1992
#> 16248 Kentucky Louisiana 1992
#> 16249 West Virginia Georgia 1992
#> 16250 Washington Indiana 1992
#> 16251 Maine New Hampshire 1992
#> 16252 Kansas Arkansas 1992
#> 16253 Minnesota North Dakota 1992
#> 16254 Missouri Mississippi 1992
#> 16255 South Dakota North Carolina 1992
#> 16256 California Massachusetts 1992
#> 16257 New York Ohio 1992
#> 16258 Florida Indiana 1992
#> 16259 Colorado California 1992
#> 16260 New Jersey Louisiana 1992
#> 16261 Louisiana Kansas 1992
#> 16262 Idaho Montana 1992
#> 16263 Massachusetts Pennsylvania 1992
#> 16264 Kansas Hawaii 1992
#> 16265 Minnesota Tennessee 1992
#> 16266 Louisiana Illinois 1992
#> 16267 Alabama Utah 1992
#> 16268 Kentucky Minnesota 1992
#> 16269 Wyoming Arizona 1992
#> 16270 Minnesota Washington 1992
#> 16271 Indiana Wisconsin 1992
#> 16272 Wisconsin Maine 1992
#> 16273 Kansas Vermont 1992
#> 16274 Utah Alaska 1992
#> 16275 Kentucky Colorado 1992
#> 16276 Ohio Alabama 1992
#> 16277 Wisconsin Texas 1992
#> 16278 Colorado Ohio 1992
#> 16279 New York Nevada 1992
#> 16280 Connecticut South Carolina 1992
#> 16281 Ohio Tennessee 1992
#> 16282 Kansas Iowa 1992
#> 16283 New Mexico Mississippi 1992
#> 16284 North Dakota New Mexico 1992
#> 16285 Florida Iowa 1992
#> 16286 Illinois California 1992
#> 16287 Idaho Michigan 1992
#> 16288 Washington Illinois 1992
#> 16289 Vermont Connecticut 1992
#> 16290 Delaware New Hampshire 1992
#> 16291 Massachusetts North Dakota 1992
#> 16292 North Dakota Kentucky 1992
#> 16293 Illinois Rhode Island 1992
#> 16294 Michigan South Dakota 1992
#> 16295 New York Missouri 1992
#> 16296 Massachusetts Florida 1992
#> 16297 Illinois Nebraska 1992
#> 16298 Rhode Island Hawaii 1992
#> 16299 Louisiana Missouri 1992
#> 16300 Massachusetts Rhode Island 1992
#> 16301 Nebraska Arkansas 1992
#> 16302 Idaho New York 1992
#> 16303 Virginia Oregon 1992
#> 16304 Oregon Kansas 1992
#> 16305 Missouri West Virginia 1992
#> 16306 Virginia Iowa 1992
#> 16307 Kentucky Utah 1992
#> 16308 Oregon Oklahoma 1992
#> 16309 New Mexico Alabama 1992
#> 16310 Nevada Washington 1992
#> 16311 Arizona Missouri 1992
#> 16312 Florida Maryland 1992
#> 16313 Wisconsin Idaho 1992
#> 16314 Florida New Mexico 1992
#> 16315 Maryland Massachusetts 1992
#> 16316 Tennessee Georgia 1992
#> 16317 Washington New York 1992
#> 16318 Maine Maryland 1992
#> 16319 Wisconsin Oregon 1992
#> 16320 Michigan Florida 1992
#> 16321 Wisconsin Colorado 1992
#> 16322 Louisiana New Mexico 1992
#> 16323 Maine Arizona 1992
#> 16324 Oregon Delaware 1992
#> 16325 Washington North Carolina 1992
#> 16326 North Carolina Minnesota 1992
#> 16327 Oregon New Hampshire 1992
#> 16328 South Carolina Illinois 1992
#> 16329 Minnesota Idaho 1992
#> 16330 Montana Michigan 1992
#> 16331 Maine Nevada 1992
#> 16332 Tennessee Virginia 1992
#> 16333 New Mexico Oklahoma 1992
#> 16334 California Wisconsin 1992
#> 16335 Virginia California 1992
#> 16336 Wisconsin Minnesota 1992
#> 16337 Georgia Rhode Island 1992
#> 16338 Oregon Michigan 1992
#> 16339 Nevada Montana 1992
#> 16340 Hawaii West Virginia 1992
#> 16341 Washington North Dakota 1992
#> 16342 South Dakota Nevada 1992
#> 16343 Connecticut Louisiana 1992
#> 16344 Kansas Kentucky 1992
#> 16345 Indiana Alabama 1992
#> 16346 Virginia Vermont 1992
#> 16347 Florida Rhode Island 1992
#> 16348 Maine Ohio 1992
#> 16349 New York Indiana 1992
#> 16350 Arkansas Minnesota 1992
#> 16351 New York Delaware 1992
#> 16352 Arkansas Texas 1992
#> 16353 Illinois Connecticut 1992
#> 16354 Michigan Wyoming 1992
#> 16355 Maine Wisconsin 1992
#> 16356 Montana California 1992
#> 16357 Delaware Arkansas 1992
#> 16358 New York Massachusetts 1992
#> 16359 North Dakota Virginia 1992
#> 16360 Virginia Kentucky 1992
#> 16361 Hawaii Alaska 1992
#> 16362 Montana New Jersey 1992
#> 16363 Hawaii North Carolina 1992
#> 16364 Tennessee Missouri 1992
#> 16365 Kentucky Idaho 1992
#> 16366 California Connecticut 1992
#> 16367 Hawaii Arkansas 1992
#> 16368 Kentucky Pennsylvania 1992
#> 16369 Kentucky Wisconsin 1992
#> 16370 Montana Oregon 1992
#> 16371 Idaho Iowa 1992
#> 16372 Alabama Florida 1992
#> 16373 Idaho Rhode Island 1992
#> 16374 Kansas California 1992
#> 16375 South Dakota South Carolina 1992
#> 16376 Colorado Tennessee 1992
#> 16377 California Wyoming 1992
#> 16378 Alabama North Dakota 1992
#> 16379 Illinois Michigan 1992
#> 16380 North Dakota Maine 1992
#> 16381 Nevada Kansas 1992
#> 16382 Iowa New Jersey 1992
#> 16383 Oklahoma South Dakota 1992
#> 16384 Washington Arkansas 1992
#> 16385 California Alaska 1992
#> 16386 Michigan West Virginia 1992
#> 16387 South Carolina Wisconsin 1992
#> 16388 South Dakota Utah 1992
#> 16389 Michigan Maryland 1992
#> 16390 Colorado Hawaii 1992
#> 16391 New Hampshire Florida 1992
#> 16392 Alabama South Carolina 1992
#> 16393 South Carolina Vermont 1992
#> 16394 Louisiana Oklahoma 1992
#> 16395 Idaho New Mexico 1992
#> 16396 Washington Colorado 1992
#> 16397 Colorado Delaware 1992
#> 16398 Minnesota Missouri 1992
#> 16399 Hawaii Rhode Island 1992
#> 16400 Louisiana Texas 1992
#> 16401 Louisiana Alaska 1992
#> 16402 Missouri Nevada 1992
#> 16403 Alaska Nebraska 1992
#> 16404 Indiana New Jersey 1992
#> 16405 Georgia Tennessee 1992
#> 16406 New York Illinois 1992
#> 16407 Arkansas Mississippi 1992
#> 16408 North Carolina Louisiana 1992
#> 16409 Tennessee Arizona 1992
#> 16410 Hawaii Idaho 1992
#> 16411 Texas Ohio 1992
#> 16412 New Jersey Pennsylvania 1992
#> 16413 Maryland Indiana 1992
#> 16414 Massachusetts Maine 1992
#> 16415 Illinois Oklahoma 1992
#> 16416 Louisiana Virginia 1992
#> 16417 Kansas Utah 1992
#> 16418 Arkansas South Dakota 1992
#> 16419 California Ohio 1992
#> 16420 Maine Nebraska 1992
#> 16421 New Hampshire New York 1992
#> 16422 Nevada Mississippi 1992
#> 16423 Montana Nebraska 1992
#> 16424 Mississippi Arizona 1992
#> 16425 Maryland Illinois 1992
#> 16426 Utah Maryland 1992
#> 16427 Minnesota Colorado 1992
#> 16428 Delaware Wyoming 1992
#> 16429 Illinois West Virginia 1992
#> 16430 Massachusetts Oregon 1992
#> 16431 Maine Michigan 1992
#> 16432 Kentucky Florida 1992
#> 16433 New Hampshire Virginia 1992
#> 16434 Kentucky Maryland 1992
#> 16435 South Carolina Arkansas 1992
#> 16436 Mississippi Alabama 1992
#> 16437 New Mexico Iowa 1992
#> 16438 Colorado Texas 1992
#> 16439 Kentucky Ohio 1992
#> 16440 Maine Wyoming 1992
#> 16441 Hawaii Montana 1992
#> 16442 Oklahoma Indiana 1992
#> 16443 Wisconsin Iowa 1992
#> 16444 Rhode Island Nevada 1992
#> 16445 Arkansas Montana 1992
#> 16446 Tennessee Montana 1992
#> 16447 Hawaii Tennessee 1992
#> 16448 Mississippi North Carolina 1992
#> 16449 Maine North Carolina 1992
#> 16450 Kansas New Mexico 1992
#> 16451 South Carolina Texas 1992
#> 16452 Iowa South Carolina 1992
#> 16453 Connecticut Rhode Island 1992
#> 16454 Tennessee Massachusetts 1992
#> 16455 Pennsylvania Minnesota 1992
#> 16456 New Jersey California 1992
#> 16457 Washington Wyoming 1992
#> 16458 Hawaii Vermont 1992
#> 16459 Wisconsin Hawaii 1992
#> 16460 Ohio Nevada 1992
#> 16461 Kentucky West Virginia 1992
#> 16462 Vermont New York 1992
#> 16463 Pennsylvania New Mexico 1992
#> 16464 Arizona Colorado 1992
#> 16465 Connecticut Kansas 1992
#> 16466 Kentucky Michigan 1992
#> 16467 South Carolina South Dakota 1992
#> 16468 New Hampshire Kansas 1992
#> 16469 Idaho Wisconsin 1992
#> 16470 South Carolina New York 1992
#> 16471 Virginia Louisiana 1992
#> 16472 North Dakota Montana 1992
#> 16473 Oklahoma Georgia 1992
#> 16474 Kentucky Massachusetts 1992
#> 16475 Missouri Wisconsin 1992
#> 16476 Hawaii Delaware 1992
#> 16477 Mississippi California 1992
#> 16478 Nevada New Mexico 1992
#> 16479 California New Mexico 1992
#> 16480 Arkansas Delaware 1992
#> 16481 Utah Connecticut 1992
#> 16482 Tennessee New York 1992
#> 16483 Tennessee California 1992
#> 16484 Iowa Arkansas 1992
#> 16485 Iowa Nebraska 1992
#> 16486 New Mexico New Hampshire 1992
#> 16487 Hawaii Illinois 1992
#> 16488 Nevada Hawaii 1992
#> 16489 California Louisiana 1992
#> 16490 Wisconsin Illinois 1992
#> 16491 Connecticut Iowa 1992
#> 16492 South Dakota West Virginia 1992
#> 16493 Missouri North Dakota 1992
#> 16494 Mississippi Pennsylvania 1992
#> 16495 Washington Hawaii 1992
#> 16496 Connecticut Florida 1992
#> 16497 Ohio Texas 1992
#> 16498 Minnesota Oregon 1992
#> 16499 Wisconsin Michigan 1992
#> 16500 Washington Oklahoma 1992
#> 16501 New York Minnesota 1993
#> 16502 New York Oregon 1993
#> 16503 Oregon Kentucky 1993
#> 16504 California Colorado 1993
#> 16505 New York Michigan 1993
#> 16506 Florida Georgia 1993
#> 16507 Massachusetts Ohio 1993
#> 16508 Minnesota Iowa 1993
#> 16509 Massachusetts Connecticut 1993
#> 16510 Massachusetts Indiana 1993
#> 16511 Massachusetts California 1993
#> 16512 California Florida 1993
#> 16513 New Jersey Illinois 1993
#> 16514 New York New Jersey 1993
#> 16515 Oregon South Dakota 1993
#> 16516 Washington Missouri 1993
#> 16517 Massachusetts Rhode Island 1993
#> 16518 Florida Arizona 1993
#> 16519 Minnesota Kansas 1993
#> 16520 Florida Mississippi 1993
#> 16521 Oregon Wisconsin 1993
#> 16522 New York Tennessee 1993
#> 16523 Florida Virginia 1993
#> 16524 New York Oklahoma 1993
#> 16525 Rhode Island Washington 1993
#> 16526 Florida Louisiana 1993
#> 16527 California Montana 1993
#> 16528 Oregon New Mexico 1993
#> 16529 Rhode Island Maine 1993
#> 16530 Rhode Island Nebraska 1993
#> 16531 New York Pennsylvania 1993
#> 16532 New York West Virginia 1993
#> 16533 Oregon Vermont 1993
#> 16534 New York Maryland 1993
#> 16535 Colorado North Dakota 1993
#> 16536 Oregon Alaska 1993
#> 16537 Florida Texas 1993
#> 16538 New York New Hampshire 1993
#> 16539 New York Idaho 1993
#> 16540 Florida Utah 1993
#> 16541 Florida South Carolina 1993
#> 16542 Rhode Island Delaware 1993
#> 16543 California Arkansas 1993
#> 16544 California Hawaii 1993
#> 16545 Minnesota Alabama 1993
#> 16546 Oregon Wyoming 1993
#> 16547 California Nevada 1993
#> 16548 New York North Carolina 1993
#> 16549 Connecticut New York 1993
#> 16550 Illinois Massachusetts 1993
#> 16551 California Oregon 1993
#> 16552 Oregon Minnesota 1993
#> 16553 Oregon Maine 1993
#> 16554 Connecticut Colorado 1993
#> 16555 California Washington 1993
#> 16556 Connecticut Massachusetts 1993
#> 16557 Florida Oklahoma 1993
#> 16558 Colorado Ohio 1993
#> 16559 California Rhode Island 1993
#> 16560 Massachusetts Hawaii 1993
#> 16561 California New Jersey 1993
#> 16562 California Illinois 1993
#> 16563 Illinois Pennsylvania 1993
#> 16564 Delaware Indiana 1993
#> 16565 Massachusetts Florida 1993
#> 16566 Minnesota Wisconsin 1993
#> 16567 Delaware Montana 1993
#> 16568 Idaho Delaware 1993
#> 16569 Minnesota California 1993
#> 16570 Illinois Iowa 1993
#> 16571 Oregon Arizona 1993
#> 16572 Oregon Virginia 1993
#> 16573 Oregon Connecticut 1993
#> 16574 Florida Nebraska 1993
#> 16575 New Jersey Vermont 1993
#> 16576 Massachusetts Kansas 1993
#> 16577 Delaware North Dakota 1993
#> 16578 Wisconsin Maryland 1993
#> 16579 California South Carolina 1993
#> 16580 Florida Arkansas 1993
#> 16581 Florida Kentucky 1993
#> 16582 Idaho Utah 1993
#> 16583 California North Carolina 1993
#> 16584 Colorado Louisiana 1993
#> 16585 Massachusetts New Mexico 1993
#> 16586 Oregon Georgia 1993
#> 16587 Florida Missouri 1993
#> 16588 Delaware South Dakota 1993
#> 16589 Illinois Tennessee 1993
#> 16590 Florida Nevada 1993
#> 16591 Colorado Oregon 1993
#> 16592 Connecticut New Jersey 1993
#> 16593 Florida Idaho 1993
#> 16594 Idaho Wyoming 1993
#> 16595 California Minnesota 1993
#> 16596 Illinois Texas 1993
#> 16597 Illinois New Hampshire 1993
#> 16598 California New York 1993
#> 16599 Connecticut Washington 1993
#> 16600 Minnesota Mississippi 1993
#> 16601 Rhode Island Wisconsin 1993
#> 16602 Florida Michigan 1993
#> 16603 Florida Alabama 1993
#> 16604 New Jersey Alaska 1993
#> 16605 Iowa North Carolina 1993
#> 16606 New Jersey Massachusetts 1993
#> 16607 Hawaii Rhode Island 1993
#> 16608 Illinois Florida 1993
#> 16609 California Kansas 1993
#> 16610 Connecticut Delaware 1993
#> 16611 Iowa Colorado 1993
#> 16612 Colorado Maryland 1993
#> 16613 Minnesota West Virginia 1993
#> 16614 Oregon Ohio 1993
#> 16615 Oregon Iowa 1993
#> 16616 Minnesota Nevada 1993
#> 16617 California North Dakota 1993
#> 16618 Hawaii Virginia 1993
#> 16619 Oregon Idaho 1993
#> 16620 Minnesota South Carolina 1993
#> 16621 Oregon Montana 1993
#> 16622 Illinois Minnesota 1993
#> 16623 Connecticut New Hampshire 1993
#> 16624 New York Connecticut 1993
#> 16625 Wisconsin California 1993
#> 16626 New York Maine 1993
#> 16627 Michigan Illinois 1993
#> 16628 Colorado South Dakota 1993
#> 16629 Oregon Utah 1993
#> 16630 Minnesota New Jersey 1993
#> 16631 Connecticut Vermont 1993
#> 16632 Massachusetts New York 1993
#> 16633 New York Washington 1993
#> 16634 Illinois Colorado 1993
#> 16635 Ohio Indiana 1993
#> 16636 California New Mexico 1993
#> 16637 Minnesota Oklahoma 1993
#> 16638 Florida Connecticut 1993
#> 16639 Wisconsin Massachusetts 1993
#> 16640 Colorado Michigan 1993
#> 16641 Minnesota Arkansas 1993
#> 16642 Louisiana Kansas 1993
#> 16643 California Nebraska 1993
#> 16644 Michigan Georgia 1993
#> 16645 Rhode Island Maryland 1993
#> 16646 Nebraska Tennessee 1993
#> 16647 Louisiana Rhode Island 1993
#> 16648 Michigan California 1993
#> 16649 New York Iowa 1993
#> 16650 Michigan Montana 1993
#> 16651 Illinois Missouri 1993
#> 16652 Oregon Pennsylvania 1993
#> 16653 New York Texas 1993
#> 16654 North Dakota Washington 1993
#> 16655 New York Hawaii 1993
#> 16656 Michigan Ohio 1993
#> 16657 Connecticut Louisiana 1993
#> 16658 Illinois Delaware 1993
#> 16659 Vermont Florida 1993
#> 16660 Florida West Virginia 1993
#> 16661 California Wisconsin 1993
#> 16662 Florida Oregon 1993
#> 16663 Florida Pennsylvania 1993
#> 16664 Idaho Minnesota 1993
#> 16665 California Massachusetts 1993
#> 16666 Utah Wyoming 1993
#> 16667 North Dakota Kentucky 1993
#> 16668 Rhode Island New Mexico 1993
#> 16669 Montana Alaska 1993
#> 16670 Alaska New York 1993
#> 16671 Kansas Mississippi 1993
#> 16672 Florida North Carolina 1993
#> 16673 Michigan Indiana 1993
#> 16674 California Georgia 1993
#> 16675 Michigan Florida 1993
#> 16676 Kentucky Arkansas 1993
#> 16677 Minnesota Hawaii 1993
#> 16678 Illinois New Jersey 1993
#> 16679 California Connecticut 1993
#> 16680 Michigan Arizona 1993
#> 16681 Delaware Alabama 1993
#> 16682 Arkansas Ohio 1993
#> 16683 Washington Montana 1993
#> 16684 Colorado Missouri 1993
#> 16685 Minnesota Virginia 1993
#> 16686 Louisiana Illinois 1993
#> 16687 Indiana Wisconsin 1993
#> 16688 Illinois Rhode Island 1993
#> 16689 Nevada Maine 1993
#> 16690 Minnesota Indiana 1993
#> 16691 Montana New Hampshire 1993
#> 16692 Alaska North Dakota 1993
#> 16693 North Dakota New Mexico 1993
#> 16694 Nevada Florida 1993
#> 16695 Indiana South Dakota 1993
#> 16696 Alaska Nevada 1993
#> 16697 Montana Maryland 1993
#> 16698 Hawaii California 1993
#> 16699 Wisconsin Vermont 1993
#> 16700 Florida Colorado 1993
#> 16701 Minnesota Arizona 1993
#> 16702 Indiana Kentucky 1993
#> 16703 Delaware Iowa 1993
#> 16704 Pennsylvania New York 1993
#> 16705 Iowa Idaho 1993
#> 16706 Indiana South Carolina 1993
#> 16707 Minnesota Oregon 1993
#> 16708 Delaware Connecticut 1993
#> 16709 Oregon Alabama 1993
#> 16710 California Texas 1993
#> 16711 Illinois Georgia 1993
#> 16712 Rhode Island Massachusetts 1993
#> 16713 Rhode Island Wyoming 1993
#> 16714 Oregon Louisiana 1993
#> 16715 Vermont Tennessee 1993
#> 16716 Oregon Oklahoma 1993
#> 16717 Louisiana Montana 1993
#> 16718 New Jersey Washington 1993
#> 16719 Minnesota Delaware 1993
#> 16720 Wisconsin Missouri 1993
#> 16721 Iowa Nebraska 1993
#> 16722 Wisconsin Michigan 1993
#> 16723 Illinois Idaho 1993
#> 16724 Wisconsin Indiana 1993
#> 16725 Colorado Minnesota 1993
#> 16726 Washington Alaska 1993
#> 16727 Nevada Idaho 1993
#> 16728 Kansas Colorado 1993
#> 16729 Connecticut North Carolina 1993
#> 16730 Kentucky Illinois 1993
#> 16731 Hawaii North Dakota 1993
#> 16732 California Delaware 1993
#> 16733 Florida New Jersey 1993
#> 16734 Illinois Connecticut 1993
#> 16735 Hawaii Oregon 1993
#> 16736 Tennessee Mississippi 1993
#> 16737 Delaware Utah 1993
#> 16738 Kentucky New York 1993
#> 16739 Illinois Alabama 1993
#> 16740 Delaware West Virginia 1993
#> 16741 New Jersey Louisiana 1993
#> 16742 New York New Mexico 1993
#> 16743 Michigan Kansas 1993
#> 16744 Colorado California 1993
#> 16745 Louisiana Ohio 1993
#> 16746 Connecticut Oregon 1993
#> 16747 North Dakota Maine 1993
#> 16748 South Dakota Nevada 1993
#> 16749 Maryland Pennsylvania 1993
#> 16750 Connecticut Nebraska 1993
#> 16751 Maine New Hampshire 1993
#> 16752 Washington Illinois 1993
#> 16753 Pennsylvania South Carolina 1993
#> 16754 Kansas Arkansas 1993
#> 16755 Minnesota North Dakota 1993
#> 16756 South Dakota North Carolina 1993
#> 16757 Iowa Kansas 1993
#> 16758 Florida Massachusetts 1993
#> 16759 Florida Indiana 1993
#> 16760 Rhode Island Michigan 1993
#> 16761 New Jersey Rhode Island 1993
#> 16762 Nevada Georgia 1993
#> 16763 Massachusetts Missouri 1993
#> 16764 Michigan Washington 1993
#> 16765 California South Dakota 1993
#> 16766 North Dakota Nebraska 1993
#> 16767 Indiana Virginia 1993
#> 16768 Tennessee Florida 1993
#> 16769 Massachusetts Pennsylvania 1993
#> 16770 Idaho Montana 1993
#> 16771 Kansas Hawaii 1993
#> 16772 Kentucky Utah 1993
#> 16773 California Ohio 1993
#> 16774 Oregon Colorado 1993
#> 16775 Kansas California 1993
#> 16776 Wyoming Arizona 1993
#> 16777 Minnesota Tennessee 1993
#> 16778 Kentucky Minnesota 1993
#> 16779 California Idaho 1993
#> 16780 Louisiana New Mexico 1993
#> 16781 Oregon California 1993
#> 16782 Michigan Nevada 1993
#> 16783 Wisconsin Colorado 1993
#> 16784 Nevada Texas 1993
#> 16785 Kentucky Louisiana 1993
#> 16786 Kansas Vermont 1993
#> 16787 Utah Alaska 1993
#> 16788 Ohio Alabama 1993
#> 16789 Iowa Wisconsin 1993
#> 16790 Connecticut South Carolina 1993
#> 16791 Minnesota Rhode Island 1993
#> 16792 Kansas Iowa 1993
#> 16793 Missouri Mississippi 1993
#> 16794 Wisconsin Kansas 1993
#> 16795 Ohio Tennessee 1993
#> 16796 Florida Iowa 1993
#> 16797 Illinois South Carolina 1993
#> 16798 Kansas Kentucky 1993
#> 16799 Idaho Rhode Island 1993
#> 16800 Delaware New Hampshire 1993
#> 16801 New Mexico Oklahoma 1993
#> 16802 Vermont Connecticut 1993
#> 16803 New York Delaware 1993
#> 16804 California Oklahoma 1993
#> 16805 Massachusetts North Dakota 1993
#> 16806 Wisconsin Oregon 1993
#> 16807 Vermont Michigan 1993
#> 16808 Kansas Wisconsin 1993
#> 16809 Illinois Michigan 1993
#> 16810 Oregon Delaware 1993
#> 16811 Minnesota Maine 1993
#> 16812 Rhode Island Hawaii 1993
#> 16813 Delaware Massachusetts 1993
#> 16814 California Louisiana 1993
#> 16815 Tennessee Georgia 1993
#> 16816 Alabama Florida 1993
#> 16817 Nebraska Arkansas 1993
#> 16818 Idaho New York 1993
#> 16819 California Kentucky 1993
#> 16820 New Jersey Texas 1993
#> 16821 Colorado West Virginia 1993
#> 16822 North Dakota Virginia 1993
#> 16823 Maine Arizona 1993
#> 16824 New Mexico Alabama 1993
#> 16825 New York Rhode Island 1993
#> 16826 Delaware Tennessee 1993
#> 16827 Hawaii Florida 1993
#> 16828 Florida Maryland 1993
#> 16829 Idaho Ohio 1993
#> 16830 Idaho New Mexico 1993
#> 16831 Arizona Missouri 1993
#> 16832 Connecticut Maine 1993
#> 16833 Vermont Virginia 1993
#> 16834 Maine Maryland 1993
#> 16835 Vermont Oregon 1993
#> 16836 Washington New York 1993
#> 16837 Georgia Indiana 1993
#> 16838 Oregon New Hampshire 1993
#> 16839 Indiana New Jersey 1993
#> 16840 Nevada Montana 1993
#> 16841 North Carolina Minnesota 1993
#> 16842 Washington North Carolina 1993
#> 16843 South Carolina Illinois 1993
#> 16844 Colorado Arizona 1993
#> 16845 Wisconsin Minnesota 1993
#> 16846 Maine Nevada 1993
#> 16847 Virginia California 1993
#> 16848 Maine Nebraska 1993
#> 16849 Nevada New Mexico 1993
#> 16850 Kansas Utah 1993
#> 16851 Arkansas Texas 1993
#> 16852 Minnesota Idaho 1993
#> 16853 Nebraska Louisiana 1993
#> 16854 Florida Rhode Island 1993
#> 16855 Washington North Dakota 1993
#> 16856 North Dakota Iowa 1993
#> 16857 Massachusetts South Dakota 1993
#> 16858 Indiana Alabama 1993
#> 16859 Connecticut Ohio 1993
#> 16860 Oklahoma Kansas 1993
#> 16861 Washington Indiana 1993
#> 16862 Nevada Oregon 1993
#> 16863 Arkansas Minnesota 1993
#> 16864 Utah Maryland 1993
#> 16865 Kentucky Idaho 1993
#> 16866 Michigan Wyoming 1993
#> 16867 Nevada Washington 1993
#> 16868 Illinois New Mexico 1993
#> 16869 Montana Michigan 1993
#> 16870 Arkansas Mississippi 1993
#> 16871 Delaware Arkansas 1993
#> 16872 Georgia Rhode Island 1993
#> 16873 Texas Nevada 1993
#> 16874 Tennessee Missouri 1993
#> 16875 Kentucky Massachusetts 1993
#> 16876 Massachusetts Wisconsin 1993
#> 16877 Hawaii Alaska 1993
#> 16878 Colorado New Jersey 1993
#> 16879 Hawaii North Carolina 1993
#> 16880 New York Missouri 1993
#> 16881 Idaho Iowa 1993
#> 16882 Arkansas Delaware 1993
#> 16883 Illinois Virginia 1993
#> 16884 Hawaii Arkansas 1993
#> 16885 Kentucky Pennsylvania 1993
#> 16886 North Dakota Louisiana 1993
#> 16887 Michigan Vermont 1993
#> 16888 California Wyoming 1993
#> 16889 Alabama North Dakota 1993
#> 16890 Massachusetts Kentucky 1993
#> 16891 Washington Texas 1993
#> 16892 Wyoming Maine 1993
#> 16893 Washington Arkansas 1993
#> 16894 Kansas South Carolina 1993
#> 16895 California Alaska 1993
#> 16896 Connecticut Florida 1993
#> 16897 Missouri Kentucky 1993
#> 16898 Colorado Hawaii 1993
#> 16899 South Carolina Vermont 1993
#> 16900 South Dakota Utah 1993
#> 16901 Michigan Maryland 1993
#> 16902 Washington Oklahoma 1993
#> 16903 New Jersey Utah 1993
#> 16904 Connecticut Rhode Island 1993
#> 16905 New Jersey Wisconsin 1993
#> 16906 Minnesota Colorado 1993
#> 16907 Illinois West Virginia 1993
#> 16908 Maryland New Mexico 1993
#> 16909 Minnesota Washington 1993
#> 16910 Nevada Mississippi 1993
#> 16911 Tennessee Louisiana 1993
#> 16912 Colorado Alaska 1993
#> 16913 Louisiana Alaska 1993
#> 16914 Louisiana Oklahoma 1993
#> 16915 New York Illinois 1993
#> 16916 New Jersey Pennsylvania 1993
#> 16917 Ohio North Carolina 1993
#> 16918 New York Nevada 1993
#> 16919 Mississippi Nebraska 1993
#> 16920 Arkansas South Dakota 1993
#> 16921 New Hampshire New York 1993
#> 16922 Mississippi Nevada 1993
#> 16923 California Utah 1993
#> 16924 Hawaii Idaho 1993
#> 16925 Arkansas Connecticut 1993
#> 16926 Mississippi Arizona 1993
#> 16927 Georgia Tennessee 1993
#> 16928 Virginia Oregon 1993
#> 16929 New Jersey Delaware 1993
#> 16930 Maryland Illinois 1993
#> 16931 New York Florida 1993
#> 16932 Pennsylvania Rhode Island 1993
#> 16933 Connecticut Kansas 1993
#> 16934 Delaware Wyoming 1993
#> 16935 Iowa Oklahoma 1993
#> 16936 Kentucky Maryland 1993
#> 16937 South Carolina Arkansas 1993
#> 16938 Arkansas New York 1993
#> 16939 Montana California 1993
#> 16940 New Jersey Nebraska 1993
#> 16941 Maine Wyoming 1993
#> 16942 Hawaii Montana 1993
#> 16943 Kentucky Michigan 1993
#> 16944 Wisconsin Iowa 1993
#> 16945 Arkansas Montana 1993
#> 16946 Tennessee Montana 1993
#> 16947 Idaho Kansas 1993
#> 16948 Hawaii Tennessee 1993
#> 16949 Alabama Missouri 1993
#> 16950 Oklahoma Indiana 1993
#> 16951 South Dakota Wisconsin 1993
#> 16952 Maine Wisconsin 1993
#> 16953 Massachusetts Maine 1993
#> 16954 West Virginia Utah 1993
#> 16955 Wisconsin Idaho 1993
#> 16956 Hawaii West Virginia 1993
#> 16957 Connecticut Iowa 1993
#> 16958 Delaware Nevada 1993
#> 16959 Iowa New Jersey 1993
#> 16960 Idaho Florida 1993
#> 16961 Michigan West Virginia 1993
#> 16962 Hawaii Vermont 1993
#> 16963 Pennsylvania Minnesota 1993
#> 16964 Washington Wyoming 1993
#> 16965 Nevada Hawaii 1993
#> 16966 California Mississippi 1993
#> 16967 Pennsylvania Ohio 1993
#> 16968 California Tennessee 1993
#> 16969 Arkansas Missouri 1993
#> 16970 Tennessee Massachusetts 1993
#> 16971 Vermont New York 1993
#> 16972 Texas Georgia 1993
#> 16973 Illinois Oklahoma 1993
#> 16974 New York Nebraska 1993
#> 16975 New Hampshire Kansas 1993
#> 16976 Maine North Carolina 1993
#> 16977 Wisconsin Rhode Island 1993
#> 16978 Minnesota New Mexico 1993
#> 16979 New Mexico New Hampshire 1993
#> 16980 Georgia Virginia 1993
#> 16981 New York Massachusetts 1993
#> 16982 California Alabama 1993
#> 16983 Missouri Wisconsin 1993
#> 16984 Nevada West Virginia 1993
#> 16985 California West Virginia 1993
#> 16986 Oklahoma Rhode Island 1993
#> 16987 South Carolina New York 1993
#> 16988 Ohio Nevada 1993
#> 16989 North Dakota Montana 1993
#> 16990 Wisconsin Illinois 1993
#> 16991 Mississippi California 1993
#> 16992 Kansas Nebraska 1993
#> 16993 Hawaii Delaware 1993
#> 16994 Rhode Island California 1993
#> 16995 Tennessee New York 1993
#> 16996 Wisconsin Hawaii 1993
#> 16997 Iowa Arkansas 1993
#> 16998 North Carolina Indiana 1993
#> 16999 Hawaii Illinois 1993
#> 17000 Montana Louisiana 1993
#> 17001 Oregon Minnesota 1994
#> 17002 California Oregon 1994
#> 17003 California Colorado 1994
#> 17004 Florida Georgia 1994
#> 17005 Massachusetts Connecticut 1994
#> 17006 Oregon Kentucky 1994
#> 17007 New York Michigan 1994
#> 17008 Minnesota Iowa 1994
#> 17009 Florida Arizona 1994
#> 17010 California Montana 1994
#> 17011 Massachusetts Ohio 1994
#> 17012 New Jersey Illinois 1994
#> 17013 Florida Texas 1994
#> 17014 Oregon South Dakota 1994
#> 17015 Massachusetts California 1994
#> 17016 California Florida 1994
#> 17017 California Washington 1994
#> 17018 Minnesota Indiana 1994
#> 17019 Oregon Alaska 1994
#> 17020 Minnesota North Dakota 1994
#> 17021 Washington Missouri 1994
#> 17022 Minnesota Kansas 1994
#> 17023 New York New Jersey 1994
#> 17024 Minnesota Wisconsin 1994
#> 17025 Massachusetts Rhode Island 1994
#> 17026 Rhode Island Maryland 1994
#> 17027 Oregon New Mexico 1994
#> 17028 Minnesota Virginia 1994
#> 17029 Rhode Island Nebraska 1994
#> 17030 California New Hampshire 1994
#> 17031 Florida Mississippi 1994
#> 17032 California North Carolina 1994
#> 17033 Oregon Idaho 1994
#> 17034 New York Oklahoma 1994
#> 17035 Minnesota Tennessee 1994
#> 17036 California Arkansas 1994
#> 17037 Massachusetts Pennsylvania 1994
#> 17038 Rhode Island Maine 1994
#> 17039 California Nevada 1994
#> 17040 Florida Louisiana 1994
#> 17041 New York West Virginia 1994
#> 17042 Minnesota South Carolina 1994
#> 17043 Oregon Vermont 1994
#> 17044 Minnesota Alabama 1994
#> 17045 Florida Utah 1994
#> 17046 Rhode Island Delaware 1994
#> 17047 California Hawaii 1994
#> 17048 Oregon Wyoming 1994
#> 17049 Connecticut New York 1994
#> 17050 New Jersey Massachusetts 1994
#> 17051 New Jersey Minnesota 1994
#> 17052 New Jersey Oregon 1994
#> 17053 Rhode Island Wisconsin 1994
#> 17054 New York Washington 1994
#> 17055 Oregon Maine 1994
#> 17056 Colorado Ohio 1994
#> 17057 Connecticut Colorado 1994
#> 17058 California New Jersey 1994
#> 17059 California Rhode Island 1994
#> 17060 Florida Oklahoma 1994
#> 17061 Massachusetts Hawaii 1994
#> 17062 New Jersey Vermont 1994
#> 17063 Oregon Arizona 1994
#> 17064 Florida Nebraska 1994
#> 17065 California Illinois 1994
#> 17066 Delaware Montana 1994
#> 17067 Rhode Island Indiana 1994
#> 17068 Minnesota California 1994
#> 17069 Oregon Connecticut 1994
#> 17070 Massachusetts Florida 1994
#> 17071 California Kansas 1994
#> 17072 California North Dakota 1994
#> 17073 Illinois Massachusetts 1994
#> 17074 Florida Virginia 1994
#> 17075 Idaho Delaware 1994
#> 17076 Massachusetts New Hampshire 1994
#> 17077 Connecticut North Carolina 1994
#> 17078 Minnesota Maryland 1994
#> 17079 Florida Idaho 1994
#> 17080 Illinois Pennsylvania 1994
#> 17081 California Georgia 1994
#> 17082 Colorado Missouri 1994
#> 17083 Florida Kentucky 1994
#> 17084 Florida Arkansas 1994
#> 17085 California New Mexico 1994
#> 17086 Idaho Utah 1994
#> 17087 Illinois Texas 1994
#> 17088 New York Iowa 1994
#> 17089 Georgia South Carolina 1994
#> 17090 Idaho Wyoming 1994
#> 17091 Colorado Louisiana 1994
#> 17092 California Minnesota 1994
#> 17093 Delaware South Dakota 1994
#> 17094 Idaho Nevada 1994
#> 17095 Connecticut New Jersey 1994
#> 17096 Oregon Tennessee 1994
#> 17097 Connecticut Massachusetts 1994
#> 17098 Florida Michigan 1994
#> 17099 Minnesota Mississippi 1994
#> 17100 California New York 1994
#> 17101 Florida Alaska 1994
#> 17102 Oregon Iowa 1994
#> 17103 North Dakota Washington 1994
#> 17104 Washington Oregon 1994
#> 17105 Florida Indiana 1994
#> 17106 Massachusetts Kansas 1994
#> 17107 Florida Alabama 1994
#> 17108 New Jersey South Carolina 1994
#> 17109 Hawaii Rhode Island 1994
#> 17110 California Maryland 1994
#> 17111 Connecticut Delaware 1994
#> 17112 Iowa Colorado 1994
#> 17113 Minnesota West Virginia 1994
#> 17114 Connecticut Wisconsin 1994
#> 17115 New Jersey Florida 1994
#> 17116 New Jersey Georgia 1994
#> 17117 Oregon Ohio 1994
#> 17118 New York New Mexico 1994
#> 17119 Colorado Michigan 1994
#> 17120 Utah North Dakota 1994
#> 17121 Colorado Idaho 1994
#> 17122 Oregon Montana 1994
#> 17123 Hawaii California 1994
#> 17124 Connecticut Vermont 1994
#> 17125 Colorado South Dakota 1994
#> 17126 Rhode Island Washington 1994
#> 17127 Illinois Missouri 1994
#> 17128 New York Connecticut 1994
#> 17129 Idaho Minnesota 1994
#> 17130 New York Maine 1994
#> 17131 Michigan Illinois 1994
#> 17132 Minnesota Arkansas 1994
#> 17133 New York North Carolina 1994
#> 17134 Hawaii Virginia 1994
#> 17135 Wisconsin Massachusetts 1994
#> 17136 Oregon Utah 1994
#> 17137 Minnesota New Jersey 1994
#> 17138 Massachusetts New York 1994
#> 17139 Maryland Pennsylvania 1994
#> 17140 Illinois Colorado 1994
#> 17141 Minnesota Oklahoma 1994
#> 17142 Minnesota Nebraska 1994
#> 17143 Connecticut Oregon 1994
#> 17144 Florida Connecticut 1994
#> 17145 Iowa Nevada 1994
#> 17146 Wisconsin California 1994
#> 17147 Illinois Rhode Island 1994
#> 17148 Louisiana Kansas 1994
#> 17149 Florida Tennessee 1994
#> 17150 Louisiana Montana 1994
#> 17151 New York Hawaii 1994
#> 17152 California Massachusetts 1994
#> 17153 Hawaii Florida 1994
#> 17154 Oregon New Hampshire 1994
#> 17155 Iowa North Carolina 1994
#> 17156 Kentucky Arkansas 1994
#> 17157 New York Texas 1994
#> 17158 Indiana Kentucky 1994
#> 17159 Michigan Ohio 1994
#> 17160 Connecticut Louisiana 1994
#> 17161 Rhode Island New Mexico 1994
#> 17162 Michigan California 1994
#> 17163 California Connecticut 1994
#> 17164 Florida Washington 1994
#> 17165 Illinois Minnesota 1994
#> 17166 New Jersey Wisconsin 1994
#> 17167 Kansas Mississippi 1994
#> 17168 Utah Wyoming 1994
#> 17169 Nevada Georgia 1994
#> 17170 Alaska North Dakota 1994
#> 17171 Washington Pennsylvania 1994
#> 17172 Delaware Alabama 1994
#> 17173 Minnesota Maine 1994
#> 17174 Oregon Virginia 1994
#> 17175 Alaska New York 1994
#> 17176 North Dakota New Mexico 1994
#> 17177 Colorado Montana 1994
#> 17178 New Mexico Iowa 1994
#> 17179 Florida West Virginia 1994
#> 17180 Michigan Maryland 1994
#> 17181 Wisconsin Indiana 1994
#> 17182 Michigan Tennessee 1994
#> 17183 Florida Colorado 1994
#> 17184 Nevada Rhode Island 1994
#> 17185 Minnesota Hawaii 1994
#> 17186 Wisconsin Michigan 1994
#> 17187 Michigan Arizona 1994
#> 17188 Michigan Nevada 1994
#> 17189 California Texas 1994
#> 17190 Arkansas Ohio 1994
#> 17191 Louisiana Illinois 1994
#> 17192 Kansas Missouri 1994
#> 17193 Florida North Dakota 1994
#> 17194 Oregon Wisconsin 1994
#> 17195 Indiana South Dakota 1994
#> 17196 New Jersey Idaho 1994
#> 17197 North Dakota Nebraska 1994
#> 17198 Minnesota Arizona 1994
#> 17199 South Carolina Delaware 1994
#> 17200 Missouri South Carolina 1994
#> 17201 California Alaska 1994
#> 17202 Illinois Connecticut 1994
#> 17203 South Dakota North Carolina 1994
#> 17204 Wisconsin Vermont 1994
#> 17205 Rhode Island Tennessee 1994
#> 17206 Minnesota Oregon 1994
#> 17207 Florida New Jersey 1994
#> 17208 Illinois Indiana 1994
#> 17209 Montana New Hampshire 1994
#> 17210 Pennsylvania New York 1994
#> 17211 Massachusetts Kentucky 1994
#> 17212 Vermont Florida 1994
#> 17213 Rhode Island Wyoming 1994
#> 17214 New Jersey Washington 1994
#> 17215 Rhode Island Oregon 1994
#> 17216 Delaware Kansas 1994
#> 17217 Maryland Arkansas 1994
#> 17218 Oregon Oklahoma 1994
#> 17219 New York New Hampshire 1994
#> 17220 Massachusetts Georgia 1994
#> 17221 Oklahoma Nevada 1994
#> 17222 New Mexico Alabama 1994
#> 17223 Louisiana Maryland 1994
#> 17224 California Maine 1994
#> 17225 Illinois Idaho 1994
#> 17226 California Delaware 1994
#> 17227 New Jersey Louisiana 1994
#> 17228 California Nebraska 1994
#> 17229 Connecticut Minnesota 1994
#> 17230 Alabama Utah 1994
#> 17231 Nevada Idaho 1994
#> 17232 Rhode Island Massachusetts 1994
#> 17233 Kansas Colorado 1994
#> 17234 Vermont Indiana 1994
#> 17235 Kentucky Illinois 1994
#> 17236 Wisconsin New Mexico 1994
#> 17237 Hawaii Alaska 1994
#> 17238 Hawaii Oregon 1994
#> 17239 Tennessee Mississippi 1994
#> 17240 Vermont Iowa 1994
#> 17241 New Jersey Pennsylvania 1994
#> 17242 New Jersey Rhode Island 1994
#> 17243 Arkansas Connecticut 1994
#> 17244 Connecticut Washington 1994
#> 17245 Wisconsin North Carolina 1994
#> 17246 Kentucky New York 1994
#> 17247 Louisiana Alaska 1994
#> 17248 Delaware West Virginia 1994
#> 17249 Kansas South Carolina 1994
#> 17250 Florida Pennsylvania 1994
#> 17251 Colorado California 1994
#> 17252 Louisiana Ohio 1994
#> 17253 Virginia Florida 1994
#> 17254 Idaho Montana 1994
#> 17255 Maine Maryland 1994
#> 17256 Washington Louisiana 1994
#> 17257 Colorado Arizona 1994
#> 17258 Kansas Vermont 1994
#> 17259 Florida Iowa 1994
#> 17260 Kansas Hawaii 1994
#> 17261 Illinois New Jersey 1994
#> 17262 Wyoming Iowa 1994
#> 17263 Delaware Tennessee 1994
#> 17264 Vermont Connecticut 1994
#> 17265 Rhode Island Michigan 1994
#> 17266 Massachusetts Missouri 1994
#> 17267 Colorado Minnesota 1994
#> 17268 California South Dakota 1994
#> 17269 Washington North Dakota 1994
#> 17270 Indiana Virginia 1994
#> 17271 New York Nevada 1994
#> 17272 Louisiana Alabama 1994
#> 17273 Arkansas Delaware 1994
#> 17274 New York Missouri 1994
#> 17275 Minnesota Texas 1994
#> 17276 Oregon Colorado 1994
#> 17277 Kentucky Utah 1994
#> 17278 Colorado Maryland 1994
#> 17279 Kansas California 1994
#> 17280 Florida North Carolina 1994
#> 17281 Nevada Washington 1994
#> 17282 West Virginia Georgia 1994
#> 17283 Michigan Florida 1994
#> 17284 Maine Missouri 1994
#> 17285 Wisconsin Maine 1994
#> 17286 Utah Texas 1994
#> 17287 California South Carolina 1994
#> 17288 Wisconsin Colorado 1994
#> 17289 Colorado Tennessee 1994
#> 17290 Kentucky Louisiana 1994
#> 17291 Missouri Kentucky 1994
#> 17292 Illinois Florida 1994
#> 17293 Kansas Wisconsin 1994
#> 17294 Minnesota Rhode Island 1994
#> 17295 Maryland Oregon 1994
#> 17296 California Wisconsin 1994
#> 17297 Iowa Kansas 1994
#> 17298 Kansas Arkansas 1994
#> 17299 Nevada New Mexico 1994
#> 17300 New Mexico Oklahoma 1994
#> 17301 California Oklahoma 1994
#> 17302 Illinois Michigan 1994
#> 17303 Vermont Michigan 1994
#> 17304 Iowa Nebraska 1994
#> 17305 Florida Massachusetts 1994
#> 17306 Arkansas Montana 1994
#> 17307 Louisiana Mississippi 1994
#> 17308 Tennessee Georgia 1994
#> 17309 Rhode Island Hawaii 1994
#> 17310 Delaware Massachusetts 1994
#> 17311 California Louisiana 1994
#> 17312 Maine Arizona 1994
#> 17313 New Hampshire Montana 1994
#> 17314 Pennsylvania Ohio 1994
#> 17315 Kentucky Idaho 1994
#> 17316 Idaho New York 1994
#> 17317 California Kentucky 1994
#> 17318 New York Nebraska 1994
#> 17319 Washington Indiana 1994
#> 17320 New York Idaho 1994
#> 17321 Oregon California 1994
#> 17322 Oregon North Dakota 1994
#> 17323 Michigan Delaware 1994
#> 17324 Colorado West Virginia 1994
#> 17325 New York Rhode Island 1994
#> 17326 Alaska Illinois 1994
#> 17327 Louisiana Nevada 1994
#> 17328 Connecticut Maine 1994
#> 17329 Vermont New Hampshire 1994
#> 17330 Wisconsin Kansas 1994
#> 17331 North Carolina Minnesota 1994
#> 17332 Iowa California 1994
#> 17333 Kentucky Virginia 1994
#> 17334 Vermont Virginia 1994
#> 17335 Wisconsin Alaska 1994
#> 17336 Kansas New Hampshire 1994
#> 17337 Delaware Missouri 1994
#> 17338 Maryland New Jersey 1994
#> 17339 Wisconsin Maryland 1994
#> 17340 New Jersey Utah 1994
#> 17341 Mississippi Nebraska 1994
#> 17342 Minnesota Delaware 1994
#> 17343 Nevada Florida 1994
#> 17344 Tennessee Missouri 1994
#> 17345 Michigan Kansas 1994
#> 17346 Maryland Indiana 1994
#> 17347 South Carolina Illinois 1994
#> 17348 Indiana Wisconsin 1994
#> 17349 Louisiana New Mexico 1994
#> 17350 Oregon Alabama 1994
#> 17351 Maryland Kentucky 1994
#> 17352 Kentucky New Mexico 1994
#> 17353 Connecticut Ohio 1994
#> 17354 Tennessee Florida 1994
#> 17355 California Idaho 1994
#> 17356 Nebraska Arkansas 1994
#> 17357 Oklahoma Rhode Island 1994
#> 17358 West Virginia Utah 1994
#> 17359 Kentucky Texas 1994
#> 17360 Maine North Carolina 1994
#> 17361 Massachusetts South Dakota 1994
#> 17362 Kansas Louisiana 1994
#> 17363 Maine North Dakota 1994
#> 17364 Oregon Delaware 1994
#> 17365 Connecticut South Carolina 1994
#> 17366 Louisiana Oklahoma 1994
#> 17367 Michigan Wyoming 1994
#> 17368 New York Delaware 1994
#> 17369 Washington Montana 1994
#> 17370 Hawaii Tennessee 1994
#> 17371 Florida Rhode Island 1994
#> 17372 Georgia Rhode Island 1994
#> 17373 Maine Minnesota 1994
#> 17374 Kentucky Alaska 1994
#> 17375 Delaware Arkansas 1994
#> 17376 Kentucky Massachusetts 1994
#> 17377 Georgia Alabama 1994
#> 17378 Illinois Iowa 1994
#> 17379 Colorado New Jersey 1994
#> 17380 Nevada Montana 1994
#> 17381 Kentucky Pennsylvania 1994
#> 17382 Minnesota Washington 1994
#> 17383 Idaho Vermont 1994
#> 17384 Wisconsin Missouri 1994
#> 17385 California Ohio 1994
#> 17386 Louisiana Idaho 1994
#> 17387 California Wyoming 1994
#> 17388 Connecticut New Hampshire 1994
#> 17389 South Carolina Wisconsin 1994
#> 17390 Idaho Arizona 1994
#> 17391 South Dakota Nevada 1994
#> 17392 Texas Georgia 1994
#> 17393 Louisiana South Carolina 1994
#> 17394 Utah Virginia 1994
#> 17395 New York Maryland 1994
#> 17396 Idaho Ohio 1994
#> 17397 New Mexico Maine 1994
#> 17398 Connecticut Iowa 1994
#> 17399 Hawaii North Dakota 1994
#> 17400 Alaska Nevada 1994
#> 17401 Colorado Hawaii 1994
#> 17402 South Dakota Utah 1994
#> 17403 Vermont Oregon 1994
#> 17404 New Jersey Connecticut 1994
#> 17405 Connecticut New Mexico 1994
#> 17406 North Dakota Kentucky 1994
#> 17407 Georgia Louisiana 1994
#> 17408 Minnesota Colorado 1994
#> 17409 Illinois West Virginia 1994
#> 17410 Wisconsin Minnesota 1994
#> 17411 Maine Nebraska 1994
#> 17412 Mississippi Arizona 1994
#> 17413 Idaho Texas 1994
#> 17414 Utah Maryland 1994
#> 17415 Ohio Tennessee 1994
#> 17416 Colorado Arkansas 1994
#> 17417 Oregon North Carolina 1994
#> 17418 Connecticut Rhode Island 1994
#> 17419 Arkansas Vermont 1994
#> 17420 Colorado Alaska 1994
#> 17421 Virginia Iowa 1994
#> 17422 Delaware New Hampshire 1994
#> 17423 Hawaii Vermont 1994
#> 17424 Maryland Illinois 1994
#> 17425 Virginia California 1994
#> 17426 Oregon Georgia 1994
#> 17427 Kentucky Michigan 1994
#> 17428 Hawaii Washington 1994
#> 17429 New York Florida 1994
#> 17430 Arkansas South Dakota 1994
#> 17431 Maryland Tennessee 1994
#> 17432 Wisconsin Oregon 1994
#> 17433 New Hampshire New York 1994
#> 17434 New York Illinois 1994
#> 17435 New York Oregon 1994
#> 17436 Kansas New Mexico 1994
#> 17437 Massachusetts Maine 1994
#> 17438 Kentucky Maryland 1994
#> 17439 Vermont South Carolina 1994
#> 17440 New York Minnesota 1994
#> 17441 Mississippi Nevada 1994
#> 17442 New Mexico Illinois 1994
#> 17443 Iowa Oklahoma 1994
#> 17444 California Utah 1994
#> 17445 Idaho Kansas 1994
#> 17446 Connecticut Kansas 1994
#> 17447 Wisconsin Idaho 1994
#> 17448 Delaware Wyoming 1994
#> 17449 Pennsylvania Rhode Island 1994
#> 17450 New Jersey Alaska 1994
#> 17451 Maine New Hampshire 1994
#> 17452 Nebraska Mississippi 1994
#> 17453 Kentucky Missouri 1994
#> 17454 Vermont Alabama 1994
#> 17455 Arkansas New York 1994
#> 17456 Montana Mississippi 1994
#> 17457 Maine Wyoming 1994
#> 17458 Ohio North Carolina 1994
#> 17459 Delaware Nevada 1994
#> 17460 Rhode Island California 1994
#> 17461 Tennessee Virginia 1994
#> 17462 Tennessee Massachusetts 1994
#> 17463 Wisconsin Rhode Island 1994
#> 17464 Idaho Iowa 1994
#> 17465 Georgia Montana 1994
#> 17466 Illinois Oklahoma 1994
#> 17467 North Carolina Alabama 1994
#> 17468 New Jersey Delaware 1994
#> 17469 Indiana New Jersey 1994
#> 17470 Tennessee Montana 1994
#> 17471 Colorado Texas 1994
#> 17472 Iowa Arkansas 1994
#> 17473 Idaho Wisconsin 1994
#> 17474 Hawaii West Virginia 1994
#> 17475 Hawaii Montana 1994
#> 17476 Maryland Nebraska 1994
#> 17477 Michigan West Virginia 1994
#> 17478 Massachusetts Oregon 1994
#> 17479 Mississippi California 1994
#> 17480 Washington Wyoming 1994
#> 17481 Alabama Missouri 1994
#> 17482 Pennsylvania New Mexico 1994
#> 17483 Nevada Hawaii 1994
#> 17484 Florida Nevada 1994
#> 17485 California Mississippi 1994
#> 17486 Kansas Nebraska 1994
#> 17487 Vermont New York 1994
#> 17488 Delaware North Dakota 1994
#> 17489 Maine Nevada 1994
#> 17490 Oklahoma Kansas 1994
#> 17491 Hawaii Arkansas 1994
#> 17492 Tennessee Arizona 1994
#> 17493 Maine Wisconsin 1994
#> 17494 Idaho Florida 1994
#> 17495 New Hampshire Kansas 1994
#> 17496 California Tennessee 1994
#> 17497 New York Massachusetts 1994
#> 17498 Missouri Wisconsin 1994
#> 17499 Iowa Wisconsin 1994
#> 17500 Nevada West Virginia 1994
#> 17501 Minnesota Ohio 1995
#> 17502 California Colorado 1995
#> 17503 Minnesota Iowa 1995
#> 17504 California Oregon 1995
#> 17505 Oregon Minnesota 1995
#> 17506 Oregon Kentucky 1995
#> 17507 California Washington 1995
#> 17508 Oregon New Mexico 1995
#> 17509 California Florida 1995
#> 17510 Florida Arizona 1995
#> 17511 Massachusetts Connecticut 1995
#> 17512 Oregon South Dakota 1995
#> 17513 Minnesota Illinois 1995
#> 17514 New York Michigan 1995
#> 17515 Minnesota Missouri 1995
#> 17516 Minnesota Virginia 1995
#> 17517 Rhode Island Nebraska 1995
#> 17518 Massachusetts California 1995
#> 17519 Minnesota Indiana 1995
#> 17520 California Montana 1995
#> 17521 Florida Georgia 1995
#> 17522 Minnesota North Dakota 1995
#> 17523 Oregon Alaska 1995
#> 17524 Oregon Idaho 1995
#> 17525 Minnesota Texas 1995
#> 17526 Connecticut New Jersey 1995
#> 17527 Florida Mississippi 1995
#> 17528 California New Hampshire 1995
#> 17529 Colorado Kansas 1995
#> 17530 Oregon Maryland 1995
#> 17531 Oregon Oklahoma 1995
#> 17532 Minnesota Wisconsin 1995
#> 17533 Massachusetts Rhode Island 1995
#> 17534 Oregon Vermont 1995
#> 17535 Oregon Tennessee 1995
#> 17536 California North Carolina 1995
#> 17537 Minnesota Alabama 1995
#> 17538 Oregon Maine 1995
#> 17539 California Arkansas 1995
#> 17540 Idaho Utah 1995
#> 17541 Massachusetts Pennsylvania 1995
#> 17542 Oregon West Virginia 1995
#> 17543 California Nevada 1995
#> 17544 Minnesota South Carolina 1995
#> 17545 Oregon Delaware 1995
#> 17546 New Jersey Massachusetts 1995
#> 17547 Florida Louisiana 1995
#> 17548 Oregon Wyoming 1995
#> 17549 Connecticut New York 1995
#> 17550 California Hawaii 1995
#> 17551 New Jersey Oregon 1995
#> 17552 California Minnesota 1995
#> 17553 Connecticut Washington 1995
#> 17554 California New Jersey 1995
#> 17555 Rhode Island Ohio 1995
#> 17556 Rhode Island Wisconsin 1995
#> 17557 Oregon Arizona 1995
#> 17558 Rhode Island Maine 1995
#> 17559 Connecticut Colorado 1995
#> 17560 California Rhode Island 1995
#> 17561 Minnesota California 1995
#> 17562 Florida Virginia 1995
#> 17563 Oregon Connecticut 1995
#> 17564 California New Mexico 1995
#> 17565 Massachusetts Hawaii 1995
#> 17566 New Jersey Vermont 1995
#> 17567 Delaware South Dakota 1995
#> 17568 Georgia Indiana 1995
#> 17569 Colorado Idaho 1995
#> 17570 Connecticut Massachusetts 1995
#> 17571 Delaware Montana 1995
#> 17572 Massachusetts Florida 1995
#> 17573 Florida Oklahoma 1995
#> 17574 Florida Nebraska 1995
#> 17575 Michigan Maryland 1995
#> 17576 California North Dakota 1995
#> 17577 Rhode Island Missouri 1995
#> 17578 Connecticut North Carolina 1995
#> 17579 Illinois Pennsylvania 1995
#> 17580 California Georgia 1995
#> 17581 Massachusetts New Hampshire 1995
#> 17582 California Kansas 1995
#> 17583 Florida Utah 1995
#> 17584 Florida Kentucky 1995
#> 17585 Illinois Delaware 1995
#> 17586 Delaware Iowa 1995
#> 17587 Idaho Wyoming 1995
#> 17588 Florida Arkansas 1995
#> 17589 California Illinois 1995
#> 17590 New Jersey Tennessee 1995
#> 17591 Florida Texas 1995
#> 17592 Florida Michigan 1995
#> 17593 Connecticut Minnesota 1995
#> 17594 Georgia South Carolina 1995
#> 17595 Minnesota Louisiana 1995
#> 17596 Idaho Nevada 1995
#> 17597 New York New Jersey 1995
#> 17598 Florida West Virginia 1995
#> 17599 Minnesota Washington 1995
#> 17600 Minnesota Mississippi 1995
#> 17601 Florida Alaska 1995
#> 17602 California New York 1995
#> 17603 Illinois Massachusetts 1995
#> 17604 Connecticut Oregon 1995
#> 17605 Florida Alabama 1995
#> 17606 Washington Indiana 1995
#> 17607 California Delaware 1995
#> 17608 Hawaii Rhode Island 1995
#> 17609 California Maryland 1995
#> 17610 Massachusetts New Mexico 1995
#> 17611 Iowa Wisconsin 1995
#> 17612 Kansas Virginia 1995
#> 17613 Idaho Colorado 1995
#> 17614 Louisiana Georgia 1995
#> 17615 Colorado Michigan 1995
#> 17616 Oregon Montana 1995
#> 17617 New Jersey South Carolina 1995
#> 17618 Oregon Kansas 1995
#> 17619 Oregon California 1995
#> 17620 Minnesota Nebraska 1995
#> 17621 Illinois Minnesota 1995
#> 17622 New York Ohio 1995
#> 17623 New York Washington 1995
#> 17624 New York Iowa 1995
#> 17625 Wisconsin Massachusetts 1995
#> 17626 Oregon Utah 1995
#> 17627 Florida Missouri 1995
#> 17628 Hawaii Florida 1995
#> 17629 Utah North Dakota 1995
#> 17630 Florida Idaho 1995
#> 17631 Connecticut Vermont 1995
#> 17632 Minnesota New Jersey 1995
#> 17633 Colorado South Dakota 1995
#> 17634 Michigan Illinois 1995
#> 17635 New York Connecticut 1995
#> 17636 Massachusetts Colorado 1995
#> 17637 New York Maine 1995
#> 17638 Minnesota Arkansas 1995
#> 17639 New York Oklahoma 1995
#> 17640 New York North Carolina 1995
#> 17641 Illinois Tennessee 1995
#> 17642 Idaho Delaware 1995
#> 17643 Michigan California 1995
#> 17644 Massachusetts New York 1995
#> 17645 Maryland Pennsylvania 1995
#> 17646 Washington Oregon 1995
#> 17647 Rhode Island Wyoming 1995
#> 17648 Oregon New Hampshire 1995
#> 17649 New York Texas 1995
#> 17650 Illinois Rhode Island 1995
#> 17651 Florida Connecticut 1995
#> 17652 Iowa Nevada 1995
#> 17653 Oregon Iowa 1995
#> 17654 Wisconsin Indiana 1995
#> 17655 Indiana Kentucky 1995
#> 17656 Florida Ohio 1995
#> 17657 Utah Kansas 1995
#> 17658 Kansas Mississippi 1995
#> 17659 New York Hawaii 1995
#> 17660 Colorado Arizona 1995
#> 17661 New Jersey Florida 1995
#> 17662 Montana Virginia 1995
#> 17663 California Texas 1995
#> 17664 California Massachusetts 1995
#> 17665 Kentucky Illinois 1995
#> 17666 Iowa North Carolina 1995
#> 17667 Kentucky Arkansas 1995
#> 17668 Colorado Minnesota 1995
#> 17669 Louisiana Montana 1995
#> 17670 Delaware Alabama 1995
#> 17671 Massachusetts West Virginia 1995
#> 17672 California Connecticut 1995
#> 17673 California Louisiana 1995
#> 17674 Nevada New Mexico 1995
#> 17675 Idaho Michigan 1995
#> 17676 Idaho Tennessee 1995
#> 17677 Alaska North Dakota 1995
#> 17678 Arkansas California 1995
#> 17679 Minnesota Maryland 1995
#> 17680 Washington Pennsylvania 1995
#> 17681 Oregon Ohio 1995
#> 17682 Alaska New York 1995
#> 17683 Minnesota Maine 1995
#> 17684 New York Delaware 1995
#> 17685 Colorado Montana 1995
#> 17686 California Wisconsin 1995
#> 17687 New Jersey Georgia 1995
#> 17688 Hawaii Alaska 1995
#> 17689 New Mexico Rhode Island 1995
#> 17690 New Jersey Washington 1995
#> 17691 Minnesota Hawaii 1995
#> 17692 Michigan Nevada 1995
#> 17693 Michigan Arizona 1995
#> 17694 California Nebraska 1995
#> 17695 Colorado Louisiana 1995
#> 17696 New Jersey Idaho 1995
#> 17697 Florida Indiana 1995
#> 17698 Indiana South Dakota 1995
#> 17699 Delaware Connecticut 1995
#> 17700 Montana New Hampshire 1995
#> 17701 North Dakota Kentucky 1995
#> 17702 Rhode Island New Mexico 1995
#> 17703 Minnesota Oklahoma 1995
#> 17704 Missouri South Carolina 1995
#> 17705 Wisconsin Vermont 1995
#> 17706 Oregon Wisconsin 1995
#> 17707 South Dakota North Carolina 1995
#> 17708 Delaware North Dakota 1995
#> 17709 Minnesota Oregon 1995
#> 17710 Florida New Jersey 1995
#> 17711 New Jersey Minnesota 1995
#> 17712 Rhode Island Maryland 1995
#> 17713 Pennsylvania New York 1995
#> 17714 Louisiana Kansas 1995
#> 17715 Utah Wyoming 1995
#> 17716 Minnesota Delaware 1995
#> 17717 Colorado Missouri 1995
#> 17718 Utah Virginia 1995
#> 17719 Alabama Utah 1995
#> 17720 Rhode Island Oregon 1995
#> 17721 Montana Washington 1995
#> 17722 Tennessee Mississippi 1995
#> 17723 Maryland Arkansas 1995
#> 17724 North Dakota New Mexico 1995
#> 17725 New Mexico Alabama 1995
#> 17726 North Dakota Nebraska 1995
#> 17727 Minnesota Florida 1995
#> 17728 Nevada Idaho 1995
#> 17729 New York New Hampshire 1995
#> 17730 Louisiana Alaska 1995
#> 17731 Washington Colorado 1995
#> 17732 Iowa Colorado 1995
#> 17733 Oklahoma Nevada 1995
#> 17734 California Maine 1995
#> 17735 Idaho Illinois 1995
#> 17736 Minnesota Arizona 1995
#> 17737 Minnesota West Virginia 1995
#> 17738 Illinois Idaho 1995
#> 17739 Minnesota Michigan 1995
#> 17740 Tennessee Florida 1995
#> 17741 Washington North Carolina 1995
#> 17742 Illinois Missouri 1995
#> 17743 Illinois Ohio 1995
#> 17744 Rhode Island Massachusetts 1995
#> 17745 North Dakota Louisiana 1995
#> 17746 Illinois Iowa 1995
#> 17747 California Ohio 1995
#> 17748 Nevada Georgia 1995
#> 17749 Florida Maryland 1995
#> 17750 Hawaii Oregon 1995
#> 17751 Wisconsin California 1995
#> 17752 Illinois Connecticut 1995
#> 17753 Minnesota Kansas 1995
#> 17754 Kentucky New York 1995
#> 17755 New Jersey Pennsylvania 1995
#> 17756 Idaho South Carolina 1995
#> 17757 Louisiana Indiana 1995
#> 17758 New Mexico Colorado 1995
#> 17759 Connecticut Tennessee 1995
#> 17760 Florida Pennsylvania 1995
#> 17761 New Jersey Wisconsin 1995
#> 17762 Idaho Montana 1995
#> 17763 Kansas Texas 1995
#> 17764 Virginia Florida 1995
#> 17765 Kansas Vermont 1995
#> 17766 Louisiana New Mexico 1995
#> 17767 Tennessee Georgia 1995
#> 17768 Kansas Hawaii 1995
#> 17769 Illinois New Jersey 1995
#> 17770 Tennessee Missouri 1995
#> 17771 Washington North Dakota 1995
#> 17772 California Alaska 1995
#> 17773 Connecticut South Carolina 1995
#> 17774 New Jersey Nebraska 1995
#> 17775 New Jersey Rhode Island 1995
#> 17776 California South Dakota 1995
#> 17777 Texas Colorado 1995
#> 17778 Delaware Kansas 1995
#> 17779 Arkansas Mississippi 1995
#> 17780 New Jersey Louisiana 1995
#> 17781 Iowa Utah 1995
#> 17782 New York Nevada 1995
#> 17783 Wisconsin Michigan 1995
#> 17784 New York New Mexico 1995
#> 17785 Idaho Washington 1995
#> 17786 Louisiana Alabama 1995
#> 17787 Missouri Kentucky 1995
#> 17788 Oregon North Dakota 1995
#> 17789 North Carolina Minnesota 1995
#> 17790 Maine Maryland 1995
#> 17791 Rhode Island Washington 1995
#> 17792 New Mexico Oklahoma 1995
#> 17793 Illinois Virginia 1995
#> 17794 West Virginia Georgia 1995
#> 17795 Washington California 1995
#> 17796 Vermont Virginia 1995
#> 17797 Michigan Florida 1995
#> 17798 Wisconsin Maine 1995
#> 17799 Oregon Missouri 1995
#> 17800 Oregon New Jersey 1995
#> 17801 Kansas Wisconsin 1995
#> 17802 Nevada Rhode Island 1995
#> 17803 Kansas Iowa 1995
#> 17804 Minnesota Rhode Island 1995
#> 17805 Maryland Oregon 1995
#> 17806 Florida North Carolina 1995
#> 17807 Kansas Arkansas 1995
#> 17808 California Oklahoma 1995
#> 17809 Kentucky Idaho 1995
#> 17810 Vermont Connecticut 1995
#> 17811 Wisconsin North Carolina 1995
#> 17812 Maryland Kentucky 1995
#> 17813 North Carolina Arizona 1995
#> 17814 Connecticut Louisiana 1995
#> 17815 Florida Massachusetts 1995
#> 17816 Florida New York 1995
#> 17817 Rhode Island Michigan 1995
#> 17818 Arkansas Montana 1995
#> 17819 Delaware Massachusetts 1995
#> 17820 Idaho Iowa 1995
#> 17821 Rhode Island Hawaii 1995
#> 17822 New Hampshire Montana 1995
#> 17823 Minnesota Tennessee 1995
#> 17824 South Carolina Vermont 1995
#> 17825 South Dakota Nebraska 1995
#> 17826 Massachusetts Wisconsin 1995
#> 17827 Wisconsin Alaska 1995
#> 17828 Oregon Louisiana 1995
#> 17829 California Kentucky 1995
#> 17830 Washington Texas 1995
#> 17831 Virginia Indiana 1995
#> 17832 Delaware West Virginia 1995
#> 17833 Idaho Ohio 1995
#> 17834 Montana Florida 1995
#> 17835 Louisiana Nevada 1995
#> 17836 Connecticut Maine 1995
#> 17837 Ohio Tennessee 1995
#> 17838 Kansas New Hampshire 1995
#> 17839 Hawaii Minnesota 1995
#> 17840 Kentucky Missouri 1995
#> 17841 North Dakota South Dakota 1995
#> 17842 Kentucky Utah 1995
#> 17843 Arkansas Alabama 1995
#> 17844 Idaho New Mexico 1995
#> 17845 New Jersey Illinois 1995
#> 17846 Nebraska Iowa 1995
#> 17847 Nebraska Georgia 1995
#> 17848 Illinois West Virginia 1995
#> 17849 Maryland New Mexico 1995
#> 17850 South Carolina Illinois 1995
#> 17851 New Jersey Utah 1995
#> 17852 Kansas South Carolina 1995
#> 17853 Kentucky Louisiana 1995
#> 17854 Missouri Mississippi 1995
#> 17855 Wisconsin Idaho 1995
#> 17856 New Jersey Delaware 1995
#> 17857 Mississippi California 1995
#> 17858 California Tennessee 1995
#> 17859 New York Florida 1995
#> 17860 Rhode Island California 1995
#> 17861 Michigan Indiana 1995
#> 17862 New York Illinois 1995
#> 17863 North Dakota California 1995
#> 17864 California Idaho 1995
#> 17865 Idaho Arizona 1995
#> 17866 Nebraska Arkansas 1995
#> 17867 Kentucky Massachusetts 1995
#> 17868 Hawaii Washington 1995
#> 17869 Maine North Dakota 1995
#> 17870 Arkansas Virginia 1995
#> 17871 South Dakota Tennessee 1995
#> 17872 Louisiana Idaho 1995
#> 17873 Michigan Wyoming 1995
#> 17874 Washington Montana 1995
#> 17875 Connecticut California 1995
#> 17876 New Jersey Texas 1995
#> 17877 Florida Rhode Island 1995
#> 17878 Nevada New York 1995
#> 17879 Vermont New York 1995
#> 17880 Virginia Iowa 1995
#> 17881 Massachusetts South Dakota 1995
#> 17882 Kentucky Alaska 1995
#> 17883 Missouri Colorado 1995
#> 17884 New York Kansas 1995
#> 17885 Delaware Arkansas 1995
#> 17886 New York Maryland 1995
#> 17887 New York Missouri 1995
#> 17888 Nevada Montana 1995
#> 17889 Kentucky Pennsylvania 1995
#> 17890 Illinois Oklahoma 1995
#> 17891 Colorado New Jersey 1995
#> 17892 Missouri Michigan 1995
#> 17893 Wisconsin Delaware 1995
#> 17894 Hawaii Arizona 1995
#> 17895 Vermont Michigan 1995
#> 17896 Idaho Florida 1995
#> 17897 Mississippi Arizona 1995
#> 17898 Connecticut New Hampshire 1995
#> 17899 New Mexico Mississippi 1995
#> 17900 South Dakota Virginia 1995
#> 17901 New York Rhode Island 1995
#> 17902 California Wyoming 1995
#> 17903 Wisconsin Missouri 1995
#> 17904 Massachusetts Kentucky 1995
#> 17905 South Dakota Nevada 1995
#> 17906 Alaska Nevada 1995
#> 17907 Colorado Maryland 1995
#> 17908 Utah Connecticut 1995
#> 17909 Illinois New York 1995
#> 17910 Texas Ohio 1995
#> 17911 South Dakota Utah 1995
#> 17912 Louisiana South Carolina 1995
#> 17913 North Dakota Virginia 1995
#> 17914 New Mexico Maine 1995
#> 17915 Michigan Tennessee 1995
#> 17916 Iowa Nebraska 1995
#> 17917 Wisconsin Colorado 1995
#> 17918 California Virginia 1995
#> 17919 Washington Massachusetts 1995
#> 17920 Montana Minnesota 1995
#> 17921 Colorado Hawaii 1995
#> 17922 Hawaii Vermont 1995
#> 17923 Idaho Texas 1995
#> 17924 Utah Maryland 1995
#> 17925 New Mexico Illinois 1995
#> 17926 Connecticut Rhode Island 1995
#> 17927 Washington New Mexico 1995
#> 17928 Rhode Island Minnesota 1995
#> 17929 Maine Ohio 1995
#> 17930 Washington Kansas 1995
#> 17931 Delaware New Hampshire 1995
#> 17932 Indiana New Jersey 1995
#> 17933 Washington Wisconsin 1995
#> 17934 Oregon Georgia 1995
#> 17935 Colorado Arkansas 1995
#> 17936 Nebraska Arizona 1995
#> 17937 Hawaii Alabama 1995
#> 17938 Texas Maryland 1995
#> 17939 Colorado Alaska 1995
#> 17940 Maine New Hampshire 1995
#> 17941 Idaho Indiana 1995
#> 17942 Connecticut Wisconsin 1995
#> 17943 Connecticut New Mexico 1995
#> 17944 Iowa Oklahoma 1995
#> 17945 Maryland Tennessee 1995
#> 17946 Idaho Missouri 1995
#> 17947 Mississippi Nebraska 1995
#> 17948 Washington Maryland 1995
#> 17949 New Hampshire Kansas 1995
#> 17950 Hawaii Idaho 1995
#> 17951 Wisconsin Oregon 1995
#> 17952 Kentucky Michigan 1995
#> 17953 Nevada Mississippi 1995
#> 17954 Ohio North Carolina 1995
#> 17955 New York Oregon 1995
#> 17956 New Hampshire New York 1995
#> 17957 Massachusetts Maine 1995
#> 17958 Connecticut Iowa 1995
#> 17959 Maine Nebraska 1995
#> 17960 Connecticut Kansas 1995
#> 17961 Massachusetts Georgia 1995
#> 17962 Pennsylvania Rhode Island 1995
#> 17963 New Mexico Iowa 1995
#> 17964 Nevada Washington 1995
#> 17965 California Utah 1995
#> 17966 Idaho Kansas 1995
#> 17967 Delaware Wyoming 1995
#> 17968 Tennessee Massachusetts 1995
#> 17969 Maine Indiana 1995
#> 17970 New Jersey Alaska 1995
#> 17971 New York California 1995
#> 17972 Georgia Maryland 1995
#> 17973 Delaware Missouri 1995
#> 17974 Pennsylvania Wisconsin 1995
#> 17975 Kentucky North Dakota 1995
#> 17976 Maine Wyoming 1995
#> 17977 Hawaii Tennessee 1995
#> 17978 Washington Louisiana 1995
#> 17979 Maryland Indiana 1995
#> 17980 Arkansas Vermont 1995
#> 17981 Maine Nevada 1995
#> 17982 Delaware Nevada 1995
#> 17983 Utah New Jersey 1995
#> 17984 South Carolina Idaho 1995
#> 17985 California South Carolina 1995
#> 17986 Kansas New Mexico 1995
#> 17987 Missouri Minnesota 1995
#> 17988 Wisconsin Iowa 1995
#> 17989 Georgia Montana 1995
#> 17990 Georgia Florida 1995
#> 17991 Arizona Colorado 1995
#> 17992 Alabama Missouri 1995
#> 17993 Oregon Alabama 1995
#> 17994 Tennessee Montana 1995
#> 17995 Iowa Arkansas 1995
#> 17996 Maine Wisconsin 1995
#> 17997 Michigan Rhode Island 1995
#> 17998 Hawaii North Dakota 1995
#> 17999 New Mexico Washington 1995
#> 18000 Hawaii Montana 1995
#> 18001 California Oregon 1996
#> 18002 Minnesota Ohio 1996
#> 18003 Minnesota Iowa 1996
#> 18004 California Colorado 1996
#> 18005 Oregon Minnesota 1996
#> 18006 Florida Texas 1996
#> 18007 Minnesota Illinois 1996
#> 18008 Minnesota Virginia 1996
#> 18009 Oregon Kentucky 1996
#> 18010 California Florida 1996
#> 18011 Colorado South Dakota 1996
#> 18012 California Montana 1996
#> 18013 California Washington 1996
#> 18014 Minnesota Missouri 1996
#> 18015 Oregon New Mexico 1996
#> 18016 New York Michigan 1996
#> 18017 Minnesota Indiana 1996
#> 18018 Minnesota North Dakota 1996
#> 18019 Oregon Maryland 1996
#> 18020 Massachusetts Connecticut 1996
#> 18021 Minnesota Nebraska 1996
#> 18022 Minnesota Georgia 1996
#> 18023 California New Hampshire 1996
#> 18024 Oregon Idaho 1996
#> 18025 Connecticut New Jersey 1996
#> 18026 California North Carolina 1996
#> 18027 Massachusetts California 1996
#> 18028 Oregon Alaska 1996
#> 18029 Minnesota Arizona 1996
#> 18030 Colorado Kansas 1996
#> 18031 Oregon Oklahoma 1996
#> 18032 Minnesota Tennessee 1996
#> 18033 Florida Mississippi 1996
#> 18034 Minnesota Alabama 1996
#> 18035 California Nevada 1996
#> 18036 Oregon Maine 1996
#> 18037 Minnesota Wisconsin 1996
#> 18038 Idaho Utah 1996
#> 18039 Massachusetts Rhode Island 1996
#> 18040 California Arkansas 1996
#> 18041 Oregon Vermont 1996
#> 18042 Minnesota South Carolina 1996
#> 18043 Minnesota West Virginia 1996
#> 18044 Connecticut Pennsylvania 1996
#> 18045 Oregon Delaware 1996
#> 18046 California Hawaii 1996
#> 18047 Colorado Louisiana 1996
#> 18048 Colorado Wyoming 1996
#> 18049 New Jersey Massachusetts 1996
#> 18050 Connecticut New York 1996
#> 18051 California Minnesota 1996
#> 18052 Connecticut Oregon 1996
#> 18053 New York New Jersey 1996
#> 18054 Massachusetts Washington 1996
#> 18055 Rhode Island Ohio 1996
#> 18056 Rhode Island Wisconsin 1996
#> 18057 Minnesota California 1996
#> 18058 California Rhode Island 1996
#> 18059 Oregon Connecticut 1996
#> 18060 California New Mexico 1996
#> 18061 Florida Arizona 1996
#> 18062 Rhode Island Maine 1996
#> 18063 Connecticut Colorado 1996
#> 18064 California North Dakota 1996
#> 18065 Kansas Virginia 1996
#> 18066 New Jersey Vermont 1996
#> 18067 Colorado Montana 1996
#> 18068 Florida Georgia 1996
#> 18069 North Dakota South Dakota 1996
#> 18070 Massachusetts Hawaii 1996
#> 18071 Minnesota Texas 1996
#> 18072 Rhode Island Indiana 1996
#> 18073 Colorado Idaho 1996
#> 18074 Wisconsin Massachusetts 1996
#> 18075 Minnesota Florida 1996
#> 18076 Florida Oklahoma 1996
#> 18077 Rhode Island Missouri 1996
#> 18078 Minnesota Michigan 1996
#> 18079 California Kansas 1996
#> 18080 California Maryland 1996
#> 18081 Delaware Nebraska 1996
#> 18082 California Illinois 1996
#> 18083 Florida Arkansas 1996
#> 18084 Illinois Pennsylvania 1996
#> 18085 Massachusetts North Carolina 1996
#> 18086 Georgia South Carolina 1996
#> 18087 Michigan Delaware 1996
#> 18088 Idaho Nevada 1996
#> 18089 Florida Louisiana 1996
#> 18090 Florida Utah 1996
#> 18091 Idaho Iowa 1996
#> 18092 Florida Kentucky 1996
#> 18093 Minnesota New Jersey 1996
#> 18094 Minnesota Mississippi 1996
#> 18095 Massachusetts New Hampshire 1996
#> 18096 South Carolina Wyoming 1996
#> 18097 New York Minnesota 1996
#> 18098 Idaho Tennessee 1996
#> 18099 Florida Alabama 1996
#> 18100 California Alaska 1996
#> 18101 Massachusetts West Virginia 1996
#> 18102 Connecticut Massachusetts 1996
#> 18103 California New York 1996
#> 18104 Washington Oregon 1996
#> 18105 Minnesota Washington 1996
#> 18106 Hawaii Rhode Island 1996
#> 18107 California Delaware 1996
#> 18108 Delaware South Dakota 1996
#> 18109 Georgia Indiana 1996
#> 18110 Connecticut Maine 1996
#> 18111 New York Iowa 1996
#> 18112 Michigan Maryland 1996
#> 18113 Idaho Colorado 1996
#> 18114 Florida Virginia 1996
#> 18115 Hawaii Montana 1996
#> 18116 Michigan Illinois 1996
#> 18117 Massachusetts New Mexico 1996
#> 18118 Virginia North Carolina 1996
#> 18119 Florida Wisconsin 1996
#> 18120 Florida Ohio 1996
#> 18121 Massachusetts Pennsylvania 1996
#> 18122 Rhode Island California 1996
#> 18123 Idaho Washington 1996
#> 18124 Florida Connecticut 1996
#> 18125 Idaho Texas 1996
#> 18126 Louisiana Kansas 1996
#> 18127 Minnesota Arkansas 1996
#> 18128 Oregon Utah 1996
#> 18129 Illinois Massachusetts 1996
#> 18130 Connecticut Vermont 1996
#> 18131 Utah North Dakota 1996
#> 18132 Illinois Minnesota 1996
#> 18133 Kansas Mississippi 1996
#> 18134 Florida Idaho 1996
#> 18135 Idaho Oklahoma 1996
#> 18136 California New Jersey 1996
#> 18137 Florida South Carolina 1996
#> 18138 Massachusetts Florida 1996
#> 18139 California Georgia 1996
#> 18140 Florida Missouri 1996
#> 18141 California Nebraska 1996
#> 18142 Massachusetts Colorado 1996
#> 18143 Idaho Delaware 1996
#> 18144 Oregon New Hampshire 1996
#> 18145 Massachusetts Tennessee 1996
#> 18146 Kansas Louisiana 1996
#> 18147 Florida Michigan 1996
#> 18148 Oregon Arizona 1996
#> 18149 Louisiana Georgia 1996
#> 18150 Michigan Florida 1996
#> 18151 New York Connecticut 1996
#> 18152 Louisiana Rhode Island 1996
#> 18153 New Jersey New York 1996
#> 18154 New York Hawaii 1996
#> 18155 Oregon Iowa 1996
#> 18156 New Jersey Oregon 1996
#> 18157 Hawaii California 1996
#> 18158 Oregon Wisconsin 1996
#> 18159 New York Nevada 1996
#> 18160 North Dakota Kentucky 1996
#> 18161 Washington Indiana 1996
#> 18162 Louisiana Montana 1996
#> 18163 New York Ohio 1996
#> 18164 Idaho Virginia 1996
#> 18165 Nevada Wyoming 1996
#> 18166 Louisiana New Mexico 1996
#> 18167 Oregon Kansas 1996
#> 18168 California Connecticut 1996
#> 18169 Michigan Tennessee 1996
#> 18170 Colorado Michigan 1996
#> 18171 California Massachusetts 1996
#> 18172 Kentucky Illinois 1996
#> 18173 Kentucky Arkansas 1996
#> 18174 Missouri West Virginia 1996
#> 18175 Idaho Alaska 1996
#> 18176 Colorado Minnesota 1996
#> 18177 California Pennsylvania 1996
#> 18178 Florida Nebraska 1996
#> 18179 Minnesota Maine 1996
#> 18180 Louisiana Nevada 1996
#> 18181 Delaware Arizona 1996
#> 18182 Delaware Washington 1996
#> 18183 California Ohio 1996
#> 18184 New York Texas 1996
#> 18185 Wisconsin Vermont 1996
#> 18186 Illinois New York 1996
#> 18187 Minnesota Maryland 1996
#> 18188 Minnesota Delaware 1996
#> 18189 Nevada Idaho 1996
#> 18190 Delaware Alabama 1996
#> 18191 Illinois Connecticut 1996
#> 18192 California Louisiana 1996
#> 18193 New York North Carolina 1996
#> 18194 Tennessee Missouri 1996
#> 18195 Hawaii Florida 1996
#> 18196 Tennessee Mississippi 1996
#> 18197 Illinois Rhode Island 1996
#> 18198 Iowa North Carolina 1996
#> 18199 Michigan California 1996
#> 18200 Alaska North Dakota 1996
#> 18201 Rhode Island New Mexico 1996
#> 18202 Minnesota Kansas 1996
#> 18203 California Texas 1996
#> 18204 Minnesota Hawaii 1996
#> 18205 Oregon Alabama 1996
#> 18206 Maine Wyoming 1996
#> 18207 Iowa Nevada 1996
#> 18208 Rhode Island New Hampshire 1996
#> 18209 Indiana Kentucky 1996
#> 18210 Minnesota Oregon 1996
#> 18211 Wisconsin California 1996
#> 18212 New Mexico West Virginia 1996
#> 18213 Oregon South Dakota 1996
#> 18214 Georgia Tennessee 1996
#> 18215 Georgia Maryland 1996
#> 18216 Hawaii Oregon 1996
#> 18217 Delaware North Dakota 1996
#> 18218 Louisiana South Carolina 1996
#> 18219 Florida New Jersey 1996
#> 18220 Oregon Montana 1996
#> 18221 Wisconsin Indiana 1996
#> 18222 Illinois Oklahoma 1996
#> 18223 Tennessee Florida 1996
#> 18224 Illinois Idaho 1996
#> 18225 Kentucky Minnesota 1996
#> 18226 New York Delaware 1996
#> 18227 Arizona Arkansas 1996
#> 18228 Louisiana Utah 1996
#> 18229 Washington Colorado 1996
#> 18230 Louisiana Alaska 1996
#> 18231 Oregon Ohio 1996
#> 18232 Iowa Colorado 1996
#> 18233 North Dakota Oklahoma 1996
#> 18234 California South Dakota 1996
#> 18235 Idaho Illinois 1996
#> 18236 New York New Hampshire 1996
#> 18237 Delaware Kansas 1996
#> 18238 New Mexico Iowa 1996
#> 18239 Hawaii New York 1996
#> 18240 Louisiana Texas 1996
#> 18241 Florida Massachusetts 1996
#> 18242 New Jersey Louisiana 1996
#> 18243 Kansas Hawaii 1996
#> 18244 North Dakota Nebraska 1996
#> 18245 Colorado New Mexico 1996
#> 18246 California Virginia 1996
#> 18247 North Carolina New York 1996
#> 18248 New York Maine 1996
#> 18249 Colorado Arizona 1996
#> 18250 New York Oregon 1996
#> 18251 Florida Washington 1996
#> 18252 Delaware Connecticut 1996
#> 18253 Idaho Missouri 1996
#> 18254 Kentucky Louisiana 1996
#> 18255 Wisconsin Michigan 1996
#> 18256 Kansas South Carolina 1996
#> 18257 Michigan Indiana 1996
#> 18258 Indiana Georgia 1996
#> 18259 Hawaii Alaska 1996
#> 18260 Illinois Missouri 1996
#> 18261 Michigan Montana 1996
#> 18262 Rhode Island Pennsylvania 1996
#> 18263 Wisconsin Maryland 1996
#> 18264 Illinois Virginia 1996
#> 18265 California Wisconsin 1996
#> 18266 Utah California 1996
#> 18267 Wisconsin New Jersey 1996
#> 18268 New Mexico Colorado 1996
#> 18269 Washington North Carolina 1996
#> 18270 New York New Mexico 1996
#> 18271 Iowa Utah 1996
#> 18272 New Jersey Idaho 1996
#> 18273 Kansas Wisconsin 1996
#> 18274 Florida West Virginia 1996
#> 18275 Oregon North Dakota 1996
#> 18276 Kansas Vermont 1996
#> 18277 New York Nebraska 1996
#> 18278 Illinois Alabama 1996
#> 18279 Wisconsin Maine 1996
#> 18280 Illinois Ohio 1996
#> 18281 Minnesota Rhode Island 1996
#> 18282 California South Carolina 1996
#> 18283 South Dakota North Carolina 1996
#> 18284 Virginia Florida 1996
#> 18285 Louisiana Tennessee 1996
#> 18286 Wisconsin Iowa 1996
#> 18287 Washington New Mexico 1996
#> 18288 Massachusetts Wyoming 1996
#> 18289 Washington North Dakota 1996
#> 18290 Delaware Louisiana 1996
#> 18291 Wisconsin New York 1996
#> 18292 Washington Montana 1996
#> 18293 Vermont Michigan 1996
#> 18294 New Mexico New Hampshire 1996
#> 18295 Kentucky Idaho 1996
#> 18296 Wisconsin Oregon 1996
#> 18297 West Virginia Georgia 1996
#> 18298 Oklahoma Nevada 1996
#> 18299 New Jersey Rhode Island 1996
#> 18300 North Carolina Arizona 1996
#> 18301 Maine Pennsylvania 1996
#> 18302 Oregon Virginia 1996
#> 18303 South Carolina Arkansas 1996
#> 18304 Massachusetts Wisconsin 1996
#> 18305 Oregon Missouri 1996
#> 18306 Rhode Island Michigan 1996
#> 18307 Michigan Wyoming 1996
#> 18308 Connecticut Iowa 1996
#> 18309 New Mexico Alabama 1996
#> 18310 Maryland Massachusetts 1996
#> 18311 Indiana Delaware 1996
#> 18312 Virginia Indiana 1996
#> 18313 Iowa Kentucky 1996
#> 18314 Michigan North Carolina 1996
#> 18315 Kansas New Mexico 1996
#> 18316 New Hampshire Florida 1996
#> 18317 Idaho Minnesota 1996
#> 18318 Kentucky Texas 1996
#> 18319 Florida Maryland 1996
#> 18320 Missouri Mississippi 1996
#> 18321 Connecticut North Carolina 1996
#> 18322 Iowa Oklahoma 1996
#> 18323 California Idaho 1996
#> 18324 Hawaii Washington 1996
#> 18325 Idaho Kansas 1996
#> 18326 Indiana Alabama 1996
#> 18327 New Hampshire Connecticut 1996
#> 18328 Idaho Rhode Island 1996
#> 18329 Connecticut South Carolina 1996
#> 18330 Delaware Massachusetts 1996
#> 18331 New Jersey Georgia 1996
#> 18332 Nevada Montana 1996
#> 18333 Pennsylvania South Carolina 1996
#> 18334 Montana New Jersey 1996
#> 18335 South Dakota Utah 1996
#> 18336 Illinois Nebraska 1996
#> 18337 Missouri Colorado 1996
#> 18338 New Mexico Illinois 1996
#> 18339 Arkansas Mississippi 1996
#> 18340 Massachusetts South Dakota 1996
#> 18341 New Jersey Tennessee 1996
#> 18342 Arkansas Montana 1996
#> 18343 Rhode Island Hawaii 1996
#> 18344 Montana Colorado 1996
#> 18345 New York Florida 1996
#> 18346 Vermont Virginia 1996
#> 18347 Michigan Arizona 1996
#> 18348 Maine Maryland 1996
#> 18349 California Kentucky 1996
#> 18350 Colorado Alaska 1996
#> 18351 Maryland New Mexico 1996
#> 18352 Idaho Ohio 1996
#> 18353 South Dakota Nevada 1996
#> 18354 New Mexico Maine 1996
#> 18355 South Carolina Idaho 1996
#> 18356 Washington Texas 1996
#> 18357 Colorado California 1996
#> 18358 New York Washington 1996
#> 18359 Wisconsin Colorado 1996
#> 18360 Montana Florida 1996
#> 18361 Maryland New Jersey 1996
#> 18362 Nebraska Iowa 1996
#> 18363 Washington Massachusetts 1996
#> 18364 Washington Louisiana 1996
#> 18365 California Maine 1996
#> 18366 Iowa Wisconsin 1996
#> 18367 New Jersey Illinois 1996
#> 18368 Rhode Island New York 1996
#> 18369 Utah Delaware 1996
#> 18370 Kansas California 1996
#> 18371 Missouri Ohio 1996
#> 18372 South Carolina Kansas 1996
#> 18373 Delaware Minnesota 1996
#> 18374 Michigan Nevada 1996
#> 18375 Kansas Iowa 1996
#> 18376 South Carolina Illinois 1996
#> 18377 California Oklahoma 1996
#> 18378 New Jersey Utah 1996
#> 18379 Wisconsin Idaho 1996
#> 18380 Colorado Wisconsin 1996
#> 18381 Kansas North Dakota 1996
#> 18382 Wisconsin Minnesota 1996
#> 18383 Nebraska Georgia 1996
#> 18384 South Carolina Georgia 1996
#> 18385 California Tennessee 1996
#> 18386 New York Illinois 1996
#> 18387 New Jersey California 1996
#> 18388 Nevada West Virginia 1996
#> 18389 Arkansas Minnesota 1996
#> 18390 Louisiana Indiana 1996
#> 18391 Florida Rhode Island 1996
#> 18392 Alaska New York 1996
#> 18393 Nevada New Mexico 1996
#> 18394 Illinois Maryland 1996
#> 18395 Alabama Missouri 1996
#> 18396 Georgia Rhode Island 1996
#> 18397 Kentucky New York 1996
#> 18398 Montana Alaska 1996
#> 18399 Louisiana New Hampshire 1996
#> 18400 Kentucky Pennsylvania 1996
#> 18401 South Dakota Virginia 1996
#> 18402 Iowa Arkansas 1996
#> 18403 Ohio North Carolina 1996
#> 18404 Kansas Kentucky 1996
#> 18405 Louisiana Wisconsin 1996
#> 18406 Arizona Oregon 1996
#> 18407 New York Kansas 1996
#> 18408 Texas Connecticut 1996
#> 18409 New York Missouri 1996
#> 18410 Maine Montana 1996
#> 18411 Oregon Texas 1996
#> 18412 South Carolina Vermont 1996
#> 18413 Wisconsin Illinois 1996
#> 18414 Louisiana North Dakota 1996
#> 18415 Illinois Alaska 1996
#> 18416 New Mexico Mississippi 1996
#> 18417 Mississippi Arizona 1996
#> 18418 Kentucky Missouri 1996
#> 18419 North Dakota Rhode Island 1996
#> 18420 Virginia Oregon 1996
#> 18421 Alaska Nevada 1996
#> 18422 Wisconsin Missouri 1996
#> 18423 Minnesota Utah 1996
#> 18424 Colorado Maryland 1996
#> 18425 Washington Pennsylvania 1996
#> 18426 California Wyoming 1996
#> 18427 Nebraska Arizona 1996
#> 18428 Wisconsin Washington 1996
#> 18429 Nebraska Tennessee 1996
#> 18430 Texas Ohio 1996
#> 18431 Virginia Iowa 1996
#> 18432 Colorado Hawaii 1996
#> 18433 Connecticut Rhode Island 1996
#> 18434 Hawaii Vermont 1996
#> 18435 Georgia Arkansas 1996
#> 18436 Wisconsin Louisiana 1996
#> 18437 Tennessee New York 1996
#> 18438 Arkansas Delaware 1996
#> 18439 Idaho New Mexico 1996
#> 18440 Iowa California 1996
#> 18441 Ohio Tennessee 1996
#> 18442 Ohio Virginia 1996
#> 18443 Maine Nebraska 1996
#> 18444 Kansas Arizona 1996
#> 18445 Missouri Kentucky 1996
#> 18446 North Dakota South Carolina 1996
#> 18447 Washington Oklahoma 1996
#> 18448 Mississippi Nebraska 1996
#> 18449 Montana Washington 1996
#> 18450 Louisiana Idaho 1996
#> 18451 Delaware Wyoming 1996
#> 18452 Utah Maryland 1996
#> 18453 California Utah 1996
#> 18454 Kentucky Michigan 1996
#> 18455 Missouri Pennsylvania 1996
#> 18456 Washington Kansas 1996
#> 18457 New Hampshire New York 1996
#> 18458 Nebraska North Dakota 1996
#> 18459 Hawaii Idaho 1996
#> 18460 Georgia Louisiana 1996
#> 18461 Idaho Michigan 1996
#> 18462 New Jersey Washington 1996
#> 18463 Nevada Mississippi 1996
#> 18464 Illinois Colorado 1996
#> 18465 California West Virginia 1996
#> 18466 Pennsylvania Rhode Island 1996
#> 18467 Massachusetts Maine 1996
#> 18468 Arkansas South Carolina 1996
#> 18469 Tennessee Massachusetts 1996
#> 18470 Washington Wisconsin 1996
#> 18471 New Jersey Delaware 1996
#> 18472 Illinois California 1996
#> 18473 Arkansas Nebraska 1996
#> 18474 Utah Virginia 1996
#> 18475 Maine South Dakota 1996
#> 18476 Massachusetts Oregon 1996
#> 18477 Arizona Colorado 1996
#> 18478 Kentucky Maryland 1996
#> 18479 Florida North Carolina 1996
#> 18480 Oklahoma Indiana 1996
#> 18481 Maryland Indiana 1996
#> 18482 Tennessee Montana 1996
#> 18483 New Jersey Texas 1996
#> 18484 Massachusetts Georgia 1996
#> 18485 New Jersey Connecticut 1996
#> 18486 Vermont Connecticut 1996
#> 18487 Idaho Arizona 1996
#> 18488 Wisconsin Pennsylvania 1996
#> 18489 Minnesota New Mexico 1996
#> 18490 Rhode Island Maryland 1996
#> 18491 Kentucky Massachusetts 1996
#> 18492 North Carolina Alabama 1996
#> 18493 Maine Wisconsin 1996
#> 18494 Idaho Florida 1996
#> 18495 Oklahoma Wyoming 1996
#> 18496 Virginia Kentucky 1996
#> 18497 Florida Nevada 1996
#> 18498 Mississippi California 1996
#> 18499 South Dakota Wisconsin 1996
#> 18500 Michigan West Virginia 1996
#> 18501 California Oregon 1997
#> 18502 Minnesota Ohio 1997
#> 18503 Minnesota Iowa 1997
#> 18504 California Colorado 1997
#> 18505 Oregon Kentucky 1997
#> 18506 Oregon Minnesota 1997
#> 18507 Minnesota Illinois 1997
#> 18508 California Florida 1997
#> 18509 Florida Texas 1997
#> 18510 California Montana 1997
#> 18511 Minnesota Virginia 1997
#> 18512 Colorado South Dakota 1997
#> 18513 California Washington 1997
#> 18514 Oregon Idaho 1997
#> 18515 Oregon Alaska 1997
#> 18516 Florida Arizona 1997
#> 18517 Minnesota Missouri 1997
#> 18518 Oregon Maryland 1997
#> 18519 Washington Pennsylvania 1997
#> 18520 Oregon New Mexico 1997
#> 18521 Idaho Utah 1997
#> 18522 California North Carolina 1997
#> 18523 Minnesota Nebraska 1997
#> 18524 Oregon Tennessee 1997
#> 18525 Minnesota Indiana 1997
#> 18526 Minnesota Alabama 1997
#> 18527 Florida Mississippi 1997
#> 18528 New York Michigan 1997
#> 18529 Minnesota North Dakota 1997
#> 18530 Minnesota Georgia 1997
#> 18531 Minnesota Kansas 1997
#> 18532 Oregon Maine 1997
#> 18533 California New Hampshire 1997
#> 18534 Oregon Delaware 1997
#> 18535 Connecticut New Jersey 1997
#> 18536 Massachusetts Connecticut 1997
#> 18537 Oregon Oklahoma 1997
#> 18538 Minnesota California 1997
#> 18539 California Nevada 1997
#> 18540 Minnesota South Carolina 1997
#> 18541 New Jersey Rhode Island 1997
#> 18542 Washington Wisconsin 1997
#> 18543 Oregon Vermont 1997
#> 18544 Colorado Arkansas 1997
#> 18545 Oregon West Virginia 1997
#> 18546 New Jersey Massachusetts 1997
#> 18547 Florida Louisiana 1997
#> 18548 Colorado Wyoming 1997
#> 18549 California Hawaii 1997
#> 18550 Connecticut New York 1997
#> 18551 California Minnesota 1997
#> 18552 Connecticut Oregon 1997
#> 18553 Massachusetts California 1997
#> 18554 California New Jersey 1997
#> 18555 Oregon Arizona 1997
#> 18556 Oregon Connecticut 1997
#> 18557 Connecticut Washington 1997
#> 18558 Oregon Rhode Island 1997
#> 18559 Connecticut Ohio 1997
#> 18560 California New Mexico 1997
#> 18561 Florida Utah 1997
#> 18562 Florida Virginia 1997
#> 18563 New Jersey Vermont 1997
#> 18564 North Dakota South Dakota 1997
#> 18565 Connecticut Colorado 1997
#> 18566 California North Dakota 1997
#> 18567 Washington Montana 1997
#> 18568 Rhode Island Indiana 1997
#> 18569 Connecticut Massachusetts 1997
#> 18570 Florida Oklahoma 1997
#> 18571 Florida Georgia 1997
#> 18572 Rhode Island Maine 1997
#> 18573 Minnesota Florida 1997
#> 18574 California Maryland 1997
#> 18575 Minnesota Michigan 1997
#> 18576 Minnesota Texas 1997
#> 18577 Rhode Island Wisconsin 1997
#> 18578 Colorado Idaho 1997
#> 18579 Minnesota Delaware 1997
#> 18580 California Kansas 1997
#> 18581 California Nebraska 1997
#> 18582 Massachusetts Hawaii 1997
#> 18583 Georgia South Carolina 1997
#> 18584 Connecticut North Carolina 1997
#> 18585 Colorado Louisiana 1997
#> 18586 California Illinois 1997
#> 18587 Illinois Missouri 1997
#> 18588 Idaho Nevada 1997
#> 18589 Florida Alabama 1997
#> 18590 Rhode Island Pennsylvania 1997
#> 18591 Florida Kentucky 1997
#> 18592 Idaho Iowa 1997
#> 18593 Kentucky Arkansas 1997
#> 18594 Minnesota Mississippi 1997
#> 18595 Minnesota Tennessee 1997
#> 18596 Illinois Massachusetts 1997
#> 18597 California Alaska 1997
#> 18598 New York Minnesota 1997
#> 18599 South Carolina Wyoming 1997
#> 18600 New York New Jersey 1997
#> 18601 Oregon New Hampshire 1997
#> 18602 Minnesota Washington 1997
#> 18603 Michigan West Virginia 1997
#> 18604 California New York 1997
#> 18605 Washington Oregon 1997
#> 18606 California Ohio 1997
#> 18607 California Delaware 1997
#> 18608 Iowa Wisconsin 1997
#> 18609 Connecticut Maine 1997
#> 18610 Wisconsin North Carolina 1997
#> 18611 Idaho Colorado 1997
#> 18612 Georgia Indiana 1997
#> 18613 Michigan Illinois 1997
#> 18614 Kansas Virginia 1997
#> 18615 Louisiana Kansas 1997
#> 18616 Delaware South Dakota 1997
#> 18617 New York Iowa 1997
#> 18618 Connecticut Vermont 1997
#> 18619 Michigan Maryland 1997
#> 18620 Connecticut Pennsylvania 1997
#> 18621 Florida Connecticut 1997
#> 18622 New York Rhode Island 1997
#> 18623 Arizona Arkansas 1997
#> 18624 California Georgia 1997
#> 18625 Florida South Carolina 1997
#> 18626 Wisconsin California 1997
#> 18627 New York Delaware 1997
#> 18628 Georgia Mississippi 1997
#> 18629 Wisconsin New Mexico 1997
#> 18630 Florida Idaho 1997
#> 18631 Wisconsin Massachusetts 1997
#> 18632 Minnesota New Jersey 1997
#> 18633 Colorado Missouri 1997
#> 18634 Idaho Texas 1997
#> 18635 Michigan Montana 1997
#> 18636 Massachusetts Colorado 1997
#> 18637 Idaho Oklahoma 1997
#> 18638 Oregon Utah 1997
#> 18639 New York Washington 1997
#> 18640 Michigan Nebraska 1997
#> 18641 Utah North Dakota 1997
#> 18642 Virginia Florida 1997
#> 18643 Illinois Minnesota 1997
#> 18644 Florida Michigan 1997
#> 18645 New York New Hampshire 1997
#> 18646 Michigan California 1997
#> 18647 Florida Ohio 1997
#> 18648 California Louisiana 1997
#> 18649 Georgia Tennessee 1997
#> 18650 Idaho Kentucky 1997
#> 18651 Oregon Montana 1997
#> 18652 Washington Indiana 1997
#> 18653 Oregon Kansas 1997
#> 18654 New York Connecticut 1997
#> 18655 Idaho Virginia 1997
#> 18656 New York Hawaii 1997
#> 18657 Oregon Iowa 1997
#> 18658 Minnesota Rhode Island 1997
#> 18659 Minnesota Arizona 1997
#> 18660 North Dakota South Carolina 1997
#> 18661 Rhode Island New York 1997
#> 18662 New York Nevada 1997
#> 18663 Colorado Michigan 1997
#> 18664 Hawaii Alaska 1997
#> 18665 Nevada Wyoming 1997
#> 18666 New Jersey Oregon 1997
#> 18667 Minnesota Arkansas 1997
#> 18668 New York North Carolina 1997
#> 18669 Massachusetts Florida 1997
#> 18670 Wisconsin Missouri 1997
#> 18671 Massachusetts Pennsylvania 1997
#> 18672 California Connecticut 1997
#> 18673 Connecticut Wisconsin 1997
#> 18674 California Massachusetts 1997
#> 18675 Kentucky Illinois 1997
#> 18676 Indiana West Virginia 1997
#> 18677 New Mexico Delaware 1997
#> 18678 Louisiana Georgia 1997
#> 18679 Wisconsin Vermont 1997
#> 18680 Connecticut Maryland 1997
#> 18681 Maine North Carolina 1997
#> 18682 Connecticut New Mexico 1997
#> 18683 Illinois New York 1997
#> 18684 Colorado Minnesota 1997
#> 18685 North Dakota Louisiana 1997
#> 18686 Nevada Nebraska 1997
#> 18687 Minnesota Maine 1997
#> 18688 Michigan Tennessee 1997
#> 18689 Utah Idaho 1997
#> 18690 Wisconsin Indiana 1997
#> 18691 Hawaii California 1997
#> 18692 New York Texas 1997
#> 18693 Delaware Alabama 1997
#> 18694 Illinois Connecticut 1997
#> 18695 Delaware Montana 1997
#> 18696 Michigan Arizona 1997
#> 18697 Rhode Island New Mexico 1997
#> 18698 Idaho Tennessee 1997
#> 18699 New Mexico New Hampshire 1997
#> 18700 Wisconsin Maryland 1997
#> 18701 Hawaii Florida 1997
#> 18702 Montana Hawaii 1997
#> 18703 Kansas Mississippi 1997
#> 18704 Alaska North Dakota 1997
#> 18705 Minnesota West Virginia 1997
#> 18706 Minnesota Nevada 1997
#> 18707 Florida Wisconsin 1997
#> 18708 Idaho Washington 1997
#> 18709 California Texas 1997
#> 18710 Texas Massachusetts 1997
#> 18711 Oregon Alabama 1997
#> 18712 Maine Wyoming 1997
#> 18713 New York Oregon 1997
#> 18714 Idaho Kansas 1997
#> 18715 Rhode Island Louisiana 1997
#> 18716 California Rhode Island 1997
#> 18717 Colorado New Mexico 1997
#> 18718 South Carolina North Carolina 1997
#> 18719 Washington Colorado 1997
#> 18720 Oregon South Dakota 1997
#> 18721 Tennessee Florida 1997
#> 18722 Hawaii Oregon 1997
#> 18723 Massachusetts Kentucky 1997
#> 18724 Florida Nebraska 1997
#> 18725 New York Ohio 1997
#> 18726 Florida New Jersey 1997
#> 18727 Wisconsin Michigan 1997
#> 18728 Illinois Oklahoma 1997
#> 18729 Idaho Delaware 1997
#> 18730 California Arkansas 1997
#> 18731 New York New Mexico 1997
#> 18732 Idaho Ohio 1997
#> 18733 Colorado Alaska 1997
#> 18734 Colorado Arizona 1997
#> 18735 Wisconsin Maine 1997
#> 18736 Minnesota Oregon 1997
#> 18737 California South Dakota 1997
#> 18738 Rhode Island Washington 1997
#> 18739 Tennessee Missouri 1997
#> 18740 Wisconsin Rhode Island 1997
#> 18741 Illinois Idaho 1997
#> 18742 Michigan Indiana 1997
#> 18743 Arkansas Hawaii 1997
#> 18744 Tennessee Georgia 1997
#> 18745 Indiana Illinois 1997
#> 18746 Iowa Utah 1997
#> 18747 New York Florida 1997
#> 18748 Nevada New York 1997
#> 18749 Iowa Colorado 1997
#> 18750 Louisiana Nevada 1997
#> 18751 Louisiana Montana 1997
#> 18752 Illinois Pennsylvania 1997
#> 18753 North Dakota Oklahoma 1997
#> 18754 New Mexico Iowa 1997
#> 18755 Kentucky Minnesota 1997
#> 18756 Michigan South Carolina 1997
#> 18757 Louisiana Alaska 1997
#> 18758 California Virginia 1997
#> 18759 Delaware Connecticut 1997
#> 18760 Kansas Vermont 1997
#> 18761 Hawaii North Carolina 1997
#> 18762 Rhode Island New Hampshire 1997
#> 18763 New Jersey Texas 1997
#> 18764 Kansas South Carolina 1997
#> 18765 Massachusetts North Dakota 1997
#> 18766 West Virginia Georgia 1997
#> 18767 North Dakota California 1997
#> 18768 New Mexico Arizona 1997
#> 18769 Missouri Mississippi 1997
#> 18770 Illinois Virginia 1997
#> 18771 Hawaii Tennessee 1997
#> 18772 Wisconsin New Jersey 1997
#> 18773 New Mexico Colorado 1997
#> 18774 New York Maryland 1997
#> 18775 Delaware Kansas 1997
#> 18776 Oregon New York 1997
#> 18777 Colorado Wisconsin 1997
#> 18778 Kentucky Missouri 1997
#> 18779 New York Maine 1997
#> 18780 Massachusetts West Virginia 1997
#> 18781 Montana Kentucky 1997
#> 18782 Nevada Idaho 1997
#> 18783 Louisiana Rhode Island 1997
#> 18784 North Dakota Nebraska 1997
#> 18785 Illinois Alabama 1997
#> 18786 Washington Illinois 1997
#> 18787 Wisconsin Iowa 1997
#> 18788 Hawaii Rhode Island 1997
#> 18789 Washington New Mexico 1997
#> 18790 Massachusetts Wyoming 1997
#> 18791 Utah Maryland 1997
#> 18792 Louisiana Ohio 1997
#> 18793 Wisconsin New York 1997
#> 18794 Idaho Minnesota 1997
#> 18795 New Hampshire Connecticut 1997
#> 18796 Wisconsin Oregon 1997
#> 18797 Vermont Michigan 1997
#> 18798 Massachusetts Missouri 1997
#> 18799 Pennsylvania California 1997
#> 18800 Oregon Virginia 1997
#> 18801 Massachusetts Georgia 1997
#> 18802 Rhode Island Michigan 1997
#> 18803 Connecticut Rhode Island 1997
#> 18804 Michigan Wyoming 1997
#> 18805 Georgia North Dakota 1997
#> 18806 Colorado Montana 1997
#> 18807 Connecticut Iowa 1997
#> 18808 Louisiana Utah 1997
#> 18809 Oregon California 1997
#> 18810 New Jersey Louisiana 1997
#> 18811 New Mexico Alabama 1997
#> 18812 New Hampshire Maine 1997
#> 18813 Wisconsin Colorado 1997
#> 18814 Rhode Island Massachusetts 1997
#> 18815 Illinois Ohio 1997
#> 18816 Virginia Indiana 1997
#> 18817 Oregon North Dakota 1997
#> 18818 New Jersey Delaware 1997
#> 18819 New Hampshire Florida 1997
#> 18820 Kentucky Louisiana 1997
#> 18821 Rhode Island California 1997
#> 18822 Wisconsin Washington 1997
#> 18823 California Idaho 1997
#> 18824 Wisconsin Pennsylvania 1997
#> 18825 Washington North Dakota 1997
#> 18826 Iowa Oklahoma 1997
#> 18827 Connecticut Hawaii 1997
#> 18828 New Jersey Idaho 1997
#> 18829 Indiana Alabama 1997
#> 18830 Illinois Rhode Island 1997
#> 18831 California Tennessee 1997
#> 18832 Alaska Nevada 1997
#> 18833 Wisconsin Florida 1997
#> 18834 Michigan Missouri 1997
#> 18835 Colorado Maryland 1997
#> 18836 Hawaii Washington 1997
#> 18837 South Dakota Utah 1997
#> 18838 Florida New York 1997
#> 18839 Montana New Jersey 1997
#> 18840 Nevada Montana 1997
#> 18841 Missouri Colorado 1997
#> 18842 Texas Vermont 1997
#> 18843 Massachusetts South Dakota 1997
#> 18844 Washington Texas 1997
#> 18845 Wisconsin Delaware 1997
#> 18846 Michigan Nevada 1997
#> 18847 Montana Colorado 1997
#> 18848 Vermont Virginia 1997
#> 18849 Louisiana Tennessee 1997
#> 18850 Maryland Kentucky 1997
#> 18851 Connecticut South Carolina 1997
#> 18852 New Jersey Utah 1997
#> 18853 Nevada Georgia 1997
#> 18854 Kansas Wisconsin 1997
#> 18855 South Dakota Nevada 1997
#> 18856 Minnesota Wisconsin 1997
#> 18857 Delaware Nebraska 1997
#> 18858 New York Kansas 1997
#> 18859 Hawaii Delaware 1997
#> 18860 Wisconsin New Hampshire 1997
#> 18861 Louisiana South Carolina 1997
#> 18862 Wisconsin Mississippi 1997
#> 18863 Arkansas Minnesota 1997
#> 18864 Maine Pennsylvania 1997
#> 18865 Kansas Iowa 1997
#> 18866 Maryland New Jersey 1997
#> 18867 Kentucky Texas 1997
#> 18868 Utah Arizona 1997
#> 18869 Oregon Ohio 1997
#> 18870 New Jersey Maryland 1997
#> 18871 Louisiana Indiana 1997
#> 18872 Delaware Minnesota 1997
#> 18873 Florida Nevada 1997
#> 18874 South Carolina Kansas 1997
#> 18875 Connecticut Louisiana 1997
#> 18876 Kentucky New Mexico 1997
#> 18877 Idaho Alaska 1997
#> 18878 California Oklahoma 1997
#> 18879 Maryland Illinois 1997
#> 18880 Kentucky Maryland 1997
#> 18881 Wisconsin Idaho 1997
#> 18882 Washington North Carolina 1997
#> 18883 Oregon Wisconsin 1997
#> 18884 New Mexico Mississippi 1997
#> 18885 New Jersey California 1997
#> 18886 Wisconsin Minnesota 1997
#> 18887 Louisiana New Mexico 1997
#> 18888 Montana Alaska 1997
#> 18889 South Dakota Massachusetts 1997
#> 18890 Kentucky West Virginia 1997
#> 18891 Connecticut Wyoming 1997
#> 18892 Florida Rhode Island 1997
#> 18893 Connecticut New Hampshire 1997
#> 18894 Kansas California 1997
#> 18895 Kentucky Idaho 1997
#> 18896 Delaware Arkansas 1997
#> 18897 Oklahoma Wyoming 1997
#> 18898 California South Carolina 1997
#> 18899 North Carolina Alabama 1997
#> 18900 Mississippi California 1997
#> 18901 Kentucky Massachusetts 1997
#> 18902 California West Virginia 1997
#> 18903 Kansas Hawaii 1997
#> 18904 New York Illinois 1997
#> 18905 Kentucky Pennsylvania 1997
#> 18906 Kentucky New York 1997
#> 18907 North Carolina Arizona 1997
#> 18908 Arizona Oregon 1997
#> 18909 North Dakota Michigan 1997
#> 18910 South Carolina Vermont 1997
#> 18911 Arkansas Montana 1997
#> 18912 Georgia Rhode Island 1997
#> 18913 Arizona Missouri 1997
#> 18914 South Carolina Idaho 1997
#> 18915 Utah Connecticut 1997
#> 18916 Tennessee Massachusetts 1997
#> 18917 Massachusetts Wisconsin 1997
#> 18918 Kansas Arkansas 1997
#> 18919 Vermont New York 1997
#> 18920 Illinois Alaska 1997
#> 18921 Wisconsin Kansas 1997
#> 18922 Oregon Texas 1997
#> 18923 Missouri Kentucky 1997
#> 18924 Nevada New Mexico 1997
#> 18925 Virginia Oregon 1997
#> 18926 Michigan Delaware 1997
#> 18927 Iowa Montana 1997
#> 18928 Minnesota Utah 1997
#> 18929 Indiana Maine 1997
#> 18930 Maine Ohio 1997
#> 18931 Idaho Rhode Island 1997
#> 18932 Iowa Nebraska 1997
#> 18933 Virginia Iowa 1997
#> 18934 Arizona Louisiana 1997
#> 18935 Wisconsin Tennessee 1997
#> 18936 Hawaii North Dakota 1997
#> 18937 Georgia Nebraska 1997
#> 18938 Montana Florida 1997
#> 18939 New Mexico Kansas 1997
#> 18940 Alaska North Carolina 1997
#> 18941 Ohio Virginia 1997
#> 18942 Utah South Dakota 1997
#> 18943 Wisconsin Arkansas 1997
#> 18944 Wyoming Illinois 1997
#> 18945 Texas South Carolina 1997
#> 18946 Ohio Tennessee 1997
#> 18947 Washington Oklahoma 1997
#> 18948 Montana Washington 1997
#> 18949 Michigan Florida 1997
#> 18950 Kansas New Mexico 1997
#> 18951 Virginia Maine 1997
#> 18952 Mississippi Arizona 1997
#> 18953 New Hampshire New York 1997
#> 18954 Utah Virginia 1997
#> 18955 California Utah 1997
#> 18956 Tennessee Maryland 1997
#> 18957 Massachusetts Maine 1997
#> 18958 Delaware Wyoming 1997
#> 18959 Louisiana Idaho 1997
#> 18960 Wisconsin Hawaii 1997
#> 18961 Missouri Pennsylvania 1997
#> 18962 Illinois West Virginia 1997
#> 18963 Massachusetts New York 1997
#> 18964 Ohio Utah 1997
#> 18965 Virginia South Dakota 1997
#> 18966 Washington Louisiana 1997
#> 18967 Iowa California 1997
#> 18968 Pennsylvania Rhode Island 1997
#> 18969 Connecticut Delaware 1997
#> 18970 Hawaii Idaho 1997
#> 18971 Kentucky North Carolina 1997
#> 18972 Michigan Massachusetts 1997
#> 18973 New Jersey Washington 1997
#> 18974 Illinois Colorado 1997
#> 18975 Kentucky Michigan 1997
#> 18976 New Hampshire Hawaii 1997
#> 18977 South Carolina Illinois 1997
#> 18978 Kansas Kentucky 1997
#> 18979 Georgia Iowa 1997
#> 18980 Delaware Nevada 1997
#> 18981 Illinois California 1997
#> 18982 New Jersey Georgia 1997
#> 18983 Texas Connecticut 1997
#> 18984 Maryland Indiana 1997
#> 18985 Kansas Arizona 1997
#> 18986 California Kentucky 1997
#> 18987 Massachusetts Oregon 1997
#> 18988 Minnesota New Mexico 1997
#> 18989 Arizona Colorado 1997
#> 18990 Washington Maryland 1997
#> 18991 Florida North Carolina 1997
#> 18992 Oklahoma Indiana 1997
#> 18993 Tennessee Oklahoma 1997
#> 18994 Vermont Connecticut 1997
#> 18995 Tennessee Arkansas 1997
#> 18996 Wisconsin South Carolina 1997
#> 18997 Louisiana North Dakota 1997
#> 18998 Tennessee Montana 1997
#> 18999 Utah Louisiana 1997
#> 19000 Maine Wisconsin 1997
#> 19001 California Oregon 1998
#> 19002 Minnesota Ohio 1998
#> 19003 Minnesota Iowa 1998
#> 19004 California Colorado 1998
#> 19005 California Montana 1998
#> 19006 California Florida 1998
#> 19007 Oregon Kentucky 1998
#> 19008 Oregon Minnesota 1998
#> 19009 California Illinois 1998
#> 19010 Florida Texas 1998
#> 19011 California Maryland 1998
#> 19012 Oregon Idaho 1998
#> 19013 California North Dakota 1998
#> 19014 Rhode Island Nebraska 1998
#> 19015 California Nevada 1998
#> 19016 Idaho Indiana 1998
#> 19017 Oregon Alaska 1998
#> 19018 California New Mexico 1998
#> 19019 Minnesota Virginia 1998
#> 19020 Colorado South Dakota 1998
#> 19021 Florida Arizona 1998
#> 19022 Minnesota Missouri 1998
#> 19023 Idaho Utah 1998
#> 19024 California New Jersey 1998
#> 19025 California North Carolina 1998
#> 19026 Florida Georgia 1998
#> 19027 California Washington 1998
#> 19028 Colorado Arkansas 1998
#> 19029 Washington Pennsylvania 1998
#> 19030 Minnesota Alabama 1998
#> 19031 Oregon Maine 1998
#> 19032 Oregon Tennessee 1998
#> 19033 Florida Mississippi 1998
#> 19034 Oregon Delaware 1998
#> 19035 Massachusetts Connecticut 1998
#> 19036 California Kansas 1998
#> 19037 Oregon Oklahoma 1998
#> 19038 California New Hampshire 1998
#> 19039 New York Michigan 1998
#> 19040 Minnesota California 1998
#> 19041 Washington Wisconsin 1998
#> 19042 Minnesota South Carolina 1998
#> 19043 Oregon Vermont 1998
#> 19044 New Jersey Rhode Island 1998
#> 19045 Florida Louisiana 1998
#> 19046 Colorado Wyoming 1998
#> 19047 Oregon West Virginia 1998
#> 19048 California Hawaii 1998
#> 19049 California Massachusetts 1998
#> 19050 Connecticut New York 1998
#> 19051 California Minnesota 1998
#> 19052 New York New Jersey 1998
#> 19053 Oregon Connecticut 1998
#> 19054 Connecticut Ohio 1998
#> 19055 New York Oregon 1998
#> 19056 Massachusetts California 1998
#> 19057 Oregon New Mexico 1998
#> 19058 Oregon Arizona 1998
#> 19059 Kansas Virginia 1998
#> 19060 Oregon Rhode Island 1998
#> 19061 Florida Utah 1998
#> 19062 Connecticut Washington 1998
#> 19063 Florida Oklahoma 1998
#> 19064 Rhode Island Maine 1998
#> 19065 California Georgia 1998
#> 19066 Michigan Illinois 1998
#> 19067 Illinois Texas 1998
#> 19068 Florida Idaho 1998
#> 19069 New Jersey Vermont 1998
#> 19070 Illinois Delaware 1998
#> 19071 Oregon Maryland 1998
#> 19072 Minnesota North Dakota 1998
#> 19073 Connecticut Massachusetts 1998
#> 19074 Rhode Island Indiana 1998
#> 19075 Massachusetts Hawaii 1998
#> 19076 Colorado Montana 1998
#> 19077 Colorado Kansas 1998
#> 19078 Oregon Colorado 1998
#> 19079 California Missouri 1998
#> 19080 North Dakota South Dakota 1998
#> 19081 Minnesota Florida 1998
#> 19082 Rhode Island Pennsylvania 1998
#> 19083 Virginia North Carolina 1998
#> 19084 Idaho Nevada 1998
#> 19085 Colorado Louisiana 1998
#> 19086 California Nebraska 1998
#> 19087 Georgia Arkansas 1998
#> 19088 Rhode Island Wisconsin 1998
#> 19089 Minnesota Michigan 1998
#> 19090 Florida South Carolina 1998
#> 19091 Delaware Iowa 1998
#> 19092 Florida Alabama 1998
#> 19093 Florida Kentucky 1998
#> 19094 Florida West Virginia 1998
#> 19095 Minnesota Tennessee 1998
#> 19096 Oregon New Hampshire 1998
#> 19097 Minnesota Mississippi 1998
#> 19098 New York Minnesota 1998
#> 19099 South Carolina Wyoming 1998
#> 19100 Connecticut New Jersey 1998
#> 19101 Illinois Massachusetts 1998
#> 19102 Minnesota Washington 1998
#> 19103 California Alaska 1998
#> 19104 Colorado Oregon 1998
#> 19105 California Ohio 1998
#> 19106 California Delaware 1998
#> 19107 California New York 1998
#> 19108 Connecticut Maine 1998
#> 19109 Florida Connecticut 1998
#> 19110 Minnesota Arkansas 1998
#> 19111 Wisconsin California 1998
#> 19112 Oregon Illinois 1998
#> 19113 Florida Colorado 1998
#> 19114 Iowa Wisconsin 1998
#> 19115 Delaware South Dakota 1998
#> 19116 Florida Virginia 1998
#> 19117 California South Carolina 1998
#> 19118 Hawaii Montana 1998
#> 19119 California Indiana 1998
#> 19120 Wisconsin Massachusetts 1998
#> 19121 Wisconsin Maryland 1998
#> 19122 Connecticut Vermont 1998
#> 19123 Colorado New Mexico 1998
#> 19124 Florida Michigan 1998
#> 19125 Michigan Florida 1998
#> 19126 California Rhode Island 1998
#> 19127 Connecticut Pennsylvania 1998
#> 19128 Louisiana Georgia 1998
#> 19129 New York North Carolina 1998
#> 19130 Oregon Kansas 1998
#> 19131 Minnesota Nebraska 1998
#> 19132 Illinois Minnesota 1998
#> 19133 Colorado Idaho 1998
#> 19134 California Louisiana 1998
#> 19135 North Dakota South Carolina 1998
#> 19136 Illinois Missouri 1998
#> 19137 Georgia Mississippi 1998
#> 19138 Idaho North Dakota 1998
#> 19139 Idaho Oklahoma 1998
#> 19140 Oregon Utah 1998
#> 19141 New York Washington 1998
#> 19142 New York Iowa 1998
#> 19143 Oregon Texas 1998
#> 19144 Minnesota New Jersey 1998
#> 19145 Hawaii Alaska 1998
#> 19146 New York New Hampshire 1998
#> 19147 Florida Ohio 1998
#> 19148 Massachusetts New York 1998
#> 19149 Michigan Tennessee 1998
#> 19150 Wisconsin Rhode Island 1998
#> 19151 Connecticut California 1998
#> 19152 New Jersey Massachusetts 1998
#> 19153 Iowa North Carolina 1998
#> 19154 Massachusetts West Virginia 1998
#> 19155 Colorado Michigan 1998
#> 19156 Georgia Kentucky 1998
#> 19157 New York Nevada 1998
#> 19158 Massachusetts Florida 1998
#> 19159 New York Connecticut 1998
#> 19160 Louisiana Montana 1998
#> 19161 Idaho Virginia 1998
#> 19162 Colorado Arizona 1998
#> 19163 New York Hawaii 1998
#> 19164 Utah Kansas 1998
#> 19165 Minnesota Delaware 1998
#> 19166 Idaho Wyoming 1998
#> 19167 New York New Mexico 1998
#> 19168 Connecticut Maryland 1998
#> 19169 Georgia Indiana 1998
#> 19170 Illinois Colorado 1998
#> 19171 Oregon Iowa 1998
#> 19172 Kansas Alabama 1998
#> 19173 New Jersey Oregon 1998
#> 19174 North Carolina Missouri 1998
#> 19175 New York Rhode Island 1998
#> 19176 California Connecticut 1998
#> 19177 Louisiana Nevada 1998
#> 19178 Idaho Tennessee 1998
#> 19179 Kentucky Illinois 1998
#> 19180 Connecticut Wisconsin 1998
#> 19181 Wisconsin Vermont 1998
#> 19182 Wisconsin Maine 1998
#> 19183 North Dakota Louisiana 1998
#> 19184 Michigan Arizona 1998
#> 19185 Colorado Minnesota 1998
#> 19186 Colorado North Dakota 1998
#> 19187 Hawaii Florida 1998
#> 19188 Michigan California 1998
#> 19189 Massachusetts Pennsylvania 1998
#> 19190 Idaho Nebraska 1998
#> 19191 Idaho Texas 1998
#> 19192 New Jersey Washington 1998
#> 19193 Kentucky Arkansas 1998
#> 19194 Colorado Hawaii 1998
#> 19195 Idaho Delaware 1998
#> 19196 Rhode Island New Mexico 1998
#> 19197 Louisiana Indiana 1998
#> 19198 New Jersey Maryland 1998
#> 19199 Illinois Connecticut 1998
#> 19200 Iowa Colorado 1998
#> 19201 Hawaii Oregon 1998
#> 19202 North Dakota Kentucky 1998
#> 19203 Alaska New York 1998
#> 19204 New Jersey Georgia 1998
#> 19205 New Mexico New Hampshire 1998
#> 19206 Georgia Tennessee 1998
#> 19207 Rhode Island Louisiana 1998
#> 19208 Michigan Montana 1998
#> 19209 Florida Wisconsin 1998
#> 19210 Tennessee Florida 1998
#> 19211 Kentucky Minnesota 1998
#> 19212 Kansas Mississippi 1998
#> 19213 Texas Massachusetts 1998
#> 19214 Iowa Nevada 1998
#> 19215 Minnesota Arizona 1998
#> 19216 Wisconsin North Carolina 1998
#> 19217 Michigan Ohio 1998
#> 19218 Idaho Iowa 1998
#> 19219 Minnesota Maine 1998
#> 19220 Utah Idaho 1998
#> 19221 Iowa Illinois 1998
#> 19222 New York Delaware 1998
#> 19223 Rhode Island Wyoming 1998
#> 19224 Illinois Pennsylvania 1998
#> 19225 California South Dakota 1998
#> 19226 Florida New Jersey 1998
#> 19227 North Dakota California 1998
#> 19228 Connecticut Colorado 1998
#> 19229 Utah Alaska 1998
#> 19230 Georgia Missouri 1998
#> 19231 Oregon South Dakota 1998
#> 19232 Idaho Washington 1998
#> 19233 California Texas 1998
#> 19234 Wisconsin South Carolina 1998
#> 19235 Idaho Ohio 1998
#> 19236 Wisconsin Michigan 1998
#> 19237 Louisiana Kansas 1998
#> 19238 Illinois Oklahoma 1998
#> 19239 Oregon Montana 1998
#> 19240 California Virginia 1998
#> 19241 California Arkansas 1998
#> 19242 Illinois Idaho 1998
#> 19243 Wisconsin New York 1998
#> 19244 West Virginia Georgia 1998
#> 19245 Indiana Alabama 1998
#> 19246 Wisconsin New Mexico 1998
#> 19247 Tennessee South Carolina 1998
#> 19248 New Mexico Iowa 1998
#> 19249 Michigan Nebraska 1998
#> 19250 Kentucky Utah 1998
#> 19251 New York Maryland 1998
#> 19252 Minnesota West Virginia 1998
#> 19253 Delaware Connecticut 1998
#> 19254 Hawaii North Carolina 1998
#> 19255 Rhode Island North Dakota 1998
#> 19256 Minnesota Oklahoma 1998
#> 19257 Connecticut Oregon 1998
#> 19258 Kansas Vermont 1998
#> 19259 New York Texas 1998
#> 19260 Rhode Island New Hampshire 1998
#> 19261 Iowa Hawaii 1998
#> 19262 Washington Montana 1998
#> 19263 Tennessee Missouri 1998
#> 19264 Hawaii North Dakota 1998
#> 19265 Illinois Georgia 1998
#> 19266 Arizona Oregon 1998
#> 19267 Kentucky New York 1998
#> 19268 Wisconsin Colorado 1998
#> 19269 Utah Maryland 1998
#> 19270 Illinois Virginia 1998
#> 19271 Wisconsin Indiana 1998
#> 19272 Louisiana Alaska 1998
#> 19273 Michigan Louisiana 1998
#> 19274 Hawaii Tennessee 1998
#> 19275 Rhode Island Michigan 1998
#> 19276 Wisconsin Nevada 1998
#> 19277 Wisconsin New Jersey 1998
#> 19278 Mississippi Arizona 1998
#> 19279 Louisiana Rhode Island 1998
#> 19280 Louisiana Mississippi 1998
#> 19281 Colorado Wisconsin 1998
#> 19282 New York Maine 1998
#> 19283 Illinois Alabama 1998
#> 19284 Nevada Idaho 1998
#> 19285 Arizona Arkansas 1998
#> 19286 Wisconsin Pennsylvania 1998
#> 19287 North Dakota Utah 1998
#> 19288 Hawaii Rhode Island 1998
#> 19289 Wisconsin Minnesota 1998
#> 19290 Virginia Florida 1998
#> 19291 Oregon Alabama 1998
#> 19292 Oregon Wyoming 1998
#> 19293 Idaho Michigan 1998
#> 19294 Kentucky Missouri 1998
#> 19295 Minnesota Oregon 1998
#> 19296 Mississippi New Mexico 1998
#> 19297 California Oklahoma 1998
#> 19298 Indiana West Virginia 1998
#> 19299 Delaware Kansas 1998
#> 19300 Mississippi Nebraska 1998
#> 19301 Kansas Hawaii 1998
#> 19302 Rhode Island Kentucky 1998
#> 19303 Louisiana Ohio 1998
#> 19304 Hawaii Arizona 1998
#> 19305 Washington California 1998
#> 19306 North Carolina New York 1998
#> 19307 Louisiana Illinois 1998
#> 19308 Kansas Colorado 1998
#> 19309 Maine North Carolina 1998
#> 19310 Iowa Nebraska 1998
#> 19311 Oregon Virginia 1998
#> 19312 Colorado Maryland 1998
#> 19313 Connecticut New Mexico 1998
#> 19314 Louisiana Tennessee 1998
#> 19315 Minnesota Kansas 1998
#> 19316 California Vermont 1998
#> 19317 Idaho New York 1998
#> 19318 Missouri Maine 1998
#> 19319 Utah Indiana 1998
#> 19320 Oregon California 1998
#> 19321 Minnesota Rhode Island 1998
#> 19322 Florida Washington 1998
#> 19323 Kentucky Louisiana 1998
#> 19324 Rhode Island Massachusetts 1998
#> 19325 Indiana Delaware 1998
#> 19326 Rhode Island California 1998
#> 19327 Connecticut North Carolina 1998
#> 19328 Georgia Florida 1998
#> 19329 California Utah 1998
#> 19330 North Carolina Minnesota 1998
#> 19331 California Idaho 1998
#> 19332 Connecticut South Carolina 1998
#> 19333 Idaho Colorado 1998
#> 19334 Michigan Rhode Island 1998
#> 19335 Louisiana New Mexico 1998
#> 19336 Maine Iowa 1998
#> 19337 New Jersey Delaware 1998
#> 19338 Virginia Kentucky 1998
#> 19339 Montana New Jersey 1998
#> 19340 Florida Rhode Island 1998
#> 19341 New Jersey Idaho 1998
#> 19342 Nevada Montana 1998
#> 19343 Connecticut New Hampshire 1998
#> 19344 California Tennessee 1998
#> 19345 Colorado Alaska 1998
#> 19346 Vermont Connecticut 1998
#> 19347 Illinois Rhode Island 1998
#> 19348 Colorado Texas 1998
#> 19349 Oregon Ohio 1998
#> 19350 Massachusetts South Dakota 1998
#> 19351 Idaho Kansas 1998
#> 19352 Texas Connecticut 1998
#> 19353 Arkansas Montana 1998
#> 19354 Nevada Georgia 1998
#> 19355 New York Florida 1998
#> 19356 Illinois Indiana 1998
#> 19357 Mississippi South Dakota 1998
#> 19358 Vermont Virginia 1998
#> 19359 Delaware Arkansas 1998
#> 19360 South Carolina North Carolina 1998
#> 19361 Maine Arizona 1998
#> 19362 California Wyoming 1998
#> 19363 Hawaii Louisiana 1998
#> 19364 Wisconsin Missouri 1998
#> 19365 Indiana Maine 1998
#> 19366 Kansas Wisconsin 1998
#> 19367 Minnesota Wisconsin 1998
#> 19368 Hawaii Delaware 1998
#> 19369 Illinois South Carolina 1998
#> 19370 Wyoming Idaho 1998
#> 19371 Maine Pennsylvania 1998
#> 19372 Tennessee Mississippi 1998
#> 19373 Washington Oregon 1998
#> 19374 Montana Florida 1998
#> 19375 Maine North Dakota 1998
#> 19376 Rhode Island Washington 1998
#> 19377 New Jersey Utah 1998
#> 19378 North Dakota Nebraska 1998
#> 19379 Utah New Jersey 1998
#> 19380 Mississippi Oklahoma 1998
#> 19381 Arkansas Minnesota 1998
#> 19382 Illinois Ohio 1998
#> 19383 South Carolina Illinois 1998
#> 19384 Pennsylvania Texas 1998
#> 19385 Illinois Maryland 1998
#> 19386 Maryland Indiana 1998
#> 19387 Illinois West Virginia 1998
#> 19388 Pennsylvania New York 1998
#> 19389 North Carolina Alabama 1998
#> 19390 Maryland New Mexico 1998
#> 19391 Utah South Carolina 1998
#> 19392 Washington Indiana 1998
#> 19393 Utah Georgia 1998
#> 19394 Hawaii Michigan 1998
#> 19395 Kentucky West Virginia 1998
#> 19396 Michigan Missouri 1998
#> 19397 Connecticut Hawaii 1998
#> 19398 Maryland Nevada 1998
#> 19399 New Mexico Mississippi 1998
#> 19400 Kentucky Maryland 1998
#> 19401 New Hampshire Hawaii 1998
#> 19402 Mississippi California 1998
#> 19403 Oregon Wisconsin 1998
#> 19404 Washington New Mexico 1998
#> 19405 Illinois Alaska 1998
#> 19406 Kansas Louisiana 1998
#> 19407 Minnesota Indiana 1998
#> 19408 Maryland Michigan 1998
#> 19409 Delaware Wyoming 1998
#> 19410 South Dakota Massachusetts 1998
#> 19411 Tennessee Nebraska 1998
#> 19412 Louisiana Missouri 1998
#> 19413 Kentucky Idaho 1998
#> 19414 Connecticut Iowa 1998
#> 19415 Hawaii Washington 1998
#> 19416 Kentucky Massachusetts 1998
#> 19417 Wisconsin Iowa 1998
#> 19418 Washington North Carolina 1998
#> 19419 Ohio South Dakota 1998
#> 19420 Kentucky Pennsylvania 1998
#> 19421 Tennessee Georgia 1998
#> 19422 Maryland Illinois 1998
#> 19423 Missouri Colorado 1998
#> 19424 California Kentucky 1998
#> 19425 South Carolina Texas 1998
#> 19426 New York Kansas 1998
#> 19427 California West Virginia 1998
#> 19428 Nevada Hawaii 1998
#> 19429 Washington North Dakota 1998
#> 19430 Vermont New York 1998
#> 19431 Delaware California 1998
#> 19432 Tennessee Massachusetts 1998
#> 19433 Maine Montana 1998
#> 19434 California Mississippi 1998
#> 19435 Iowa Arkansas 1998
#> 19436 New Mexico Alabama 1998
#> 19437 Alaska Nevada 1998
#> 19438 South Carolina Idaho 1998
#> 19439 Wisconsin Washington 1998
#> 19440 Montana Arizona 1998
#> 19441 Hawaii Vermont 1998
#> 19442 New Mexico Rhode Island 1998
#> 19443 New Mexico Utah 1998
#> 19444 Arkansas Delaware 1998
#> 19445 Tennessee Kentucky 1998
#> 19446 Maine Ohio 1998
#> 19447 Virginia Iowa 1998
#> 19448 Wisconsin New Hampshire 1998
#> 19449 North Dakota Wyoming 1998
#> 19450 Wisconsin Illinois 1998
#> 19451 Connecticut Rhode Island 1998
#> 19452 Wisconsin Tennessee 1998
#> 19453 New Hampshire Maine 1998
#> 19454 North Dakota Arizona 1998
#> 19455 New Hampshire New York 1998
#> 19456 Ohio Virginia 1998
#> 19457 Rhode Island Minnesota 1998
#> 19458 Ohio Utah 1998
#> 19459 Hawaii Connecticut 1998
#> 19460 Ohio Tennessee 1998
#> 19461 Kentucky North Dakota 1998
#> 19462 Wisconsin Arkansas 1998
#> 19463 Kentucky Michigan 1998
#> 19464 Washington Colorado 1998
#> 19465 Wyoming Illinois 1998
#> 19466 Indiana New Jersey 1998
#> 19467 Montana Washington 1998
#> 19468 Nebraska Mississippi 1998
#> 19469 Oregon Missouri 1998
#> 19470 Utah Virginia 1998
#> 19471 Missouri Pennsylvania 1998
#> 19472 New Hampshire Florida 1998
#> 19473 Michigan Wisconsin 1998
#> 19474 Hawaii Idaho 1998
#> 19475 Texas South Carolina 1998
#> 19476 Oklahoma Kentucky 1998
#> 19477 Rhode Island Nevada 1998
#> 19478 Connecticut Delaware 1998
#> 19479 Delaware Alabama 1998
#> 19480 Mississippi Nevada 1998
#> 19481 Washington Kansas 1998
#> 19482 Washington Louisiana 1998
#> 19483 Wisconsin Oregon 1998
#> 19484 Michigan Massachusetts 1998
#> 19485 Idaho Alaska 1998
#> 19486 North Dakota Nevada 1998
#> 19487 Connecticut Kansas 1998
#> 19488 Washington Idaho 1998
#> 19489 North Carolina Georgia 1998
#> 19490 Idaho Missouri 1998
#> 19491 Tennessee Montana 1998
#> 19492 New Jersey Colorado 1998
#> 19493 Pennsylvania California 1998
#> 19494 South Dakota Utah 1998
#> 19495 Tennessee Maryland 1998
#> 19496 Utah Connecticut 1998
#> 19497 Pennsylvania Rhode Island 1998
#> 19498 Kansas South Carolina 1998
#> 19499 Minnesota New Mexico 1998
#> 19500 Delaware New Mexico 1998
#> 19501 California Oregon 1999
#> 19502 Minnesota Iowa 1999
#> 19503 Minnesota Ohio 1999
#> 19504 California Florida 1999
#> 19505 Florida Texas 1999
#> 19506 Oregon Kentucky 1999
#> 19507 California Illinois 1999
#> 19508 California Colorado 1999
#> 19509 California Montana 1999
#> 19510 Florida Arizona 1999
#> 19511 California Minnesota 1999
#> 19512 Idaho Virginia 1999
#> 19513 Colorado South Dakota 1999
#> 19514 California Washington 1999
#> 19515 California Maryland 1999
#> 19516 Florida Mississippi 1999
#> 19517 California North Dakota 1999
#> 19518 Rhode Island Nebraska 1999
#> 19519 California New Mexico 1999
#> 19520 California North Carolina 1999
#> 19521 California Nevada 1999
#> 19522 Oregon Alaska 1999
#> 19523 Oregon Idaho 1999
#> 19524 Oregon Tennessee 1999
#> 19525 California New Hampshire 1999
#> 19526 Idaho Indiana 1999
#> 19527 Washington Pennsylvania 1999
#> 19528 Massachusetts Connecticut 1999
#> 19529 California New Jersey 1999
#> 19530 California Missouri 1999
#> 19531 Idaho Utah 1999
#> 19532 California Kansas 1999
#> 19533 Florida South Carolina 1999
#> 19534 Florida Georgia 1999
#> 19535 Colorado Arkansas 1999
#> 19536 Minnesota Alabama 1999
#> 19537 Oregon Maine 1999
#> 19538 California Vermont 1999
#> 19539 Oregon Delaware 1999
#> 19540 Minnesota California 1999
#> 19541 Oregon Oklahoma 1999
#> 19542 Florida Louisiana 1999
#> 19543 New York Michigan 1999
#> 19544 Washington Wisconsin 1999
#> 19545 California Rhode Island 1999
#> 19546 Colorado Wyoming 1999
#> 19547 California Massachusetts 1999
#> 19548 Oregon West Virginia 1999
#> 19549 California Hawaii 1999
#> 19550 Connecticut New York 1999
#> 19551 Oregon Minnesota 1999
#> 19552 Oregon Virginia 1999
#> 19553 New York New Jersey 1999
#> 19554 Oregon Connecticut 1999
#> 19555 Connecticut Ohio 1999
#> 19556 Oregon Arizona 1999
#> 19557 Florida Oklahoma 1999
#> 19558 California Georgia 1999
#> 19559 Oregon New Mexico 1999
#> 19560 Massachusetts California 1999
#> 19561 Massachusetts Rhode Island 1999
#> 19562 Florida Utah 1999
#> 19563 New York Oregon 1999
#> 19564 California Indiana 1999
#> 19565 Connecticut Washington 1999
#> 19566 Rhode Island Maine 1999
#> 19567 Michigan Illinois 1999
#> 19568 Connecticut Massachusetts 1999
#> 19569 Minnesota North Dakota 1999
#> 19570 Colorado Kansas 1999
#> 19571 Colorado Missouri 1999
#> 19572 Massachusetts Hawaii 1999
#> 19573 Illinois Texas 1999
#> 19574 Rhode Island Wisconsin 1999
#> 19575 Florida Idaho 1999
#> 19576 Illinois Delaware 1999
#> 19577 Oregon Maryland 1999
#> 19578 Colorado Montana 1999
#> 19579 Colorado Michigan 1999
#> 19580 Rhode Island Pennsylvania 1999
#> 19581 Connecticut North Carolina 1999
#> 19582 Minnesota Florida 1999
#> 19583 Minnesota Colorado 1999
#> 19584 Delaware South Dakota 1999
#> 19585 Delaware Iowa 1999
#> 19586 Georgia Arkansas 1999
#> 19587 California South Carolina 1999
#> 19588 Idaho Nevada 1999
#> 19589 California Alaska 1999
#> 19590 Colorado Louisiana 1999
#> 19591 California Nebraska 1999
#> 19592 Oregon Vermont 1999
#> 19593 Florida Kentucky 1999
#> 19594 Florida Alabama 1999
#> 19595 Florida Tennessee 1999
#> 19596 Michigan West Virginia 1999
#> 19597 Oregon Mississippi 1999
#> 19598 Oregon New Hampshire 1999
#> 19599 South Carolina Wyoming 1999
#> 19600 Minnesota Washington 1999
#> 19601 New York Minnesota 1999
#> 19602 Connecticut New Jersey 1999
#> 19603 Illinois Massachusetts 1999
#> 19604 California Delaware 1999
#> 19605 California New York 1999
#> 19606 Colorado Oregon 1999
#> 19607 California Ohio 1999
#> 19608 Connecticut Maine 1999
#> 19609 Florida Connecticut 1999
#> 19610 Oregon Rhode Island 1999
#> 19611 Wisconsin California 1999
#> 19612 Kentucky Illinois 1999
#> 19613 Louisiana Indiana 1999
#> 19614 Florida Michigan 1999
#> 19615 North Dakota South Carolina 1999
#> 19616 Minnesota Arkansas 1999
#> 19617 Iowa Wisconsin 1999
#> 19618 Connecticut Vermont 1999
#> 19619 Wisconsin North Carolina 1999
#> 19620 North Dakota South Dakota 1999
#> 19621 Florida Virginia 1999
#> 19622 Michigan Florida 1999
#> 19623 Louisiana Kansas 1999
#> 19624 Hawaii Montana 1999
#> 19625 North Dakota Nebraska 1999
#> 19626 Wisconsin Maryland 1999
#> 19627 Wisconsin Massachusetts 1999
#> 19628 Rhode Island Colorado 1999
#> 19629 North Dakota Kentucky 1999
#> 19630 Illinois Georgia 1999
#> 19631 Colorado New Mexico 1999
#> 19632 Connecticut Pennsylvania 1999
#> 19633 New York Oklahoma 1999
#> 19634 Colorado Idaho 1999
#> 19635 California Louisiana 1999
#> 19636 Idaho North Dakota 1999
#> 19637 Georgia Mississippi 1999
#> 19638 Oregon Utah 1999
#> 19639 New York Washington 1999
#> 19640 New York Iowa 1999
#> 19641 Connecticut California 1999
#> 19642 Oregon Texas 1999
#> 19643 Illinois Minnesota 1999
#> 19644 Minnesota New Jersey 1999
#> 19645 New York New Hampshire 1999
#> 19646 Hawaii Alaska 1999
#> 19647 Illinois Missouri 1999
#> 19648 New York Nevada 1999
#> 19649 Florida Ohio 1999
#> 19650 Illinois Tennessee 1999
#> 19651 Illinois Virginia 1999
#> 19652 Massachusetts New York 1999
#> 19653 California Connecticut 1999
#> 19654 Wisconsin Michigan 1999
#> 19655 Minnesota Delaware 1999
#> 19656 Idaho Colorado 1999
#> 19657 Idaho Wyoming 1999
#> 19658 Oregon Kansas 1999
#> 19659 Oregon Illinois 1999
#> 19660 Wisconsin Vermont 1999
#> 19661 Georgia Indiana 1999
#> 19662 Massachusetts Florida 1999
#> 19663 Colorado Hawaii 1999
#> 19664 California Arizona 1999
#> 19665 California West Virginia 1999
#> 19666 Wisconsin Maine 1999
#> 19667 Georgia Kentucky 1999
#> 19668 New York New Mexico 1999
#> 19669 Connecticut Maryland 1999
#> 19670 Florida Massachusetts 1999
#> 19671 Minnesota Nebraska 1999
#> 19672 Connecticut Iowa 1999
#> 19673 Louisiana Montana 1999
#> 19674 Kansas Alabama 1999
#> 19675 New York Connecticut 1999
#> 19676 Illinois Rhode Island 1999
#> 19677 Colorado Wisconsin 1999
#> 19678 Minnesota South Carolina 1999
#> 19679 Louisiana Nevada 1999
#> 19680 Florida Oregon 1999
#> 19681 California Virginia 1999
#> 19682 Michigan Georgia 1999
#> 19683 Connecticut Tennessee 1999
#> 19684 Connecticut Colorado 1999
#> 19685 Maine North Carolina 1999
#> 19686 Colorado Minnesota 1999
#> 19687 Colorado North Dakota 1999
#> 19688 Hawaii Florida 1999
#> 19689 New York Hawaii 1999
#> 19690 Michigan California 1999
#> 19691 Arizona Missouri 1999
#> 19692 Massachusetts Pennsylvania 1999
#> 19693 Idaho Iowa 1999
#> 19694 Idaho Texas 1999
#> 19695 Kentucky Arkansas 1999
#> 19696 Illinois Idaho 1999
#> 19697 Wisconsin Rhode Island 1999
#> 19698 Rhode Island Louisiana 1999
#> 19699 New Mexico Oklahoma 1999
#> 19700 New Jersey Washington 1999
#> 19701 Rhode Island Iowa 1999
#> 19702 Idaho Delaware 1999
#> 19703 Rhode Island New Mexico 1999
#> 19704 New Mexico New Hampshire 1999
#> 19705 South Carolina North Carolina 1999
#> 19706 Alaska New York 1999
#> 19707 California South Dakota 1999
#> 19708 Iowa Illinois 1999
#> 19709 Utah Kansas 1999
#> 19710 Minnesota Arizona 1999
#> 19711 New York Maryland 1999
#> 19712 Tennessee Florida 1999
#> 19713 Michigan Montana 1999
#> 19714 Kentucky Minnesota 1999
#> 19715 Florida Nebraska 1999
#> 19716 Kansas Virginia 1999
#> 19717 Iowa Nevada 1999
#> 19718 Hawaii Oregon 1999
#> 19719 Illinois Connecticut 1999
#> 19720 South Dakota West Virginia 1999
#> 19721 Massachusetts Ohio 1999
#> 19722 Florida New Jersey 1999
#> 19723 Michigan Rhode Island 1999
#> 19724 California Tennessee 1999
#> 19725 Iowa Massachusetts 1999
#> 19726 Minnesota Maine 1999
#> 19727 Rhode Island Indiana 1999
#> 19728 New York North Carolina 1999
#> 19729 New York Delaware 1999
#> 19730 Idaho Washington 1999
#> 19731 North Carolina Wisconsin 1999
#> 19732 Rhode Island Wyoming 1999
#> 19733 California Mississippi 1999
#> 19734 Utah Alaska 1999
#> 19735 Utah California 1999
#> 19736 Kentucky New York 1999
#> 19737 Colorado Maryland 1999
#> 19738 Oregon South Dakota 1999
#> 19739 North Dakota Louisiana 1999
#> 19740 Connecticut Oregon 1999
#> 19741 Utah Idaho 1999
#> 19742 California Texas 1999
#> 19743 Texas Colorado 1999
#> 19744 California Arkansas 1999
#> 19745 Wisconsin South Carolina 1999
#> 19746 Kansas Vermont 1999
#> 19747 Mississippi Oklahoma 1999
#> 19748 Oregon Montana 1999
#> 19749 Rhode Island Kentucky 1999
#> 19750 Michigan Ohio 1999
#> 19751 Connecticut Alabama 1999
#> 19752 Louisiana Utah 1999
#> 19753 Minnesota West Virginia 1999
#> 19754 North Carolina Georgia 1999
#> 19755 Rhode Island Michigan 1999
#> 19756 Connecticut South Carolina 1999
#> 19757 Illinois Pennsylvania 1999
#> 19758 Wisconsin New Mexico 1999
#> 19759 Indiana Missouri 1999
#> 19760 Minnesota Oklahoma 1999
#> 19761 Michigan Arizona 1999
#> 19762 Pennsylvania New York 1999
#> 19763 Utah Tennessee 1999
#> 19764 Rhode Island North Dakota 1999
#> 19765 Delaware Connecticut 1999
#> 19766 Indiana Alabama 1999
#> 19767 New Mexico Rhode Island 1999
#> 19768 New York Texas 1999
#> 19769 Tennessee Missouri 1999
#> 19770 Iowa Hawaii 1999
#> 19771 Utah Georgia 1999
#> 19772 North Dakota Arizona 1999
#> 19773 Rhode Island New Hampshire 1999
#> 19774 Hawaii North Carolina 1999
#> 19775 Hawaii California 1999
#> 19776 Hawaii North Dakota 1999
#> 19777 North Carolina Minnesota 1999
#> 19778 Montana Oregon 1999
#> 19779 Washington Montana 1999
#> 19780 North Dakota Mississippi 1999
#> 19781 Georgia Nebraska 1999
#> 19782 Louisiana Alaska 1999
#> 19783 Iowa Utah 1999
#> 19784 Wisconsin Indiana 1999
#> 19785 Michigan Louisiana 1999
#> 19786 Wisconsin Nevada 1999
#> 19787 Wisconsin New Jersey 1999
#> 19788 California Wisconsin 1999
#> 19789 New York Maine 1999
#> 19790 Delaware Kansas 1999
#> 19791 Mississippi Arizona 1999
#> 19792 New Jersey Massachusetts 1999
#> 19793 Connecticut West Virginia 1999
#> 19794 Idaho Ohio 1999
#> 19795 Illinois Alabama 1999
#> 19796 Nevada Idaho 1999
#> 19797 Louisiana South Carolina 1999
#> 19798 Connecticut Virginia 1999
#> 19799 Arizona Arkansas 1999
#> 19800 Georgia Florida 1999
#> 19801 Michigan Nebraska 1999
#> 19802 Florida Rhode Island 1999
#> 19803 Oregon Michigan 1999
#> 19804 Rhode Island California 1999
#> 19805 Wisconsin Pennsylvania 1999
#> 19806 Connecticut New Mexico 1999
#> 19807 Oregon Wyoming 1999
#> 19808 California Oklahoma 1999
#> 19809 Pennsylvania Wisconsin 1999
#> 19810 Kansas Hawaii 1999
#> 19811 Louisiana Illinois 1999
#> 19812 Virginia Florida 1999
#> 19813 Connecticut New Hampshire 1999
#> 19814 Utah Maryland 1999
#> 19815 North Carolina New York 1999
#> 19816 Utah Indiana 1999
#> 19817 Mississippi New Mexico 1999
#> 19818 Massachusetts Missouri 1999
#> 19819 Texas Kentucky 1999
#> 19820 Iowa Colorado 1999
#> 19821 Minnesota Kansas 1999
#> 19822 Missouri Maine 1999
#> 19823 New Mexico Iowa 1999
#> 19824 Florida Washington 1999
#> 19825 Kentucky Louisiana 1999
#> 19826 Wisconsin Oregon 1999
#> 19827 Indiana Delaware 1999
#> 19828 North Carolina Michigan 1999
#> 19829 Michigan Utah 1999
#> 19830 Kentucky Missouri 1999
#> 19831 Wisconsin Minnesota 1999
#> 19832 Pennsylvania Indiana 1999
#> 19833 Utah South Carolina 1999
#> 19834 Maine Vermont 1999
#> 19835 New Jersey Maryland 1999
#> 19836 Wisconsin Colorado 1999
#> 19837 California Idaho 1999
#> 19838 Michigan Tennessee 1999
#> 19839 South Carolina Wisconsin 1999
#> 19840 Minnesota Rhode Island 1999
#> 19841 Louisiana Ohio 1999
#> 19842 North Carolina Arizona 1999
#> 19843 Wisconsin Mississippi 1999
#> 19844 Montana Georgia 1999
#> 19845 Wisconsin New York 1999
#> 19846 Montana New Jersey 1999
#> 19847 Colorado Alaska 1999
#> 19848 South Dakota Utah 1999
#> 19849 New Jersey Idaho 1999
#> 19850 Delaware Massachusetts 1999
#> 19851 Virginia Kentucky 1999
#> 19852 Nevada Montana 1999
#> 19853 Vermont Connecticut 1999
#> 19854 Colorado Texas 1999
#> 19855 Montana Florida 1999
#> 19856 Nevada Mississippi 1999
#> 19857 Massachusetts South Dakota 1999
#> 19858 Idaho Kansas 1999
#> 19859 Arkansas Montana 1999
#> 19860 Utah Connecticut 1999
#> 19861 Hawaii New York 1999
#> 19862 Maine Iowa 1999
#> 19863 New York Florida 1999
#> 19864 Kansas Wisconsin 1999
#> 19865 Oregon Ohio 1999
#> 19866 Colorado California 1999
#> 19867 Mississippi South Dakota 1999
#> 19868 Delaware Arkansas 1999
#> 19869 Kansas Louisiana 1999
#> 19870 New Mexico Mississippi 1999
#> 19871 New York Colorado 1999
#> 19872 Montana Arizona 1999
#> 19873 California Wyoming 1999
#> 19874 Hawaii Louisiana 1999
#> 19875 Indiana Maine 1999
#> 19876 Hawaii Delaware 1999
#> 19877 Minnesota Tennessee 1999
#> 19878 Iowa Nebraska 1999
#> 19879 Tennessee Georgia 1999
#> 19880 Wyoming Idaho 1999
#> 19881 Maine Pennsylvania 1999
#> 19882 Connecticut Rhode Island 1999
#> 19883 Pennsylvania Texas 1999
#> 19884 Maine North Dakota 1999
#> 19885 Rhode Island Washington 1999
#> 19886 Maryland Indiana 1999
#> 19887 Washington Massachusetts 1999
#> 19888 Utah New Jersey 1999
#> 19889 Pennsylvania Illinois 1999
#> 19890 Kentucky Maryland 1999
#> 19891 Hawaii Rhode Island 1999
#> 19892 Arkansas Minnesota 1999
#> 19893 Ohio Tennessee 1999
#> 19894 Washington Colorado 1999
#> 19895 Maryland New Mexico 1999
#> 19896 Illinois Maryland 1999
#> 19897 Mississippi Missouri 1999
#> 19898 Mississippi Nebraska 1999
#> 19899 Utah Mississippi 1999
#> 19900 New Jersey Georgia 1999
#> 19901 New Mexico Alabama 1999
#> 19902 Maryland Oklahoma 1999
#> 19903 Washington Indiana 1999
#> 19904 Connecticut Hawaii 1999
#> 19905 Maryland Nevada 1999
#> 19906 Delaware California 1999
#> 19907 Virginia North Carolina 1999
#> 19908 Maryland Michigan 1999
#> 19909 New Hampshire Hawaii 1999
#> 19910 New Jersey Delaware 1999
#> 19911 Colorado Tennessee 1999
#> 19912 Washington New Mexico 1999
#> 19913 Louisiana New Mexico 1999
#> 19914 Illinois Alaska 1999
#> 19915 Idaho South Carolina 1999
#> 19916 Delaware Wyoming 1999
#> 19917 Washington North Carolina 1999
#> 19918 Massachusetts Oregon 1999
#> 19919 Oregon Wisconsin 1999
#> 19920 North Dakota Michigan 1999
#> 19921 Kentucky Idaho 1999
#> 19922 Tennessee Kentucky 1999
#> 19923 Hawaii Washington 1999
#> 19924 New Hampshire West Virginia 1999
#> 19925 Connecticut Florida 1999
#> 19926 Delaware Missouri 1999
#> 19927 Texas Vermont 1999
#> 19928 Idaho Illinois 1999
#> 19929 Ohio South Dakota 1999
#> 19930 Minnesota Oregon 1999
#> 19931 Nevada Georgia 1999
#> 19932 Kentucky Pennsylvania 1999
#> 19933 New York Kansas 1999
#> 19934 Pennsylvania Rhode Island 1999
#> 19935 Nevada Hawaii 1999
#> 19936 Washington North Dakota 1999
#> 19937 Vermont New York 1999
#> 19938 Hawaii Arizona 1999
#> 19939 Florida Indiana 1999
#> 19940 Maine Montana 1999
#> 19941 California Kentucky 1999
#> 19942 Iowa Arkansas 1999
#> 19943 New York Missouri 1999
#> 19944 Maine Wisconsin 1999
#> 19945 Alaska Nevada 1999
#> 19946 South Carolina Idaho 1999
#> 19947 Montana West Virginia 1999
#> 19948 Connecticut Illinois 1999
#> 19949 Wisconsin Washington 1999
#> 19950 California Utah 1999
#> 19951 Kentucky North Dakota 1999
#> 19952 Minnesota Utah 1999
#> 19953 Arkansas Delaware 1999
#> 19954 Maryland Massachusetts 1999
#> 19955 Utah Virginia 1999
#> 19956 Illinois New York 1999
#> 19957 Wisconsin New Hampshire 1999
#> 19958 North Dakota Wyoming 1999
#> 19959 New York Rhode Island 1999
#> 19960 Virginia Iowa 1999
#> 19961 Hawaii Connecticut 1999
#> 19962 New Hampshire Maine 1999
#> 19963 Missouri Ohio 1999
#> 19964 Minnesota New Mexico 1999
#> 19965 Kentucky Michigan 1999
#> 19966 Montana Alaska 1999
#> 19967 Indiana Ohio 1999
#> 19968 New Hampshire New York 1999
#> 19969 Rhode Island Minnesota 1999
#> 19970 Wisconsin Arkansas 1999
#> 19971 Nebraska Mississippi 1999
#> 19972 Tennessee Virginia 1999
#> 19973 Indiana New Jersey 1999
#> 19974 Georgia Texas 1999
#> 19975 Virginia Oregon 1999
#> 19976 Montana Washington 1999
#> 19977 Delaware Alabama 1999
#> 19978 Wisconsin Tennessee 1999
#> 19979 Michigan Indiana 1999
#> 19980 Missouri Pennsylvania 1999
#> 19981 Illinois Iowa 1999
#> 19982 Virginia California 1999
#> 19983 Hawaii Idaho 1999
#> 19984 Connecticut Louisiana 1999
#> 19985 Rhode Island Nevada 1999
#> 19986 Connecticut Delaware 1999
#> 19987 Tennessee Maryland 1999
#> 19988 New Mexico Minnesota 1999
#> 19989 Washington Kansas 1999
#> 19990 Ohio Utah 1999
#> 19991 Ohio North Carolina 1999
#> 19992 Mississippi Alabama 1999
#> 19993 Florida Vermont 1999
#> 19994 Connecticut Kansas 1999
#> 19995 Washington Idaho 1999
#> 19996 Connecticut Wisconsin 1999
#> 19997 New York West Virginia 1999
#> 19998 Tennessee Montana 1999
#> 19999 South Carolina Illinois 1999
#> 20000 Virginia South Dakota 1999
#> 20001 California Oregon 2000
#> 20002 California Illinois 2000
#> 20003 Florida Texas 2000
#> 20004 Minnesota Iowa 2000
#> 20005 California Montana 2000
#> 20006 Minnesota Ohio 2000
#> 20007 California Florida 2000
#> 20008 Oregon Kentucky 2000
#> 20009 California Minnesota 2000
#> 20010 California Washington 2000
#> 20011 California Colorado 2000
#> 20012 California New Mexico 2000
#> 20013 Florida Arizona 2000
#> 20014 Minnesota Virginia 2000
#> 20015 California Maryland 2000
#> 20016 Colorado South Dakota 2000
#> 20017 California New Jersey 2000
#> 20018 California Missouri 2000
#> 20019 Rhode Island Nebraska 2000
#> 20020 California North Carolina 2000
#> 20021 California Nevada 2000
#> 20022 California North Dakota 2000
#> 20023 California New Hampshire 2000
#> 20024 Massachusetts Connecticut 2000
#> 20025 Idaho Indiana 2000
#> 20026 Florida Mississippi 2000
#> 20027 Oregon Maine 2000
#> 20028 California Kansas 2000
#> 20029 Oregon Alaska 2000
#> 20030 California Vermont 2000
#> 20031 California Georgia 2000
#> 20032 Oregon Tennessee 2000
#> 20033 Oregon Idaho 2000
#> 20034 California Arkansas 2000
#> 20035 Minnesota Delaware 2000
#> 20036 Idaho Utah 2000
#> 20037 Washington Pennsylvania 2000
#> 20038 Florida South Carolina 2000
#> 20039 Minnesota Alabama 2000
#> 20040 Minnesota California 2000
#> 20041 Minnesota Michigan 2000
#> 20042 Oregon Oklahoma 2000
#> 20043 Colorado Wyoming 2000
#> 20044 Washington Wisconsin 2000
#> 20045 California Rhode Island 2000
#> 20046 Florida Louisiana 2000
#> 20047 California Massachusetts 2000
#> 20048 Oregon West Virginia 2000
#> 20049 California Hawaii 2000
#> 20050 Connecticut New York 2000
#> 20051 Oregon Minnesota 2000
#> 20052 Rhode Island Ohio 2000
#> 20053 New York New Jersey 2000
#> 20054 Florida Oklahoma 2000
#> 20055 Connecticut Delaware 2000
#> 20056 Oregon Connecticut 2000
#> 20057 Rhode Island Wisconsin 2000
#> 20058 Idaho Virginia 2000
#> 20059 Massachusetts California 2000
#> 20060 Florida Utah 2000
#> 20061 California Indiana 2000
#> 20062 Florida Georgia 2000
#> 20063 Oregon Arizona 2000
#> 20064 Illinois Texas 2000
#> 20065 Oregon New Mexico 2000
#> 20066 New York Oregon 2000
#> 20067 Massachusetts Rhode Island 2000
#> 20068 New York Michigan 2000
#> 20069 Massachusetts Colorado 2000
#> 20070 Idaho North Dakota 2000
#> 20071 Louisiana Kansas 2000
#> 20072 Rhode Island Maine 2000
#> 20073 Minnesota Washington 2000
#> 20074 Michigan Illinois 2000
#> 20075 Oregon Maryland 2000
#> 20076 Louisiana Missouri 2000
#> 20077 Rhode Island Pennsylvania 2000
#> 20078 Delaware South Dakota 2000
#> 20079 Massachusetts Hawaii 2000
#> 20080 Connecticut Massachusetts 2000
#> 20081 Florida Arkansas 2000
#> 20082 Minnesota Florida 2000
#> 20083 Rhode Island Kentucky 2000
#> 20084 Oregon Vermont 2000
#> 20085 Florida Idaho 2000
#> 20086 California South Carolina 2000
#> 20087 Colorado Montana 2000
#> 20088 Colorado Louisiana 2000
#> 20089 California Alaska 2000
#> 20090 Delaware Iowa 2000
#> 20091 Virginia North Carolina 2000
#> 20092 Colorado Nebraska 2000
#> 20093 Idaho Nevada 2000
#> 20094 Florida Alabama 2000
#> 20095 Maryland New Hampshire 2000
#> 20096 Minnesota Tennessee 2000
#> 20097 South Carolina Wyoming 2000
#> 20098 Minnesota Mississippi 2000
#> 20099 Massachusetts Washington 2000
#> 20100 New York Minnesota 2000
#> 20101 Michigan West Virginia 2000
#> 20102 Connecticut New Jersey 2000
#> 20103 Illinois Massachusetts 2000
#> 20104 California New York 2000
#> 20105 Colorado Oregon 2000
#> 20106 Connecticut Maine 2000
#> 20107 Minnesota Kansas 2000
#> 20108 Connecticut Virginia 2000
#> 20109 Florida Connecticut 2000
#> 20110 Illinois Delaware 2000
#> 20111 Idaho Colorado 2000
#> 20112 Minnesota Illinois 2000
#> 20113 Oregon Rhode Island 2000
#> 20114 North Dakota South Carolina 2000
#> 20115 Wisconsin California 2000
#> 20116 Connecticut Vermont 2000
#> 20117 Louisiana Indiana 2000
#> 20118 Iowa Wisconsin 2000
#> 20119 Michigan Florida 2000
#> 20120 North Dakota South Dakota 2000
#> 20121 Florida Ohio 2000
#> 20122 Utah Arkansas 2000
#> 20123 Colorado New Mexico 2000
#> 20124 Wisconsin Maryland 2000
#> 20125 California Texas 2000
#> 20126 Kansas Montana 2000
#> 20127 Colorado North Dakota 2000
#> 20128 New York North Carolina 2000
#> 20129 Florida Michigan 2000
#> 20130 Colorado Missouri 2000
#> 20131 Illinois Georgia 2000
#> 20132 Wisconsin Massachusetts 2000
#> 20133 Florida Kentucky 2000
#> 20134 Connecticut Nebraska 2000
#> 20135 Connecticut Pennsylvania 2000
#> 20136 Illinois Minnesota 2000
#> 20137 California Louisiana 2000
#> 20138 Idaho Washington 2000
#> 20139 California Oklahoma 2000
#> 20140 Colorado Idaho 2000
#> 20141 Oregon Utah 2000
#> 20142 Connecticut New Hampshire 2000
#> 20143 California Virginia 2000
#> 20144 Minnesota New Jersey 2000
#> 20145 Iowa North Carolina 2000
#> 20146 Colorado Hawaii 2000
#> 20147 Michigan Tennessee 2000
#> 20148 New York Nevada 2000
#> 20149 New York Iowa 2000
#> 20150 Connecticut California 2000
#> 20151 Hawaii Alaska 2000
#> 20152 Maryland Connecticut 2000
#> 20153 Connecticut Colorado 2000
#> 20154 Kentucky New York 2000
#> 20155 Kansas Mississippi 2000
#> 20156 Georgia Indiana 2000
#> 20157 Oregon Kansas 2000
#> 20158 California Delaware 2000
#> 20159 Idaho Wyoming 2000
#> 20160 North Dakota Kentucky 2000
#> 20161 Illinois Oklahoma 2000
#> 20162 California Ohio 2000
#> 20163 Minnesota Arizona 2000
#> 20164 Massachusetts Florida 2000
#> 20165 Kentucky Illinois 2000
#> 20166 Colorado Michigan 2000
#> 20167 California West Virginia 2000
#> 20168 West Virginia Georgia 2000
#> 20169 Connecticut Iowa 2000
#> 20170 Wisconsin Maine 2000
#> 20171 Rhode Island New Mexico 2000
#> 20172 Wisconsin Vermont 2000
#> 20173 Florida Massachusetts 2000
#> 20174 Florida Nebraska 2000
#> 20175 Louisiana Nevada 2000
#> 20176 Georgia Tennessee 2000
#> 20177 Michigan Arizona 2000
#> 20178 Kentucky Arkansas 2000
#> 20179 Rhode Island Louisiana 2000
#> 20180 Michigan Maryland 2000
#> 20181 New York Connecticut 2000
#> 20182 Michigan Wisconsin 2000
#> 20183 California Alabama 2000
#> 20184 Indiana Montana 2000
#> 20185 Illinois Rhode Island 2000
#> 20186 Minnesota South Carolina 2000
#> 20187 Indiana Oregon 2000
#> 20188 Connecticut Ohio 2000
#> 20189 New Mexico Iowa 2000
#> 20190 Hawaii Florida 2000
#> 20191 New York New Mexico 2000
#> 20192 Illinois New York 2000
#> 20193 Virginia California 2000
#> 20194 California Mississippi 2000
#> 20195 Louisiana Virginia 2000
#> 20196 Illinois Missouri 2000
#> 20197 Colorado Minnesota 2000
#> 20198 Minnesota New Hampshire 2000
#> 20199 Oregon Texas 2000
#> 20200 Massachusetts Pennsylvania 2000
#> 20201 Rhode Island North Dakota 2000
#> 20202 Illinois Idaho 2000
#> 20203 Iowa Nevada 2000
#> 20204 New Jersey Washington 2000
#> 20205 Maryland Hawaii 2000
#> 20206 Idaho Delaware 2000
#> 20207 South Dakota West Virginia 2000
#> 20208 Idaho Tennessee 2000
#> 20209 Minnesota Arkansas 2000
#> 20210 Tennessee Florida 2000
#> 20211 Idaho Kansas 2000
#> 20212 California South Dakota 2000
#> 20213 Nevada Rhode Island 2000
#> 20214 Utah Maryland 2000
#> 20215 Maryland Maine 2000
#> 20216 Idaho Texas 2000
#> 20217 Kentucky Minnesota 2000
#> 20218 Connecticut Wisconsin 2000
#> 20219 Michigan California 2000
#> 20220 Oregon Montana 2000
#> 20221 Wisconsin North Carolina 2000
#> 20222 Minnesota Oklahoma 2000
#> 20223 Colorado Arizona 2000
#> 20224 Iowa Colorado 2000
#> 20225 North Carolina New York 2000
#> 20226 Minnesota Oregon 2000
#> 20227 Utah Nebraska 2000
#> 20228 Florida New Jersey 2000
#> 20229 Georgia Kentucky 2000
#> 20230 Rhode Island Colorado 2000
#> 20231 Florida Virginia 2000
#> 20232 Iowa Massachusetts 2000
#> 20233 Minnesota Maine 2000
#> 20234 Rhode Island Indiana 2000
#> 20235 Idaho Illinois 2000
#> 20236 Mississippi Arizona 2000
#> 20237 Tennessee South Carolina 2000
#> 20238 Rhode Island Wyoming 2000
#> 20239 North Dakota Louisiana 2000
#> 20240 Idaho Michigan 2000
#> 20241 Utah Alaska 2000
#> 20242 Idaho Iowa 2000
#> 20243 Maryland Alabama 2000
#> 20244 Oregon South Dakota 2000
#> 20245 Kentucky Georgia 2000
#> 20246 Delaware Connecticut 2000
#> 20247 Utah Idaho 2000
#> 20248 Kansas Vermont 2000
#> 20249 Connecticut Washington 2000
#> 20250 Connecticut Oregon 2000
#> 20251 Louisiana Utah 2000
#> 20252 Colorado Wisconsin 2000
#> 20253 New York Ohio 2000
#> 20254 Hawaii North Dakota 2000
#> 20255 Illinois Pennsylvania 2000
#> 20256 Connecticut North Carolina 2000
#> 20257 Minnesota West Virginia 2000
#> 20258 Illinois Iowa 2000
#> 20259 Rhode Island Michigan 2000
#> 20260 New Mexico Oklahoma 2000
#> 20261 Wisconsin New Mexico 2000
#> 20262 Hawaii Oregon 2000
#> 20263 Arizona Missouri 2000
#> 20264 Utah California 2000
#> 20265 California Connecticut 2000
#> 20266 Idaho Ohio 2000
#> 20267 South Carolina Wisconsin 2000
#> 20268 Louisiana Montana 2000
#> 20269 Florida Rhode Island 2000
#> 20270 Maryland Kansas 2000
#> 20271 Hawaii New York 2000
#> 20272 Virginia Florida 2000
#> 20273 Illinois Hawaii 2000
#> 20274 Wisconsin Nevada 2000
#> 20275 Connecticut Maryland 2000
#> 20276 Wisconsin South Carolina 2000
#> 20277 New York Texas 2000
#> 20278 California Idaho 2000
#> 20279 Oregon Delaware 2000
#> 20280 Arizona Arkansas 2000
#> 20281 Wisconsin Rhode Island 2000
#> 20282 New York Delaware 2000
#> 20283 Maine North Carolina 2000
#> 20284 Louisiana Tennessee 2000
#> 20285 Tennessee Missouri 2000
#> 20286 Wisconsin Indiana 2000
#> 20287 Louisiana Alaska 2000
#> 20288 New Jersey Louisiana 2000
#> 20289 Iowa Utah 2000
#> 20290 California Wyoming 2000
#> 20291 Louisiana Mississippi 2000
#> 20292 Texas South Carolina 2000
#> 20293 New Mexico Alabama 2000
#> 20294 New Jersey Massachusetts 2000
#> 20295 Connecticut West Virginia 2000
#> 20296 Michigan Montana 2000
#> 20297 Massachusetts Texas 2000
#> 20298 Missouri Kentucky 2000
#> 20299 Oklahoma North Dakota 2000
#> 20300 New Mexico New Hampshire 2000
#> 20301 Illinois Maryland 2000
#> 20302 Mississippi Nebraska 2000
#> 20303 Utah New Jersey 2000
#> 20304 Kentucky Virginia 2000
#> 20305 Arkansas Minnesota 2000
#> 20306 North Dakota Nebraska 2000
#> 20307 Maryland Nevada 2000
#> 20308 North Carolina Missouri 2000
#> 20309 Connecticut New Mexico 2000
#> 20310 Wisconsin Pennsylvania 2000
#> 20311 Oregon Ohio 2000
#> 20312 Oregon North Carolina 2000
#> 20313 Montana New Jersey 2000
#> 20314 New Jersey Georgia 2000
#> 20315 Georgia Florida 2000
#> 20316 Rhode Island New York 2000
#> 20317 Maine Arizona 2000
#> 20318 Colorado California 2000
#> 20319 Pennsylvania Ohio 2000
#> 20320 Hawaii Tennessee 2000
#> 20321 Michigan Rhode Island 2000
#> 20322 Utah Indiana 2000
#> 20323 Arizona Oregon 2000
#> 20324 Mississippi New Mexico 2000
#> 20325 Wisconsin Michigan 2000
#> 20326 Maine Arkansas 2000
#> 20327 New Jersey New York 2000
#> 20328 Hawaii Arizona 2000
#> 20329 Rhode Island New Hampshire 2000
#> 20330 Kentucky Louisiana 2000
#> 20331 Illinois Connecticut 2000
#> 20332 Nevada Hawaii 2000
#> 20333 Washington Illinois 2000
#> 20334 Washington Colorado 2000
#> 20335 Kentucky Colorado 2000
#> 20336 Nevada Idaho 2000
#> 20337 Maine Vermont 2000
#> 20338 Florida Washington 2000
#> 20339 New Mexico Mississippi 2000
#> 20340 New Jersey Maryland 2000
#> 20341 Pennsylvania Indiana 2000
#> 20342 Wisconsin Minnesota 2000
#> 20343 Michigan Utah 2000
#> 20344 Rhode Island Massachusetts 2000
#> 20345 Hawaii California 2000
#> 20346 Virginia Delaware 2000
#> 20347 North Dakota Rhode Island 2000
#> 20348 Washington Montana 2000
#> 20349 Illinois Alabama 2000
#> 20350 Mississippi Oklahoma 2000
#> 20351 Maryland Illinois 2000
#> 20352 South Dakota Utah 2000
#> 20353 Connecticut South Carolina 2000
#> 20354 Oregon Wyoming 2000
#> 20355 Virginia Kentucky 2000
#> 20356 Missouri Pennsylvania 2000
#> 20357 New Jersey Nebraska 2000
#> 20358 Indiana Alabama 2000
#> 20359 Massachusetts Oregon 2000
#> 20360 Wisconsin New York 2000
#> 20361 New York Hawaii 2000
#> 20362 Colorado Alaska 2000
#> 20363 Virginia Maryland 2000
#> 20364 New Jersey Idaho 2000
#> 20365 Michigan Maine 2000
#> 20366 Kansas Iowa 2000
#> 20367 Nevada Montana 2000
#> 20368 Vermont Connecticut 2000
#> 20369 California Tennessee 2000
#> 20370 Mississippi Missouri 2000
#> 20371 Georgia Virginia 2000
#> 20372 New York Kansas 2000
#> 20373 Hawaii Washington 2000
#> 20374 Pennsylvania Rhode Island 2000
#> 20375 Montana Florida 2000
#> 20376 Utah Mississippi 2000
#> 20377 Massachusetts South Dakota 2000
#> 20378 New Jersey Arkansas 2000
#> 20379 Alabama Kansas 2000
#> 20380 New York Florida 2000
#> 20381 Mississippi South Dakota 2000
#> 20382 Minnesota Texas 2000
#> 20383 South Carolina Idaho 2000
#> 20384 South Carolina North Carolina 2000
#> 20385 Kansas Wisconsin 2000
#> 20386 Texas Kentucky 2000
#> 20387 Illinois California 2000
#> 20388 Wisconsin Colorado 2000
#> 20389 Maine North Dakota 2000
#> 20390 Virginia Iowa 2000
#> 20391 Tennessee Georgia 2000
#> 20392 Hawaii Rhode Island 2000
#> 20393 Rhode Island Minnesota 2000
#> 20394 Connecticut Alabama 2000
#> 20395 Wisconsin Illinois 2000
#> 20396 Maryland Indiana 2000
#> 20397 Kansas Hawaii 2000
#> 20398 Vermont Michigan 2000
#> 20399 Maryland New Mexico 2000
#> 20400 Kansas Nebraska 2000
#> 20401 Minnesota North Dakota 2000
#> 20402 New Mexico Kansas 2000
#> 20403 Utah North Carolina 2000
#> 20404 Minnesota Wisconsin 2000
#> 20405 North Dakota Maine 2000
#> 20406 Indiana Missouri 2000
#> 20407 New Jersey Pennsylvania 2000
#> 20408 Louisiana Illinois 2000
#> 20409 Delaware Montana 2000
#> 20410 Tennessee Arizona 2000
#> 20411 Georgia Mississippi 2000
#> 20412 Utah Georgia 2000
#> 20413 New Mexico Arkansas 2000
#> 20414 Maryland Vermont 2000
#> 20415 Hawaii Virginia 2000
#> 20416 Kentucky Maryland 2000
#> 20417 Washington Indiana 2000
#> 20418 Oregon Wisconsin 2000
#> 20419 Minnesota Colorado 2000
#> 20420 Utah Louisiana 2000
#> 20421 Washington New Mexico 2000
#> 20422 Louisiana New Mexico 2000
#> 20423 Illinois Alaska 2000
#> 20424 Utah Oklahoma 2000
#> 20425 New Mexico Delaware 2000
#> 20426 Connecticut Florida 2000
#> 20427 Oregon Georgia 2000
#> 20428 Utah South Carolina 2000
#> 20429 South Dakota Massachusetts 2000
#> 20430 Arizona Colorado 2000
#> 20431 Texas Connecticut 2000
#> 20432 Hawaii Michigan 2000
#> 20433 Hawaii Delaware 2000
#> 20434 Kansas South Carolina 2000
#> 20435 Alaska New York 2000
#> 20436 North Carolina Minnesota 2000
#> 20437 Maine New Hampshire 2000
#> 20438 Texas Vermont 2000
#> 20439 Arizona Hawaii 2000
#> 20440 New Hampshire West Virginia 2000
#> 20441 Texas North Dakota 2000
#> 20442 Ohio South Dakota 2000
#> 20443 Texas Virginia 2000
#> 20444 Kentucky Idaho 2000
#> 20445 Louisiana Oregon 2000
#> 20446 New York Maine 2000
#> 20447 New Jersey Colorado 2000
#> 20448 Oklahoma California 2000
#> 20449 Kentucky Pennsylvania 2000
#> 20450 California Kentucky 2000
#> 20451 Florida Indiana 2000
#> 20452 Vermont New York 2000
#> 20453 Minnesota Utah 2000
#> 20454 New York Missouri 2000
#> 20455 Arkansas Alabama 2000
#> 20456 Kentucky Michigan 2000
#> 20457 Alaska Nevada 2000
#> 20458 Alabama South Carolina 2000
#> 20459 Illinois Indiana 2000
#> 20460 Montana West Virginia 2000
#> 20461 Montana Hawaii 2000
#> 20462 Rhode Island California 2000
#> 20463 Ohio Kansas 2000
#> 20464 California Utah 2000
#> 20465 Missouri Iowa 2000
#> 20466 Rhode Island Washington 2000
#> 20467 Washington Louisiana 2000
#> 20468 Nebraska Mississippi 2000
#> 20469 Colorado Maryland 2000
#> 20470 Pennsylvania Texas 2000
#> 20471 Connecticut Illinois 2000
#> 20472 Utah Missouri 2000
#> 20473 North Dakota Wyoming 2000
#> 20474 Maine Nebraska 2000
#> 20475 Wisconsin Tennessee 2000
#> 20476 Kentucky North Dakota 2000
#> 20477 Missouri Ohio 2000
#> 20478 Wisconsin Kentucky 2000
#> 20479 Minnesota New Mexico 2000
#> 20480 Virginia Oregon 2000
#> 20481 New York Maryland 2000
#> 20482 Iowa Nebraska 2000
#> 20483 Indiana New Jersey 2000
#> 20484 Montana Alaska 2000
#> 20485 Delaware Virginia 2000
#> 20486 Ohio Tennessee 2000
#> 20487 Tennessee New York 2000
#> 20488 Louisiana Maryland 2000
#> 20489 North Dakota Arizona 2000
#> 20490 Florida Vermont 2000
#> 20491 Connecticut Rhode Island 2000
#> 20492 Rhode Island Nevada 2000
#> 20493 Texas Ohio 2000
#> 20494 Kentucky Ohio 2000
#> 20495 Florida Iowa 2000
#> 20496 Hawaii Connecticut 2000
#> 20497 Montana Washington 2000
#> 20498 Virginia Washington 2000
#> 20499 Louisiana Idaho 2000
#> 20500 Wisconsin Kansas 2000
#> 20501 California Oregon 2001
#> 20502 California Illinois 2001
#> 20503 Florida Texas 2001
#> 20504 California Florida 2001
#> 20505 California Montana 2001
#> 20506 Oregon Kentucky 2001
#> 20507 Minnesota Iowa 2001
#> 20508 California Ohio 2001
#> 20509 California Maryland 2001
#> 20510 California Minnesota 2001
#> 20511 Florida Arizona 2001
#> 20512 California Colorado 2001
#> 20513 Minnesota Indiana 2001
#> 20514 California Washington 2001
#> 20515 Minnesota Virginia 2001
#> 20516 California New Mexico 2001
#> 20517 California New Jersey 2001
#> 20518 California Nebraska 2001
#> 20519 California New Hampshire 2001
#> 20520 California North Carolina 2001
#> 20521 Colorado South Dakota 2001
#> 20522 California Nevada 2001
#> 20523 California Missouri 2001
#> 20524 Oregon Maine 2001
#> 20525 California Delaware 2001
#> 20526 Florida Mississippi 2001
#> 20527 California Kansas 2001
#> 20528 California North Dakota 2001
#> 20529 California Georgia 2001
#> 20530 California Vermont 2001
#> 20531 Oregon Tennessee 2001
#> 20532 Massachusetts Connecticut 2001
#> 20533 Oregon Alaska 2001
#> 20534 Oregon Idaho 2001
#> 20535 California Rhode Island 2001
#> 20536 Washington Pennsylvania 2001
#> 20537 Florida South Carolina 2001
#> 20538 Florida Utah 2001
#> 20539 Connecticut Michigan 2001
#> 20540 California Arkansas 2001
#> 20541 Minnesota California 2001
#> 20542 Minnesota Alabama 2001
#> 20543 California Oklahoma 2001
#> 20544 Colorado Wyoming 2001
#> 20545 Washington Wisconsin 2001
#> 20546 Florida Louisiana 2001
#> 20547 California Massachusetts 2001
#> 20548 California Hawaii 2001
#> 20549 Connecticut New York 2001
#> 20550 Oregon West Virginia 2001
#> 20551 Oregon Minnesota 2001
#> 20552 Colorado Ohio 2001
#> 20553 Oregon Connecticut 2001
#> 20554 New York New Jersey 2001
#> 20555 Rhode Island Wisconsin 2001
#> 20556 Florida Georgia 2001
#> 20557 Idaho Utah 2001
#> 20558 Idaho Virginia 2001
#> 20559 Massachusetts California 2001
#> 20560 Minnesota Arizona 2001
#> 20561 Oregon New Mexico 2001
#> 20562 Minnesota Delaware 2001
#> 20563 Illinois Texas 2001
#> 20564 Rhode Island Maine 2001
#> 20565 Minnesota Washington 2001
#> 20566 Florida Oklahoma 2001
#> 20567 Rhode Island Indiana 2001
#> 20568 Minnesota Colorado 2001
#> 20569 Minnesota Kansas 2001
#> 20570 Florida Idaho 2001
#> 20571 Massachusetts Rhode Island 2001
#> 20572 Minnesota Nebraska 2001
#> 20573 Oregon Illinois 2001
#> 20574 Washington Oregon 2001
#> 20575 California South Carolina 2001
#> 20576 Minnesota North Dakota 2001
#> 20577 Oregon Maryland 2001
#> 20578 Rhode Island Pennsylvania 2001
#> 20579 Colorado Missouri 2001
#> 20580 Connecticut Massachusetts 2001
#> 20581 Idaho Michigan 2001
#> 20582 Minnesota Florida 2001
#> 20583 Massachusetts Hawaii 2001
#> 20584 California South Dakota 2001
#> 20585 Rhode Island Kentucky 2001
#> 20586 Florida Arkansas 2001
#> 20587 Connecticut Vermont 2001
#> 20588 Connecticut Iowa 2001
#> 20589 Colorado Montana 2001
#> 20590 Florida Alabama 2001
#> 20591 Colorado Louisiana 2001
#> 20592 California Alaska 2001
#> 20593 Florida North Carolina 2001
#> 20594 Idaho Nevada 2001
#> 20595 Minnesota Tennessee 2001
#> 20596 Maryland New Hampshire 2001
#> 20597 South Carolina Wyoming 2001
#> 20598 Connecticut Washington 2001
#> 20599 Minnesota Mississippi 2001
#> 20600 Michigan West Virginia 2001
#> 20601 Connecticut New Jersey 2001
#> 20602 Oregon Vermont 2001
#> 20603 California New York 2001
#> 20604 Louisiana Indiana 2001
#> 20605 Florida Connecticut 2001
#> 20606 Illinois Delaware 2001
#> 20607 Illinois Massachusetts 2001
#> 20608 Connecticut Virginia 2001
#> 20609 New York Minnesota 2001
#> 20610 New York Ohio 2001
#> 20611 Oregon Oklahoma 2001
#> 20612 Connecticut Maine 2001
#> 20613 Florida Illinois 2001
#> 20614 Connecticut Oregon 2001
#> 20615 Connecticut Colorado 2001
#> 20616 Idaho Iowa 2001
#> 20617 Oregon Rhode Island 2001
#> 20618 Louisiana Kansas 2001
#> 20619 North Dakota South Carolina 2001
#> 20620 Wisconsin California 2001
#> 20621 Illinois New Mexico 2001
#> 20622 Iowa Wisconsin 2001
#> 20623 Oregon Delaware 2001
#> 20624 California Texas 2001
#> 20625 Kansas Montana 2001
#> 20626 Michigan Florida 2001
#> 20627 Florida Kentucky 2001
#> 20628 Rhode Island Michigan 2001
#> 20629 Wisconsin Massachusetts 2001
#> 20630 Minnesota Arkansas 2001
#> 20631 Connecticut North Carolina 2001
#> 20632 North Dakota South Dakota 2001
#> 20633 Michigan Maryland 2001
#> 20634 Connecticut California 2001
#> 20635 Alaska North Dakota 2001
#> 20636 Connecticut Pennsylvania 2001
#> 20637 Illinois Minnesota 2001
#> 20638 Louisiana Missouri 2001
#> 20639 California Louisiana 2001
#> 20640 Connecticut New Hampshire 2001
#> 20641 North Dakota Nebraska 2001
#> 20642 California Virginia 2001
#> 20643 Massachusetts New York 2001
#> 20644 Colorado Idaho 2001
#> 20645 Michigan Tennessee 2001
#> 20646 Oregon Utah 2001
#> 20647 Minnesota New Jersey 2001
#> 20648 Illinois Georgia 2001
#> 20649 Minnesota Nevada 2001
#> 20650 Massachusetts Washington 2001
#> 20651 Illinois Arizona 2001
#> 20652 Rhode Island Oregon 2001
#> 20653 Colorado Hawaii 2001
#> 20654 Kansas Mississippi 2001
#> 20655 Illinois Oklahoma 2001
#> 20656 Washington Indiana 2001
#> 20657 Rhode Island Colorado 2001
#> 20658 Maryland Connecticut 2001
#> 20659 New York Iowa 2001
#> 20660 West Virginia Georgia 2001
#> 20661 Washington Alaska 2001
#> 20662 Oregon Kansas 2001
#> 20663 California West Virginia 2001
#> 20664 California Tennessee 2001
#> 20665 California Alabama 2001
#> 20666 Wisconsin Vermont 2001
#> 20667 New York Michigan 2001
#> 20668 Idaho Wyoming 2001
#> 20669 North Dakota Kentucky 2001
#> 20670 South Carolina North Carolina 2001
#> 20671 Michigan Illinois 2001
#> 20672 Massachusetts Florida 2001
#> 20673 Colorado Arizona 2001
#> 20674 Wisconsin Maryland 2001
#> 20675 Kentucky Arkansas 2001
#> 20676 Wisconsin Maine 2001
#> 20677 Florida Ohio 2001
#> 20678 Florida Massachusetts 2001
#> 20679 Minnesota South Carolina 2001
#> 20680 Louisiana Nevada 2001
#> 20681 Rhode Island New Mexico 2001
#> 20682 Rhode Island Louisiana 2001
#> 20683 Delaware South Dakota 2001
#> 20684 New York Connecticut 2001
#> 20685 Indiana Montana 2001
#> 20686 Colorado Wisconsin 2001
#> 20687 Florida Nebraska 2001
#> 20688 Colorado Minnesota 2001
#> 20689 Louisiana Virginia 2001
#> 20690 Tennessee Florida 2001
#> 20691 Kentucky New York 2001
#> 20692 Idaho Texas 2001
#> 20693 New York Nevada 2001
#> 20694 Wisconsin Indiana 2001
#> 20695 Idaho Washington 2001
#> 20696 Virginia California 2001
#> 20697 Maryland Hawaii 2001
#> 20698 California Mississippi 2001
#> 20699 Minnesota New Hampshire 2001
#> 20700 Oregon Ohio 2001
#> 20701 Illinois Missouri 2001
#> 20702 Ohio Colorado 2001
#> 20703 Rhode Island Iowa 2001
#> 20704 Massachusetts Pennsylvania 2001
#> 20705 Hawaii Oregon 2001
#> 20706 Illinois Idaho 2001
#> 20707 Massachusetts North Dakota 2001
#> 20708 Hawaii Florida 2001
#> 20709 Illinois Rhode Island 2001
#> 20710 Idaho Delaware 2001
#> 20711 Maryland Maine 2001
#> 20712 Maryland Michigan 2001
#> 20713 Maryland Illinois 2001
#> 20714 Maine North Carolina 2001
#> 20715 Utah Maryland 2001
#> 20716 Idaho Tennessee 2001
#> 20717 Idaho Kansas 2001
#> 20718 Wisconsin Arizona 2001
#> 20719 New Jersey Nebraska 2001
#> 20720 Missouri Kentucky 2001
#> 20721 Oregon Texas 2001
#> 20722 Wisconsin Rhode Island 2001
#> 20723 Idaho Colorado 2001
#> 20724 Kentucky Minnesota 2001
#> 20725 North Dakota Ohio 2001
#> 20726 Oregon Montana 2001
#> 20727 Michigan California 2001
#> 20728 Minnesota Oklahoma 2001
#> 20729 Mississippi New Mexico 2001
#> 20730 Minnesota Oregon 2001
#> 20731 Arizona Arkansas 2001
#> 20732 New York North Carolina 2001
#> 20733 South Dakota West Virginia 2001
#> 20734 Florida New Jersey 2001
#> 20735 Minnesota Maine 2001
#> 20736 Florida Virginia 2001
#> 20737 Iowa Massachusetts 2001
#> 20738 Colorado North Dakota 2001
#> 20739 Virginia Indiana 2001
#> 20740 Oregon South Dakota 2001
#> 20741 Alaska New York 2001
#> 20742 New York Delaware 2001
#> 20743 Tennessee South Carolina 2001
#> 20744 Ohio Wisconsin 2001
#> 20745 New Mexico Alabama 2001
#> 20746 Rhode Island Wyoming 2001
#> 20747 North Dakota Louisiana 2001
#> 20748 Kentucky Georgia 2001
#> 20749 Louisiana Utah 2001
#> 20750 Delaware Connecticut 2001
#> 20751 Utah Idaho 2001
#> 20752 Illinois Vermont 2001
#> 20753 New Jersey Washington 2001
#> 20754 Utah Alaska 2001
#> 20755 Colorado New Mexico 2001
#> 20756 Florida Michigan 2001
#> 20757 California Idaho 2001
#> 20758 Illinois Pennsylvania 2001
#> 20759 Hawaii Rhode Island 2001
#> 20760 Minnesota West Virginia 2001
#> 20761 New Mexico Oklahoma 2001
#> 20762 Utah California 2001
#> 20763 Arizona Missouri 2001
#> 20764 California Connecticut 2001
#> 20765 Delaware Alabama 2001
#> 20766 Louisiana Montana 2001
#> 20767 Texas Kentucky 2001
#> 20768 Maryland Kansas 2001
#> 20769 Illinois Ohio 2001
#> 20770 Pennsylvania New York 2001
#> 20771 Connecticut Maryland 2001
#> 20772 Louisiana Tennessee 2001
#> 20773 Hawaii Arizona 2001
#> 20774 Illinois Hawaii 2001
#> 20775 New Mexico New Hampshire 2001
#> 20776 Michigan Indiana 2001
#> 20777 Connecticut Wisconsin 2001
#> 20778 New York Texas 2001
#> 20779 Connecticut Missouri 2001
#> 20780 Maryland Nevada 2001
#> 20781 Wisconsin New Mexico 2001
#> 20782 Wisconsin Oregon 2001
#> 20783 Texas South Carolina 2001
#> 20784 Wisconsin North Carolina 2001
#> 20785 Arizona Iowa 2001
#> 20786 New Jersey Louisiana 2001
#> 20787 South Dakota Nebraska 2001
#> 20788 New Jersey Arkansas 2001
#> 20789 California Wyoming 2001
#> 20790 Iowa Utah 2001
#> 20791 New York Maryland 2001
#> 20792 Louisiana Mississippi 2001
#> 20793 Virginia Florida 2001
#> 20794 Illinois Connecticut 2001
#> 20795 Rhode Island Massachusetts 2001
#> 20796 Connecticut West Virginia 2001
#> 20797 Michigan Montana 2001
#> 20798 Massachusetts Texas 2001
#> 20799 Colorado Vermont 2001
#> 20800 Ohio Virginia 2001
#> 20801 Georgia Arkansas 2001
#> 20802 Utah New Jersey 2001
#> 20803 Arkansas Minnesota 2001
#> 20804 Louisiana Arizona 2001
#> 20805 New Jersey Massachusetts 2001
#> 20806 Georgia Kentucky 2001
#> 20807 New York New Hampshire 2001
#> 20808 New Jersey Georgia 2001
#> 20809 Utah Mississippi 2001
#> 20810 Montana New Jersey 2001
#> 20811 Kansas South Carolina 2001
#> 20812 Colorado California 2001
#> 20813 Hawaii Tennessee 2001
#> 20814 Tennessee Missouri 2001
#> 20815 Vermont New York 2001
#> 20816 New York New Mexico 2001
#> 20817 Hawaii North Dakota 2001
#> 20818 New Mexico Illinois 2001
#> 20819 Florida Iowa 2001
#> 20820 Nebraska Ohio 2001
#> 20821 Florida Rhode Island 2001
#> 20822 Montana Alaska 2001
#> 20823 Idaho Arkansas 2001
#> 20824 Iowa Nebraska 2001
#> 20825 Mississippi Arizona 2001
#> 20826 Minnesota Wisconsin 2001
#> 20827 North Dakota Rhode Island 2001
#> 20828 Kentucky Louisiana 2001
#> 20829 South Dakota Utah 2001
#> 20830 Iowa Pennsylvania 2001
#> 20831 Nevada Hawaii 2001
#> 20832 Indiana Delaware 2001
#> 20833 Oklahoma North Dakota 2001
#> 20834 Iowa Colorado 2001
#> 20835 Utah Oklahoma 2001
#> 20836 Nevada Idaho 2001
#> 20837 Florida Washington 2001
#> 20838 Wisconsin Minnesota 2001
#> 20839 Hawaii Michigan 2001
#> 20840 Hawaii California 2001
#> 20841 Michigan Utah 2001
#> 20842 Florida Nevada 2001
#> 20843 Connecticut South Carolina 2001
#> 20844 California Maine 2001
#> 20845 Washington Montana 2001
#> 20846 Washington Colorado 2001
#> 20847 Indiana Missouri 2001
#> 20848 New Jersey Maryland 2001
#> 20849 Wisconsin Iowa 2001
#> 20850 New Jersey Illinois 2001
#> 20851 Kentucky Colorado 2001
#> 20852 Connecticut Florida 2001
#> 20853 New Mexico Mississippi 2001
#> 20854 Pennsylvania Rhode Island 2001
#> 20855 Oregon Wyoming 2001
#> 20856 South Carolina Wisconsin 2001
#> 20857 Georgia Florida 2001
#> 20858 Connecticut Kansas 2001
#> 20859 New Jersey Idaho 2001
#> 20860 New York Hawaii 2001
#> 20861 Hawaii Virginia 2001
#> 20862 Louisiana Alaska 2001
#> 20863 Maryland California 2001
#> 20864 Nevada Montana 2001
#> 20865 Vermont Connecticut 2001
#> 20866 Virginia North Carolina 2001
#> 20867 New Mexico Maine 2001
#> 20868 Maryland Virginia 2001
#> 20869 Michigan North Carolina 2001
#> 20870 Georgia New York 2001
#> 20871 Hawaii Washington 2001
#> 20872 Florida New York 2001
#> 20873 Colorado Maryland 2001
#> 20874 New York Kansas 2001
#> 20875 Massachusetts South Dakota 2001
#> 20876 Mississippi Missouri 2001
#> 20877 Michigan Rhode Island 2001
#> 20878 Missouri Pennsylvania 2001
#> 20879 California Kentucky 2001
#> 20880 New York Florida 2001
#> 20881 South Carolina Idaho 2001
#> 20882 Mississippi South Dakota 2001
#> 20883 Arizona Texas 2001
#> 20884 Montana Florida 2001
#> 20885 Kansas Wisconsin 2001
#> 20886 Connecticut New Mexico 2001
#> 20887 California Utah 2001
#> 20888 Utah Ohio 2001
#> 20889 Missouri Alabama 2001
#> 20890 Georgia Tennessee 2001
#> 20891 Alaska Nevada 2001
#> 20892 Hawaii Delaware 2001
#> 20893 Minnesota Michigan 2001
#> 20894 Illinois South Carolina 2001
#> 20895 Nevada Rhode Island 2001
#> 20896 Illinois New York 2001
#> 20897 Wisconsin Colorado 2001
#> 20898 North Carolina Georgia 2001
#> 20899 Utah North Carolina 2001
#> 20900 Utah Indiana 2001
#> 20901 West Virginia Vermont 2001
#> 20902 Utah Kansas 2001
#> 20903 Rhode Island Minnesota 2001
#> 20904 New Mexico Iowa 2001
#> 20905 Kansas Hawaii 2001
#> 20906 Connecticut Rhode Island 2001
#> 20907 Rhode Island New Hampshire 2001
#> 20908 Maryland Oregon 2001
#> 20909 Kansas Alaska 2001
#> 20910 California Pennsylvania 2001
#> 20911 Pennsylvania Indiana 2001
#> 20912 Montana Washington 2001
#> 20913 Connecticut Alabama 2001
#> 20914 Delaware Montana 2001
#> 20915 Mississippi Oklahoma 2001
#> 20916 New Mexico Kansas 2001
#> 20917 Georgia Mississippi 2001
#> 20918 New Mexico Arkansas 2001
#> 20919 New Jersey Delaware 2001
#> 20920 California Arizona 2001
#> 20921 New Jersey Oregon 2001
#> 20922 Michigan Nebraska 2001
#> 20923 Oregon Iowa 2001
#> 20924 Kentucky Maryland 2001
#> 20925 Utah Georgia 2001
#> 20926 Louisiana New Mexico 2001
#> 20927 Utah Louisiana 2001
#> 20928 South Carolina Illinois 2001
#> 20929 South Dakota Massachusetts 2001
#> 20930 Michigan Maine 2001
#> 20931 Idaho Alaska 2001
#> 20932 Connecticut Oklahoma 2001
#> 20933 Texas Connecticut 2001
#> 20934 Utah South Carolina 2001
#> 20935 Oregon Wisconsin 2001
#> 20936 Michigan Wisconsin 2001
#> 20937 Wisconsin Michigan 2001
#> 20938 Alabama Kentucky 2001
#> 20939 North Carolina Minnesota 2001
#> 20940 Texas Virginia 2001
#> 20941 Nebraska Arizona 2001
#> 20942 Arizona Hawaii 2001
#> 20943 Mississippi Nebraska 2001
#> 20944 Iowa Arizona 2001
#> 20945 Illinois Alabama 2001
#> 20946 New Hampshire West Virginia 2001
#> 20947 New Jersey Colorado 2001
#> 20948 Oregon Georgia 2001
#> 20949 Ohio South Dakota 2001
#> 20950 Kentucky Idaho 2001
#> 20951 Vermont Tennessee 2001
#> 20952 Oklahoma California 2001
#> 20953 New York Maine 2001
#> 20954 Connecticut Alaska 2001
#> 20955 Pennsylvania South Carolina 2001
#> 20956 Montana Hawaii 2001
#> 20957 New York Missouri 2001
#> 20958 Connecticut Hawaii 2001
#> 20959 Michigan Kentucky 2001
#> 20960 Minnesota Utah 2001
#> 20961 Montana West Virginia 2001
#> 20962 Rhode Island Illinois 2001
#> 20963 Utah Missouri 2001
#> 20964 Kansas Alabama 2001
#> 20965 Maine Pennsylvania 2001
#> 20966 Illinois California 2001
#> 20967 Arkansas Delaware 2001
#> 20968 Florida Oregon 2001
#> 20969 Delaware North Dakota 2001
#> 20970 Indiana New Jersey 2001
#> 20971 Rhode Island Washington 2001
#> 20972 Washington Louisiana 2001
#> 20973 Kentucky Michigan 2001
#> 20974 Alaska Nebraska 2001
#> 20975 Iowa Nevada 2001
#> 20976 Ohio Kansas 2001
#> 20977 North Dakota Wyoming 2001
#> 20978 Oregon New York 2001
#> 20979 Indiana New Mexico 2001
#> 20980 Wisconsin Tennessee 2001
#> 20981 Maryland Indiana 2001
#> 20982 Arkansas California 2001
#> 20983 Washington Ohio 2001
#> 20984 Louisiana Maryland 2001
#> 20985 Florida Vermont 2001
#> 20986 Tennessee Maryland 2001
#> 20987 New Hampshire New York 2001
#> 20988 Pennsylvania Texas 2001
#> 20989 Connecticut Idaho 2001
#> 20990 Ohio Tennessee 2001
#> 20991 Tennessee Georgia 2001
#> 20992 Maine Nebraska 2001
#> 20993 Wisconsin Kansas 2001
#> 20994 Colorado Texas 2001
#> 20995 Colorado Michigan 2001
#> 20996 Utah Arizona 2001
#> 20997 Florida Colorado 2001
#> 20998 Connecticut Minnesota 2001
#> 20999 Nevada Iowa 2001
#> 21000 Connecticut Delaware 2001
#> 21001 California Oregon 2002
#> 21002 California Maryland 2002
#> 21003 California Florida 2002
#> 21004 California Texas 2002
#> 21005 California Montana 2002
#> 21006 California Illinois 2002
#> 21007 California New Jersey 2002
#> 21008 California New Mexico 2002
#> 21009 Florida Arizona 2002
#> 21010 California Indiana 2002
#> 21011 California Nevada 2002
#> 21012 California Minnesota 2002
#> 21013 Oregon Kentucky 2002
#> 21014 California Washington 2002
#> 21015 California Missouri 2002
#> 21016 California Ohio 2002
#> 21017 California Maine 2002
#> 21018 California Colorado 2002
#> 21019 California North Carolina 2002
#> 21020 California Nebraska 2002
#> 21021 Minnesota Iowa 2002
#> 21022 California Arkansas 2002
#> 21023 California New Hampshire 2002
#> 21024 Connecticut Virginia 2002
#> 21025 California Georgia 2002
#> 21026 California Delaware 2002
#> 21027 California North Dakota 2002
#> 21028 Colorado South Dakota 2002
#> 21029 Minnesota Tennessee 2002
#> 21030 California Kansas 2002
#> 21031 California Vermont 2002
#> 21032 Minnesota South Carolina 2002
#> 21033 California Rhode Island 2002
#> 21034 Florida Utah 2002
#> 21035 Oregon Idaho 2002
#> 21036 California Pennsylvania 2002
#> 21037 Minnesota Alabama 2002
#> 21038 Oregon Alaska 2002
#> 21039 Minnesota Mississippi 2002
#> 21040 California Connecticut 2002
#> 21041 California Michigan 2002
#> 21042 California Louisiana 2002
#> 21043 California Oklahoma 2002
#> 21044 Minnesota California 2002
#> 21045 Colorado Wyoming 2002
#> 21046 Washington Wisconsin 2002
#> 21047 California Hawaii 2002
#> 21048 California Massachusetts 2002
#> 21049 Oregon West Virginia 2002
#> 21050 Oregon New York 2002
#> 21051 Oregon Minnesota 2002
#> 21052 Connecticut Ohio 2002
#> 21053 Idaho Indiana 2002
#> 21054 New York New Jersey 2002
#> 21055 Idaho Utah 2002
#> 21056 Idaho Virginia 2002
#> 21057 Rhode Island Wisconsin 2002
#> 21058 Oregon New Mexico 2002
#> 21059 Florida Georgia 2002
#> 21060 Florida Texas 2002
#> 21061 Massachusetts Connecticut 2002
#> 21062 Minnesota Arizona 2002
#> 21063 Massachusetts California 2002
#> 21064 Oregon Maine 2002
#> 21065 Minnesota Delaware 2002
#> 21066 Minnesota Kansas 2002
#> 21067 Oregon Maryland 2002
#> 21068 Minnesota Colorado 2002
#> 21069 Minnesota Washington 2002
#> 21070 Minnesota Oklahoma 2002
#> 21071 Massachusetts Rhode Island 2002
#> 21072 Minnesota Nebraska 2002
#> 21073 Oregon Illinois 2002
#> 21074 New York Michigan 2002
#> 21075 Minnesota Florida 2002
#> 21076 Colorado North Dakota 2002
#> 21077 Colorado Missouri 2002
#> 21078 Colorado Idaho 2002
#> 21079 New York Oregon 2002
#> 21080 Massachusetts Hawaii 2002
#> 21081 Connecticut South Carolina 2002
#> 21082 Florida Kentucky 2002
#> 21083 Connecticut Massachusetts 2002
#> 21084 Florida Arkansas 2002
#> 21085 Florida Louisiana 2002
#> 21086 California South Dakota 2002
#> 21087 Connecticut Iowa 2002
#> 21088 Oregon Vermont 2002
#> 21089 Oregon Montana 2002
#> 21090 Florida Alaska 2002
#> 21091 Washington Pennsylvania 2002
#> 21092 Florida North Carolina 2002
#> 21093 California Wyoming 2002
#> 21094 Florida Alabama 2002
#> 21095 Idaho Nevada 2002
#> 21096 Oregon Tennessee 2002
#> 21097 Georgia Mississippi 2002
#> 21098 California New York 2002
#> 21099 California Virginia 2002
#> 21100 Oregon New Hampshire 2002
#> 21101 Florida West Virginia 2002
#> 21102 Connecticut New Jersey 2002
#> 21103 Connecticut Washington 2002
#> 21104 Oregon Connecticut 2002
#> 21105 Connecticut Minnesota 2002
#> 21106 Idaho Oklahoma 2002
#> 21107 Illinois Massachusetts 2002
#> 21108 Idaho Michigan 2002
#> 21109 Florida Illinois 2002
#> 21110 Louisiana Indiana 2002
#> 21111 New York Delaware 2002
#> 21112 Colorado Oregon 2002
#> 21113 Idaho Texas 2002
#> 21114 Idaho Iowa 2002
#> 21115 Connecticut Vermont 2002
#> 21116 Minnesota Ohio 2002
#> 21117 Connecticut Maine 2002
#> 21118 Oregon Rhode Island 2002
#> 21119 Louisiana Kansas 2002
#> 21120 Georgia South Carolina 2002
#> 21121 Michigan Montana 2002
#> 21122 Utah Arkansas 2002
#> 21123 Wisconsin California 2002
#> 21124 Illinois New Mexico 2002
#> 21125 Connecticut Colorado 2002
#> 21126 North Dakota Kentucky 2002
#> 21127 Iowa Wisconsin 2002
#> 21128 Idaho North Dakota 2002
#> 21129 Michigan Florida 2002
#> 21130 Colorado Arizona 2002
#> 21131 Colorado Louisiana 2002
#> 21132 Wisconsin Massachusetts 2002
#> 21133 Arizona Utah 2002
#> 21134 Rhode Island Idaho 2002
#> 21135 Illinois Connecticut 2002
#> 21136 North Dakota South Dakota 2002
#> 21137 Wisconsin Maryland 2002
#> 21138 Massachusetts New York 2002
#> 21139 Connecticut Pennsylvania 2002
#> 21140 South Carolina North Carolina 2002
#> 21141 Illinois Minnesota 2002
#> 21142 Minnesota Nevada 2002
#> 21143 Louisiana Missouri 2002
#> 21144 North Dakota Nebraska 2002
#> 21145 Oregon Delaware 2002
#> 21146 Connecticut California 2002
#> 21147 Texas South Carolina 2002
#> 21148 California Tennessee 2002
#> 21149 Texas Mississippi 2002
#> 21150 Massachusetts Washington 2002
#> 21151 New York New Hampshire 2002
#> 21152 Colorado Hawaii 2002
#> 21153 Florida Ohio 2002
#> 21154 Minnesota New Jersey 2002
#> 21155 Illinois Georgia 2002
#> 21156 Louisiana Virginia 2002
#> 21157 Illinois Maine 2002
#> 21158 Oregon Wyoming 2002
#> 21159 Maine Arizona 2002
#> 21160 Oregon Kansas 2002
#> 21161 Iowa Montana 2002
#> 21162 Rhode Island Colorado 2002
#> 21163 New York Iowa 2002
#> 21164 Georgia Indiana 2002
#> 21165 Rhode Island Kentucky 2002
#> 21166 California Alabama 2002
#> 21167 Wisconsin Vermont 2002
#> 21168 Kentucky Michigan 2002
#> 21169 Kentucky Arkansas 2002
#> 21170 Michigan Tennessee 2002
#> 21171 Michigan Illinois 2002
#> 21172 Massachusetts Florida 2002
#> 21173 Connecticut North Carolina 2002
#> 21174 Massachusetts West Virginia 2002
#> 21175 Florida Connecticut 2002
#> 21176 Maine Pennsylvania 2002
#> 21177 Illinois Oklahoma 2002
#> 21178 Georgia Florida 2002
#> 21179 Florida Nebraska 2002
#> 21180 New York Maryland 2002
#> 21181 West Virginia Georgia 2002
#> 21182 Rhode Island New Mexico 2002
#> 21183 Louisiana Nevada 2002
#> 21184 Texas Massachusetts 2002
#> 21185 Rhode Island Minnesota 2002
#> 21186 Minnesota Virginia 2002
#> 21187 Idaho Washington 2002
#> 21188 Virginia California 2002
#> 21189 Colorado Wisconsin 2002
#> 21190 Hawaii Oregon 2002
#> 21191 New Mexico Delaware 2002
#> 21192 California Idaho 2002
#> 21193 Iowa Texas 2002
#> 21194 Hawaii North Dakota 2002
#> 21195 New York Nevada 2002
#> 21196 Illinois New York 2002
#> 21197 New Mexico North Carolina 2002
#> 21198 Delaware South Dakota 2002
#> 21199 Illinois Missouri 2002
#> 21200 Oregon Oklahoma 2002
#> 21201 Maryland Hawaii 2002
#> 21202 California Alaska 2002
#> 21203 Minnesota Rhode Island 2002
#> 21204 Missouri Mississippi 2002
#> 21205 Ohio Colorado 2002
#> 21206 Utah Maryland 2002
#> 21207 Rhode Island Iowa 2002
#> 21208 Connecticut Oregon 2002
#> 21209 South Carolina Idaho 2002
#> 21210 California Utah 2002
#> 21211 Rhode Island Louisiana 2002
#> 21212 Louisiana South Carolina 2002
#> 21213 Wisconsin Maine 2002
#> 21214 Rhode Island New Hampshire 2002
#> 21215 Maryland Illinois 2002
#> 21216 Arkansas Montana 2002
#> 21217 Massachusetts Ohio 2002
#> 21218 Minnesota Arkansas 2002
#> 21219 Idaho Tennessee 2002
#> 21220 New York Connecticut 2002
#> 21221 Arizona Oregon 2002
#> 21222 Indiana New Jersey 2002
#> 21223 Missouri Kentucky 2002
#> 21224 Tennessee Florida 2002
#> 21225 Idaho Colorado 2002
#> 21226 Michigan Arizona 2002
#> 21227 Nevada Rhode Island 2002
#> 21228 Rhode Island North Dakota 2002
#> 21229 Washington Alaska 2002
#> 21230 New Jersey Massachusetts 2002
#> 21231 New York Texas 2002
#> 21232 Illinois West Virginia 2002
#> 21233 New Mexico Mississippi 2002
#> 21234 Michigan California 2002
#> 21235 Rhode Island Wyoming 2002
#> 21236 North Dakota Louisiana 2002
#> 21237 Mississippi New Mexico 2002
#> 21238 Rhode Island Indiana 2002
#> 21239 New Mexico New Hampshire 2002
#> 21240 Florida Virginia 2002
#> 21241 Wisconsin New York 2002
#> 21242 Oregon South Dakota 2002
#> 21243 Maryland Maine 2002
#> 21244 Ohio Wisconsin 2002
#> 21245 Idaho Kansas 2002
#> 21246 Illinois Pennsylvania 2002
#> 21247 New Jersey Nebraska 2002
#> 21248 Kentucky Georgia 2002
#> 21249 South Carolina Alabama 2002
#> 21250 Wisconsin Minnesota 2002
#> 21251 Hawaii Florida 2002
#> 21252 Illinois Vermont 2002
#> 21253 Nevada Utah 2002
#> 21254 New Jersey Washington 2002
#> 21255 New York North Carolina 2002
#> 21256 Idaho Delaware 2002
#> 21257 Hawaii Idaho 2002
#> 21258 Minnesota Oregon 2002
#> 21259 New York Hawaii 2002
#> 21260 Colorado New Mexico 2002
#> 21261 Illinois Rhode Island 2002
#> 21262 Washington Montana 2002
#> 21263 Michigan Ohio 2002
#> 21264 Connecticut Kansas 2002
#> 21265 Florida Oklahoma 2002
#> 21266 Rhode Island Massachusetts 2002
#> 21267 Utah California 2002
#> 21268 Kansas South Carolina 2002
#> 21269 Michigan Utah 2002
#> 21270 California Kentucky 2002
#> 21271 Arizona Missouri 2002
#> 21272 Connecticut New York 2002
#> 21273 Louisiana Tennessee 2002
#> 21274 Florida Rhode Island 2002
#> 21275 North Carolina Maryland 2002
#> 21276 Minnesota Michigan 2002
#> 21277 Connecticut Wisconsin 2002
#> 21278 Oregon Texas 2002
#> 21279 Georgia Colorado 2002
#> 21280 Louisiana Arizona 2002
#> 21281 Oklahoma North Dakota 2002
#> 21282 Arizona Hawaii 2002
#> 21283 South Carolina Wyoming 2002
#> 21284 Maine North Carolina 2002
#> 21285 Florida New York 2002
#> 21286 Wisconsin New Mexico 2002
#> 21287 Montana Minnesota 2002
#> 21288 Arizona Iowa 2002
#> 21289 Tennessee Missouri 2002
#> 21290 Wisconsin Indiana 2002
#> 21291 New Jersey Louisiana 2002
#> 21292 Arkansas Connecticut 2002
#> 21293 New Mexico Arkansas 2002
#> 21294 New Mexico Maine 2002
#> 21295 South Dakota Nebraska 2002
#> 21296 Indiana Alabama 2002
#> 21297 Utah Mississippi 2002
#> 21298 Florida New Jersey 2002
#> 21299 Oregon Ohio 2002
#> 21300 New York Kansas 2002
#> 21301 North Carolina West Virginia 2002
#> 21302 Maryland Nevada 2002
#> 21303 Iowa Illinois 2002
#> 21304 Mississippi Oklahoma 2002
#> 21305 Connecticut Maryland 2002
#> 21306 Michigan Kentucky 2002
#> 21307 Mississippi Montana 2002
#> 21308 Hawaii Arizona 2002
#> 21309 Florida Washington 2002
#> 21310 Idaho Ohio 2002
#> 21311 Colorado Vermont 2002
#> 21312 Ohio Virginia 2002
#> 21313 Connecticut Florida 2002
#> 21314 Illinois Delaware 2002
#> 21315 Connecticut New Hampshire 2002
#> 21316 Montana Idaho 2002
#> 21317 North Carolina Missouri 2002
#> 21318 Kentucky Louisiana 2002
#> 21319 Florida Michigan 2002
#> 21320 Massachusetts Pennsylvania 2002
#> 21321 Wisconsin Rhode Island 2002
#> 21322 Utah Alaska 2002
#> 21323 Tennessee Texas 2002
#> 21324 Colorado California 2002
#> 21325 Kentucky Utah 2002
#> 21326 Arizona Pennsylvania 2002
#> 21327 New Jersey Oregon 2002
#> 21328 Missouri Michigan 2002
#> 21329 Utah South Carolina 2002
#> 21330 Virginia Indiana 2002
#> 21331 New York New Mexico 2002
#> 21332 Florida Iowa 2002
#> 21333 Nevada New York 2002
#> 21334 Hawaii North Carolina 2002
#> 21335 Mississippi South Dakota 2002
#> 21336 California Mississippi 2002
#> 21337 Utah Indiana 2002
#> 21338 Colorado Minnesota 2002
#> 21339 New York Florida 2002
#> 21340 North Carolina Georgia 2002
#> 21341 New Mexico Alabama 2002
#> 21342 Iowa Nebraska 2002
#> 21343 Georgia Tennessee 2002
#> 21344 Oregon Arizona 2002
#> 21345 Tennessee Maryland 2002
#> 21346 Minnesota Wisconsin 2002
#> 21347 Mississippi Arizona 2002
#> 21348 Minnesota West Virginia 2002
#> 21349 Louisiana Alaska 2002
#> 21350 Pennsylvania Texas 2002
#> 21351 Nebraska Idaho 2002
#> 21352 Florida Nevada 2002
#> 21353 Hawaii California 2002
#> 21354 South Carolina Illinois 2002
#> 21355 Iowa Colorado 2002
#> 21356 Kansas Mississippi 2002
#> 21357 Georgia Arkansas 2002
#> 21358 Washington Colorado 2002
#> 21359 Oklahoma Connecticut 2002
#> 21360 Wisconsin Iowa 2002
#> 21361 Utah New Jersey 2002
#> 21362 Missouri Ohio 2002
#> 21363 South Carolina Wisconsin 2002
#> 21364 Idaho Wyoming 2002
#> 21365 Colorado Montana 2002
#> 21366 Montana New Jersey 2002
#> 21367 California South Carolina 2002
#> 21368 Hawaii Virginia 2002
#> 21369 Indiana Kansas 2002
#> 21370 Montana Alaska 2002
#> 21371 South Dakota Massachusetts 2002
#> 21372 Hawaii Washington 2002
#> 21373 Maryland California 2002
#> 21374 Utah Georgia 2002
#> 21375 New Jersey Arkansas 2002
#> 21376 Mississippi Missouri 2002
#> 21377 North Carolina Minnesota 2002
#> 21378 Maryland Kentucky 2002
#> 21379 Utah Louisiana 2002
#> 21380 Virginia North Carolina 2002
#> 21381 Hawaii Tennessee 2002
#> 21382 Michigan Alabama 2002
#> 21383 Michigan Rhode Island 2002
#> 21384 Vermont Connecticut 2002
#> 21385 New Mexico Hawaii 2002
#> 21386 Montana Florida 2002
#> 21387 Massachusetts South Dakota 2002
#> 21388 Arizona Kentucky 2002
#> 21389 Virginia Delaware 2002
#> 21390 New Mexico Iowa 2002
#> 21391 Alaska Nevada 2002
#> 21392 Hawaii Delaware 2002
#> 21393 Massachusetts Texas 2002
#> 21394 Maine North Dakota 2002
#> 21395 Indiana Maine 2002
#> 21396 Idaho Arizona 2002
#> 21397 Maryland Indiana 2002
#> 21398 West Virginia Vermont 2002
#> 21399 Illinois Maryland 2002
#> 21400 Arizona Arkansas 2002
#> 21401 Iowa Tennessee 2002
#> 21402 Wisconsin Colorado 2002
#> 21403 Washington Oregon 2002
#> 21404 Utah Oklahoma 2002
#> 21405 Indiana Ohio 2002
#> 21406 Rhode Island New York 2002
#> 21407 Georgia Virginia 2002
#> 21408 Connecticut Rhode Island 2002
#> 21409 Louisiana Montana 2002
#> 21410 Mississippi Idaho 2002
#> 21411 North Dakota Rhode Island 2002
#> 21412 Virginia South Carolina 2002
#> 21413 Minnesota North Dakota 2002
#> 21414 Montana Washington 2002
#> 21415 New Jersey Maryland 2002
#> 21416 Indiana Missouri 2002
#> 21417 Pennsylvania Indiana 2002
#> 21418 Wisconsin Illinois 2002
#> 21419 Maryland West Virginia 2002
#> 21420 Louisiana New Mexico 2002
#> 21421 Ohio Utah 2002
#> 21422 Virginia Florida 2002
#> 21423 Michigan Nebraska 2002
#> 21424 New Jersey Georgia 2002
#> 21425 Texas Virginia 2002
#> 21426 Kentucky Pennsylvania 2002
#> 21427 Oregon Iowa 2002
#> 21428 Connecticut Louisiana 2002
#> 21429 Missouri Pennsylvania 2002
#> 21430 Missouri Colorado 2002
#> 21431 Nevada Montana 2002
#> 21432 Utah North Carolina 2002
#> 21433 Nevada Hawaii 2002
#> 21434 Idaho Alaska 2002
#> 21435 Texas Connecticut 2002
#> 21436 Michigan North Carolina 2002
#> 21437 Kentucky West Virginia 2002
#> 21438 Georgia Oklahoma 2002
#> 21439 Colorado Texas 2002
#> 21440 Michigan Wyoming 2002
#> 21441 Oregon Wisconsin 2002
#> 21442 Michigan Wisconsin 2002
#> 21443 New York Minnesota 2002
#> 21444 Georgia Nevada 2002
#> 21445 Arkansas Alabama 2002
#> 21446 Colorado Maine 2002
#> 21447 Colorado Maryland 2002
#> 21448 Ohio Kansas 2002
#> 21449 Mississippi Nebraska 2002
#> 21450 Kentucky Massachusetts 2002
#> 21451 Kansas Wisconsin 2002
#> 21452 New Jersey Colorado 2002
#> 21453 Oregon Georgia 2002
#> 21454 Kentucky New York 2002
#> 21455 Ohio South Dakota 2002
#> 21456 Pennsylvania South Carolina 2002
#> 21457 Pennsylvania Rhode Island 2002
#> 21458 New York Maine 2002
#> 21459 Illinois North Carolina 2002
#> 21460 Virginia Oregon 2002
#> 21461 Oklahoma California 2002
#> 21462 New York Missouri 2002
#> 21463 Florida Indiana 2002
#> 21464 Tennessee Massachusetts 2002
#> 21465 Wisconsin Michigan 2002
#> 21466 Montana Hawaii 2002
#> 21467 Kentucky North Dakota 2002
#> 21468 Colorado Michigan 2002
#> 21469 Rhode Island Illinois 2002
#> 21470 Indiana New Mexico 2002
#> 21471 Illinois California 2002
#> 21472 Rhode Island Washington 2002
#> 21473 Alaska Nebraska 2002
#> 21474 Colorado Alaska 2002
#> 21475 South Dakota Idaho 2002
#> 21476 Connecticut Delaware 2002
#> 21477 New Hampshire West Virginia 2002
#> 21478 Utah Missouri 2002
#> 21479 New Mexico Kansas 2002
#> 21480 Michigan Indiana 2002
#> 21481 Wisconsin New Hampshire 2002
#> 21482 North Dakota Wyoming 2002
#> 21483 Texas Oklahoma 2002
#> 21484 Arkansas California 2002
#> 21485 Wyoming Illinois 2002
#> 21486 Louisiana Maryland 2002
#> 21487 Connecticut New Mexico 2002
#> 21488 Mississippi Nevada 2002
#> 21489 Ohio Tennessee 2002
#> 21490 Tennessee Georgia 2002
#> 21491 Maryland New Hampshire 2002
#> 21492 Washington Ohio 2002
#> 21493 Maine Nebraska 2002
#> 21494 Hawaii Rhode Island 2002
#> 21495 Montana Arizona 2002
#> 21496 Vermont Tennessee 2002
#> 21497 Washington California 2002
#> 21498 New Hampshire New York 2002
#> 21499 Maryland Montana 2002
#> 21500 Wyoming North Dakota 2002
#> 21501 California Oregon 2003
#> 21502 California Maryland 2003
#> 21503 Florida Arizona 2003
#> 21504 California Florida 2003
#> 21505 California New Jersey 2003
#> 21506 California Texas 2003
#> 21507 California Washington 2003
#> 21508 California New Mexico 2003
#> 21509 California Illinois 2003
#> 21510 California Montana 2003
#> 21511 California Nebraska 2003
#> 21512 Oregon Kentucky 2003
#> 21513 California Colorado 2003
#> 21514 California Minnesota 2003
#> 21515 California Indiana 2003
#> 21516 California Nevada 2003
#> 21517 California Ohio 2003
#> 21518 California Missouri 2003
#> 21519 California Georgia 2003
#> 21520 Minnesota Iowa 2003
#> 21521 California Maine 2003
#> 21522 California North Carolina 2003
#> 21523 California New Hampshire 2003
#> 21524 California South Dakota 2003
#> 21525 California Kansas 2003
#> 21526 California Arkansas 2003
#> 21527 Connecticut Virginia 2003
#> 21528 California Delaware 2003
#> 21529 California Pennsylvania 2003
#> 21530 Florida Utah 2003
#> 21531 California North Dakota 2003
#> 21532 Minnesota Tennessee 2003
#> 21533 California Rhode Island 2003
#> 21534 Minnesota South Carolina 2003
#> 21535 California Vermont 2003
#> 21536 Minnesota Alabama 2003
#> 21537 California Connecticut 2003
#> 21538 Florida Mississippi 2003
#> 21539 California Alaska 2003
#> 21540 Florida Louisiana 2003
#> 21541 Oregon Idaho 2003
#> 21542 California Michigan 2003
#> 21543 California Oklahoma 2003
#> 21544 Minnesota California 2003
#> 21545 California New York 2003
#> 21546 Colorado Wyoming 2003
#> 21547 California Massachusetts 2003
#> 21548 Washington Wisconsin 2003
#> 21549 California Hawaii 2003
#> 21550 Oregon West Virginia 2003
#> 21551 Oregon Minnesota 2003
#> 21552 Connecticut Ohio 2003
#> 21553 New York New Jersey 2003
#> 21554 Idaho Indiana 2003
#> 21555 Idaho Utah 2003
#> 21556 Minnesota Arizona 2003
#> 21557 Florida Georgia 2003
#> 21558 Idaho Virginia 2003
#> 21559 Florida Texas 2003
#> 21560 Massachusetts California 2003
#> 21561 Rhode Island Wisconsin 2003
#> 21562 Massachusetts Connecticut 2003
#> 21563 Oregon New Mexico 2003
#> 21564 Oregon Oklahoma 2003
#> 21565 Oregon Delaware 2003
#> 21566 Minnesota Colorado 2003
#> 21567 Florida South Carolina 2003
#> 21568 Florida Washington 2003
#> 21569 Oregon Maine 2003
#> 21570 Florida Illinois 2003
#> 21571 Minnesota Kansas 2003
#> 21572 Oregon Maryland 2003
#> 21573 New York Michigan 2003
#> 21574 Minnesota Nebraska 2003
#> 21575 Minnesota Florida 2003
#> 21576 Washington Alaska 2003
#> 21577 Florida Idaho 2003
#> 21578 Massachusetts Rhode Island 2003
#> 21579 Colorado North Dakota 2003
#> 21580 Washington Oregon 2003
#> 21581 Colorado South Dakota 2003
#> 21582 California Iowa 2003
#> 21583 Colorado Missouri 2003
#> 21584 Florida Alabama 2003
#> 21585 California Louisiana 2003
#> 21586 Massachusetts Hawaii 2003
#> 21587 Florida Kentucky 2003
#> 21588 Kentucky Arkansas 2003
#> 21589 Connecticut Massachusetts 2003
#> 21590 Illinois Pennsylvania 2003
#> 21591 California Wyoming 2003
#> 21592 Florida West Virginia 2003
#> 21593 Massachusetts New York 2003
#> 21594 Oregon Montana 2003
#> 21595 Massachusetts Vermont 2003
#> 21596 California Tennessee 2003
#> 21597 Florida North Carolina 2003
#> 21598 Illinois Delaware 2003
#> 21599 California Virginia 2003
#> 21600 Idaho Nevada 2003
#> 21601 Minnesota Mississippi 2003
#> 21602 Colorado New Jersey 2003
#> 21603 Oregon Connecticut 2003
#> 21604 Oregon Washington 2003
#> 21605 Arizona Arkansas 2003
#> 21606 Maryland New Hampshire 2003
#> 21607 Florida Oklahoma 2003
#> 21608 Connecticut Minnesota 2003
#> 21609 Oregon Illinois 2003
#> 21610 Idaho Michigan 2003
#> 21611 Minnesota Ohio 2003
#> 21612 Illinois Massachusetts 2003
#> 21613 Louisiana Indiana 2003
#> 21614 Idaho Texas 2003
#> 21615 Connecticut Pennsylvania 2003
#> 21616 Connecticut Oregon 2003
#> 21617 Connecticut Maine 2003
#> 21618 Wisconsin California 2003
#> 21619 Illinois New Mexico 2003
#> 21620 California South Carolina 2003
#> 21621 Oregon Rhode Island 2003
#> 21622 Michigan Montana 2003
#> 21623 New Mexico Arizona 2003
#> 21624 Ohio Colorado 2003
#> 21625 North Dakota Kentucky 2003
#> 21626 California Utah 2003
#> 21627 Iowa Wisconsin 2003
#> 21628 Oregon Vermont 2003
#> 21629 Louisiana Kansas 2003
#> 21630 Georgia Florida 2003
#> 21631 South Carolina Iowa 2003
#> 21632 Idaho North Dakota 2003
#> 21633 Florida Connecticut 2003
#> 21634 Minnesota Idaho 2003
#> 21635 Wisconsin Massachusetts 2003
#> 21636 Colorado Louisiana 2003
#> 21637 Louisiana Missouri 2003
#> 21638 New Jersey Washington 2003
#> 21639 Michigan Nebraska 2003
#> 21640 North Dakota South Dakota 2003
#> 21641 Wisconsin Maryland 2003
#> 21642 Connecticut California 2003
#> 21643 South Carolina North Carolina 2003
#> 21644 Illinois Minnesota 2003
#> 21645 Connecticut New Hampshire 2003
#> 21646 Minnesota Nevada 2003
#> 21647 Florida Tennessee 2003
#> 21648 Oregon Kansas 2003
#> 21649 Florida Ohio 2003
#> 21650 Kansas Mississippi 2003
#> 21651 West Virginia Georgia 2003
#> 21652 Florida Virginia 2003
#> 21653 Colorado Hawaii 2003
#> 21654 Indiana Alabama 2003
#> 21655 Illinois Oklahoma 2003
#> 21656 Connecticut Florida 2003
#> 21657 Illinois Maine 2003
#> 21658 New York Iowa 2003
#> 21659 North Dakota South Carolina 2003
#> 21660 Oregon New York 2003
#> 21661 Connecticut New Jersey 2003
#> 21662 Iowa Montana 2003
#> 21663 Georgia Indiana 2003
#> 21664 Rhode Island Kentucky 2003
#> 21665 Florida Colorado 2003
#> 21666 Oregon Wyoming 2003
#> 21667 Illinois Connecticut 2003
#> 21668 Louisiana Virginia 2003
#> 21669 Hawaii Oregon 2003
#> 21670 Minnesota Delaware 2003
#> 21671 Connecticut North Carolina 2003
#> 21672 South Carolina Idaho 2003
#> 21673 Massachusetts West Virginia 2003
#> 21674 Illinois Georgia 2003
#> 21675 Massachusetts Pennsylvania 2003
#> 21676 Kentucky Michigan 2003
#> 21677 Illinois Washington 2003
#> 21678 Oregon Alaska 2003
#> 21679 New York Maryland 2003
#> 21680 Hawaii New Mexico 2003
#> 21681 Texas Massachusetts 2003
#> 21682 Connecticut Vermont 2003
#> 21683 Louisiana Nevada 2003
#> 21684 Michigan Illinois 2003
#> 21685 Wisconsin Minnesota 2003
#> 21686 Illinois California 2003
#> 21687 Minnesota Arkansas 2003
#> 21688 Colorado Wisconsin 2003
#> 21689 California Mississippi 2003
#> 21690 Hawaii North Dakota 2003
#> 21691 Arizona Utah 2003
#> 21692 Iowa Texas 2003
#> 21693 Illinois New York 2003
#> 21694 Michigan Tennessee 2003
#> 21695 Idaho Colorado 2003
#> 21696 Iowa Nebraska 2003
#> 21697 New York Nevada 2003
#> 21698 New Mexico North Carolina 2003
#> 21699 Delaware South Dakota 2003
#> 21700 Illinois Missouri 2003
#> 21701 Pennsylvania Arizona 2003
#> 21702 Maryland Hawaii 2003
#> 21703 Minnesota Rhode Island 2003
#> 21704 Minnesota Oregon 2003
#> 21705 California Idaho 2003
#> 21706 Minnesota New Hampshire 2003
#> 21707 Arkansas Virginia 2003
#> 21708 North Dakota Nebraska 2003
#> 21709 Utah Maryland 2003
#> 21710 Tennessee Florida 2003
#> 21711 Florida New Jersey 2003
#> 21712 Massachusetts Florida 2003
#> 21713 Idaho Iowa 2003
#> 21714 Idaho Delaware 2003
#> 21715 Massachusetts Ohio 2003
#> 21716 Wisconsin Maine 2003
#> 21717 Maryland Illinois 2003
#> 21718 North Dakota Louisiana 2003
#> 21719 Kansas Vermont 2003
#> 21720 Florida New York 2003
#> 21721 Arkansas Montana 2003
#> 21722 Connecticut Alabama 2003
#> 21723 New York Connecticut 2003
#> 21724 Rhode Island Wyoming 2003
#> 21725 South Carolina Wisconsin 2003
#> 21726 Wisconsin Oregon 2003
#> 21727 Missouri Kentucky 2003
#> 21728 Connecticut Colorado 2003
#> 21729 Vermont Tennessee 2003
#> 21730 Michigan Florida 2003
#> 21731 Nevada Utah 2003
#> 21732 Michigan Rhode Island 2003
#> 21733 Rhode Island North Dakota 2003
#> 21734 Maine Pennsylvania 2003
#> 21735 New York Texas 2003
#> 21736 Oregon Arizona 2003
#> 21737 New Jersey Massachusetts 2003
#> 21738 Minnesota West Virginia 2003
#> 21739 North Dakota New Mexico 2003
#> 21740 Minnesota Oklahoma 2003
#> 21741 Oregon Iowa 2003
#> 21742 Connecticut South Carolina 2003
#> 21743 Oklahoma Arkansas 2003
#> 21744 Wisconsin Indiana 2003
#> 21745 Nevada Washington 2003
#> 21746 Connecticut Kansas 2003
#> 21747 New York Delaware 2003
#> 21748 Nevada Minnesota 2003
#> 21749 Utah California 2003
#> 21750 Kentucky Georgia 2003
#> 21751 Idaho Kansas 2003
#> 21752 Rhode Island Louisiana 2003
#> 21753 New York North Carolina 2003
#> 21754 North Dakota Idaho 2003
#> 21755 Wisconsin Rhode Island 2003
#> 21756 New York Hawaii 2003
#> 21757 Texas Mississippi 2003
#> 21758 Utah Alaska 2003
#> 21759 Minnesota New Jersey 2003
#> 21760 Washington Montana 2003
#> 21761 Colorado Michigan 2003
#> 21762 Michigan Maine 2003
#> 21763 Oregon South Dakota 2003
#> 21764 Michigan Wisconsin 2003
#> 21765 Oklahoma North Dakota 2003
#> 21766 Rhode Island New Mexico 2003
#> 21767 Louisiana Ohio 2003
#> 21768 Georgia New York 2003
#> 21769 Florida Indiana 2003
#> 21770 Tennessee Missouri 2003
#> 21771 California Kentucky 2003
#> 21772 Virginia California 2003
#> 21773 Arizona Missouri 2003
#> 21774 Louisiana Tennessee 2003
#> 21775 Tennessee Arizona 2003
#> 21776 Michigan California 2003
#> 21777 Utah Arkansas 2003
#> 21778 Illinois West Virginia 2003
#> 21779 North Carolina Maryland 2003
#> 21780 New Mexico New Hampshire 2003
#> 21781 Utah South Carolina 2003
#> 21782 Kansas Alabama 2003
#> 21783 Connecticut Wisconsin 2003
#> 21784 Oregon Texas 2003
#> 21785 Illinois Rhode Island 2003
#> 21786 South Carolina Illinois 2003
#> 21787 New York Oregon 2003
#> 21788 Arizona Hawaii 2003
#> 21789 Utah Oklahoma 2003
#> 21790 South Carolina Wyoming 2003
#> 21791 Maine North Carolina 2003
#> 21792 Michigan Louisiana 2003
#> 21793 Rhode Island Washington 2003
#> 21794 Montana Alaska 2003
#> 21795 Wisconsin Tennessee 2003
#> 21796 New Mexico Iowa 2003
#> 21797 Washington Colorado 2003
#> 21798 Nevada Nebraska 2003
#> 21799 Colorado Minnesota 2003
#> 21800 Maryland Maine 2003
#> 21801 Illinois Idaho 2003
#> 21802 Massachusetts Indiana 2003
#> 21803 Texas Utah 2003
#> 21804 Florida Massachusetts 2003
#> 21805 Connecticut Iowa 2003
#> 21806 Oklahoma West Virginia 2003
#> 21807 Maryland Nevada 2003
#> 21808 Indiana Delaware 2003
#> 21809 Oregon Ohio 2003
#> 21810 Rhode Island New York 2003
#> 21811 Massachusetts Colorado 2003
#> 21812 Florida Nebraska 2003
#> 21813 Connecticut Maryland 2003
#> 21814 Florida Rhode Island 2003
#> 21815 Hawaii Florida 2003
#> 21816 Arizona Pennsylvania 2003
#> 21817 Delaware Connecticut 2003
#> 21818 Mississippi Montana 2003
#> 21819 New Jersey Illinois 2003
#> 21820 Louisiana South Carolina 2003
#> 21821 New Jersey New Mexico 2003
#> 21822 Indiana Missouri 2003
#> 21823 Utah New Jersey 2003
#> 21824 Wisconsin South Carolina 2003
#> 21825 Texas Oklahoma 2003
#> 21826 New York New Hampshire 2003
#> 21827 Utah Mississippi 2003
#> 21828 Kentucky Louisiana 2003
#> 21829 Tennessee Texas 2003
#> 21830 Utah Arizona 2003
#> 21831 Mississippi New Mexico 2003
#> 21832 New Mexico Oklahoma 2003
#> 21833 Florida Michigan 2003
#> 21834 Maine Vermont 2003
#> 21835 Nevada California 2003
#> 21836 North Carolina Georgia 2003
#> 21837 Arizona Oregon 2003
#> 21838 Hawaii North Carolina 2003
#> 21839 Georgia Kentucky 2003
#> 21840 South Carolina Alabama 2003
#> 21841 Hawaii Idaho 2003
#> 21842 New Jersey Louisiana 2003
#> 21843 Michigan Kansas 2003
#> 21844 New Mexico Maine 2003
#> 21845 Utah Indiana 2003
#> 21846 Tennessee Maryland 2003
#> 21847 Missouri Michigan 2003
#> 21848 Missouri Ohio 2003
#> 21849 South Dakota Massachusetts 2003
#> 21850 Texas Kentucky 2003
#> 21851 Nevada Rhode Island 2003
#> 21852 New Mexico Mississippi 2003
#> 21853 Colorado Arkansas 2003
#> 21854 Wisconsin New York 2003
#> 21855 North Dakota Washington 2003
#> 21856 Kentucky Virginia 2003
#> 21857 Pennsylvania Texas 2003
#> 21858 Maryland Connecticut 2003
#> 21859 Idaho Ohio 2003
#> 21860 Utah South Dakota 2003
#> 21861 New Mexico Hawaii 2003
#> 21862 Florida Nevada 2003
#> 21863 Georgia Mississippi 2003
#> 21864 Oregon Missouri 2003
#> 21865 Idaho Wyoming 2003
#> 21866 Colorado Arizona 2003
#> 21867 Rhode Island Minnesota 2003
#> 21868 Iowa Colorado 2003
#> 21869 Illinois Ohio 2003
#> 21870 Colorado Montana 2003
#> 21871 New Mexico Kansas 2003
#> 21872 Illinois Iowa 2003
#> 21873 Minnesota Michigan 2003
#> 21874 Utah Georgia 2003
#> 21875 Michigan Utah 2003
#> 21876 Colorado California 2003
#> 21877 Maine Arkansas 2003
#> 21878 Mississippi Missouri 2003
#> 21879 California West Virginia 2003
#> 21880 Virginia North Carolina 2003
#> 21881 Montana Florida 2003
#> 21882 Alaska New York 2003
#> 21883 Kentucky Pennsylvania 2003
#> 21884 Massachusetts South Dakota 2003
#> 21885 Utah Tennessee 2003
#> 21886 Wisconsin Illinois 2003
#> 21887 New York Florida 2003
#> 21888 Illinois Alabama 2003
#> 21889 Maine North Dakota 2003
#> 21890 Missouri Mississippi 2003
#> 21891 Hawaii Pennsylvania 2003
#> 21892 Washington California 2003
#> 21893 New Jersey Alaska 2003
#> 21894 Florida Iowa 2003
#> 21895 Idaho Vermont 2003
#> 21896 Georgia Nebraska 2003
#> 21897 Maryland Massachusetts 2003
#> 21898 Alaska Nevada 2003
#> 21899 Wisconsin New Mexico 2003
#> 21900 Florida Maryland 2003
#> 21901 Connecticut New York 2003
#> 21902 Indiana New Jersey 2003
#> 21903 Hawaii Delaware 2003
#> 21904 Pennsylvania Indiana 2003
#> 21905 Massachusetts Texas 2003
#> 21906 Kansas Virginia 2003
#> 21907 Connecticut Rhode Island 2003
#> 21908 North Carolina Arizona 2003
#> 21909 Minnesota Wisconsin 2003
#> 21910 Montana Minnesota 2003
#> 21911 Illinois Maryland 2003
#> 21912 Rhode Island New Hampshire 2003
#> 21913 Utah Kansas 2003
#> 21914 North Dakota Rhode Island 2003
#> 21915 Minnesota North Dakota 2003
#> 21916 Illinois Florida 2003
#> 21917 South Dakota Nebraska 2003
#> 21918 Arizona South Carolina 2003
#> 21919 New Jersey Delaware 2003
#> 21920 Wisconsin Colorado 2003
#> 21921 New Jersey Georgia 2003
#> 21922 Oregon Wisconsin 2003
#> 21923 Connecticut Tennessee 2003
#> 21924 Nevada Montana 2003
#> 21925 North Dakota Connecticut 2003
#> 21926 Utah North Carolina 2003
#> 21927 Oregon New Jersey 2003
#> 21928 Georgia Oklahoma 2003
#> 21929 Colorado Oregon 2003
#> 21930 Nevada Hawaii 2003
#> 21931 Minnesota New Mexico 2003
#> 21932 Hawaii Utah 2003
#> 21933 Colorado Texas 2003
#> 21934 Michigan Wyoming 2003
#> 21935 Georgia Nevada 2003
#> 21936 Illinois South Dakota 2003
#> 21937 Massachusetts Maine 2003
#> 21938 Colorado Maryland 2003
#> 21939 Nevada Idaho 2003
#> 21940 Montana Georgia 2003
#> 21941 Utah Louisiana 2003
#> 21942 Kansas Wisconsin 2003
#> 21943 Idaho South Carolina 2003
#> 21944 Georgia Colorado 2003
#> 21945 Illinois North Carolina 2003
#> 21946 Kentucky New York 2003
#> 21947 Michigan Missouri 2003
#> 21948 Pennsylvania Rhode Island 2003
#> 21949 New York Maine 2003
#> 21950 Florida Hawaii 2003
#> 21951 Idaho Alaska 2003
#> 21952 Minnesota Washington 2003
#> 21953 California Alabama 2003
#> 21954 Oklahoma Kansas 2003
#> 21955 Virginia Florida 2003
#> 21956 North Carolina Colorado 2003
#> 21957 New York Ohio 2003
#> 21958 Montana California 2003
#> 21959 Maryland Arkansas 2003
#> 21960 Montana Hawaii 2003
#> 21961 Colorado Illinois 2003
#> 21962 Kentucky North Dakota 2003
#> 21963 Wisconsin Michigan 2003
#> 21964 Georgia Arizona 2003
#> 21965 Wisconsin Vermont 2003
#> 21966 Wisconsin Kentucky 2003
#> 21967 Arkansas Delaware 2003
#> 21968 Washington Arizona 2003
#> 21969 Kansas Pennsylvania 2003
#> 21970 Delaware Minnesota 2003
#> 21971 Missouri Iowa 2003
#> 21972 Colorado Alaska 2003
#> 21973 Utah Missouri 2003
#> 21974 Ohio Utah 2003
#> 21975 Ohio Tennessee 2003
#> 21976 Illinois Indiana 2003
#> 21977 Indiana New Mexico 2003
#> 21978 Ohio Kansas 2003
#> 21979 North Dakota Wyoming 2003
#> 21980 Nebraska Arizona 2003
#> 21981 Washington Louisiana 2003
#> 21982 Arizona Oklahoma 2003
#> 21983 Kansas Iowa 2003
#> 21984 Tennessee Connecticut 2003
#> 21985 Colorado West Virginia 2003
#> 21986 Iowa Idaho 2003
#> 21987 New Hampshire New York 2003
#> 21988 Arizona South Dakota 2003
#> 21989 Kentucky Ohio 2003
#> 21990 Virginia Tennessee 2003
#> 21991 Mississippi Nevada 2003
#> 21992 Louisiana Montana 2003
#> 21993 Wyoming Illinois 2003
#> 21994 Louisiana Utah 2003
#> 21995 New Hampshire West Virginia 2003
#> 21996 Hawaii Rhode Island 2003
#> 21997 New Mexico Washington 2003
#> 21998 Connecticut Illinois 2003
#> 21999 Rhode Island California 2003
#> 22000 Delaware Alabama 2003
#> 22001 California Oregon 2004
#> 22002 California Maryland 2004
#> 22003 California Texas 2004
#> 22004 California New Mexico 2004
#> 22005 Florida Arizona 2004
#> 22006 California Illinois 2004
#> 22007 California Florida 2004
#> 22008 California Nevada 2004
#> 22009 California Montana 2004
#> 22010 California New Jersey 2004
#> 22011 California Nebraska 2004
#> 22012 California Colorado 2004
#> 22013 California Ohio 2004
#> 22014 California Washington 2004
#> 22015 California Indiana 2004
#> 22016 Oregon Kentucky 2004
#> 22017 California Maine 2004
#> 22018 California Minnesota 2004
#> 22019 California Delaware 2004
#> 22020 California Georgia 2004
#> 22021 California North Carolina 2004
#> 22022 California Missouri 2004
#> 22023 California South Dakota 2004
#> 22024 Minnesota Iowa 2004
#> 22025 Minnesota Virginia 2004
#> 22026 California Arkansas 2004
#> 22027 California New Hampshire 2004
#> 22028 California Kansas 2004
#> 22029 California Pennsylvania 2004
#> 22030 Minnesota Tennessee 2004
#> 22031 California North Dakota 2004
#> 22032 Florida Utah 2004
#> 22033 California Vermont 2004
#> 22034 Minnesota Alabama 2004
#> 22035 California Rhode Island 2004
#> 22036 Florida South Carolina 2004
#> 22037 California Alaska 2004
#> 22038 California Connecticut 2004
#> 22039 Florida Mississippi 2004
#> 22040 Florida Louisiana 2004
#> 22041 California Idaho 2004
#> 22042 California Michigan 2004
#> 22043 California New York 2004
#> 22044 California Oklahoma 2004
#> 22045 California Hawaii 2004
#> 22046 Colorado Wyoming 2004
#> 22047 Minnesota California 2004
#> 22048 Washington Wisconsin 2004
#> 22049 California Massachusetts 2004
#> 22050 Oregon West Virginia 2004
#> 22051 Oregon Minnesota 2004
#> 22052 Connecticut Ohio 2004
#> 22053 New York New Jersey 2004
#> 22054 Idaho Indiana 2004
#> 22055 Florida Texas 2004
#> 22056 Florida Georgia 2004
#> 22057 Massachusetts California 2004
#> 22058 Idaho Utah 2004
#> 22059 Minnesota Arizona 2004
#> 22060 Rhode Island Wisconsin 2004
#> 22061 Illinois Connecticut 2004
#> 22062 Idaho Virginia 2004
#> 22063 Oregon New Mexico 2004
#> 22064 Minnesota Kansas 2004
#> 22065 Florida Washington 2004
#> 22066 Minnesota Oklahoma 2004
#> 22067 Minnesota Colorado 2004
#> 22068 California Iowa 2004
#> 22069 Florida Illinois 2004
#> 22070 Minnesota South Carolina 2004
#> 22071 Minnesota Nebraska 2004
#> 22072 Minnesota Delaware 2004
#> 22073 California Louisiana 2004
#> 22074 Florida Missouri 2004
#> 22075 Oregon Maine 2004
#> 22076 Minnesota Florida 2004
#> 22077 New York Michigan 2004
#> 22078 Washington Alaska 2004
#> 22079 Idaho North Dakota 2004
#> 22080 Florida Arkansas 2004
#> 22081 Oregon Maryland 2004
#> 22082 Colorado South Dakota 2004
#> 22083 Florida Alabama 2004
#> 22084 New York Oregon 2004
#> 22085 Massachusetts Rhode Island 2004
#> 22086 Florida North Carolina 2004
#> 22087 Minnesota Idaho 2004
#> 22088 Massachusetts Hawaii 2004
#> 22089 Florida Kentucky 2004
#> 22090 California Tennessee 2004
#> 22091 California Wyoming 2004
#> 22092 Connecticut Massachusetts 2004
#> 22093 Illinois Pennsylvania 2004
#> 22094 Florida West Virginia 2004
#> 22095 Massachusetts Vermont 2004
#> 22096 Massachusetts New York 2004
#> 22097 Michigan Montana 2004
#> 22098 Idaho Nevada 2004
#> 22099 Minnesota Mississippi 2004
#> 22100 Colorado New Jersey 2004
#> 22101 California Virginia 2004
#> 22102 Colorado New Hampshire 2004
#> 22103 Minnesota Illinois 2004
#> 22104 New Jersey Washington 2004
#> 22105 Illinois Massachusetts 2004
#> 22106 Idaho Texas 2004
#> 22107 Massachusetts Connecticut 2004
#> 22108 Idaho Michigan 2004
#> 22109 Florida Oklahoma 2004
#> 22110 Connecticut Minnesota 2004
#> 22111 Louisiana Indiana 2004
#> 22112 Minnesota Ohio 2004
#> 22113 New York Delaware 2004
#> 22114 Oregon Rhode Island 2004
#> 22115 Colorado Oregon 2004
#> 22116 Connecticut California 2004
#> 22117 Connecticut Maine 2004
#> 22118 Illinois New Mexico 2004
#> 22119 Connecticut Colorado 2004
#> 22120 Iowa Wisconsin 2004
#> 22121 South Carolina Idaho 2004
#> 22122 Connecticut Pennsylvania 2004
#> 22123 Connecticut South Carolina 2004
#> 22124 California Utah 2004
#> 22125 New Mexico Arizona 2004
#> 22126 Utah Arkansas 2004
#> 22127 North Dakota Kentucky 2004
#> 22128 Oregon Montana 2004
#> 22129 Oregon Connecticut 2004
#> 22130 Louisiana Kansas 2004
#> 22131 Georgia Florida 2004
#> 22132 Colorado North Dakota 2004
#> 22133 Oregon Vermont 2004
#> 22134 New York Iowa 2004
#> 22135 Florida Maryland 2004
#> 22136 Wisconsin Massachusetts 2004
#> 22137 Colorado Louisiana 2004
#> 22138 Connecticut Virginia 2004
#> 22139 Wisconsin California 2004
#> 22140 Michigan Nebraska 2004
#> 22141 Delaware South Dakota 2004
#> 22142 South Carolina North Carolina 2004
#> 22143 Minnesota Nevada 2004
#> 22144 Illinois Minnesota 2004
#> 22145 Oregon Delaware 2004
#> 22146 Michigan Tennessee 2004
#> 22147 Connecticut Washington 2004
#> 22148 Colorado Missouri 2004
#> 22149 Montana Idaho 2004
#> 22150 Massachusetts West Virginia 2004
#> 22151 Florida Connecticut 2004
#> 22152 Georgia Mississippi 2004
#> 22153 West Virginia Georgia 2004
#> 22154 California Alabama 2004
#> 22155 Florida Ohio 2004
#> 22156 Oregon Kansas 2004
#> 22157 Illinois Oklahoma 2004
#> 22158 Colorado Hawaii 2004
#> 22159 Pennsylvania New York 2004
#> 22160 Rhode Island New Mexico 2004
#> 22161 Illinois Maine 2004
#> 22162 Kentucky Arkansas 2004
#> 22163 Connecticut Florida 2004
#> 22164 Georgia Indiana 2004
#> 22165 Maine New Hampshire 2004
#> 22166 Connecticut Iowa 2004
#> 22167 Connecticut New Jersey 2004
#> 22168 Illinois Washington 2004
#> 22169 Iowa Montana 2004
#> 22170 Florida Colorado 2004
#> 22171 Montana Wyoming 2004
#> 22172 Wisconsin Minnesota 2004
#> 22173 Connecticut Tennessee 2004
#> 22174 California South Carolina 2004
#> 22175 Rhode Island Kentucky 2004
#> 22176 Louisiana Nevada 2004
#> 22177 Texas Massachusetts 2004
#> 22178 Maryland Illinois 2004
#> 22179 Hawaii North Dakota 2004
#> 22180 Connecticut North Carolina 2004
#> 22181 Illinois Georgia 2004
#> 22182 Kentucky Michigan 2004
#> 22183 New York Maryland 2004
#> 22184 Oregon Alaska 2004
#> 22185 Connecticut Vermont 2004
#> 22186 Oregon Oklahoma 2004
#> 22187 Hawaii Oregon 2004
#> 22188 Iowa Texas 2004
#> 22189 Louisiana Virginia 2004
#> 22190 North Dakota South Carolina 2004
#> 22191 Arizona Utah 2004
#> 22192 Massachusetts Pennsylvania 2004
#> 22193 New Mexico North Carolina 2004
#> 22194 Idaho Delaware 2004
#> 22195 Idaho Colorado 2004
#> 22196 Illinois California 2004
#> 22197 Idaho Iowa 2004
#> 22198 Colorado Wisconsin 2004
#> 22199 Iowa Nebraska 2004
#> 22200 Oregon South Dakota 2004
#> 22201 New York Nevada 2004
#> 22202 Illinois Arizona 2004
#> 22203 Texas Mississippi 2004
#> 22204 Maryland Hawaii 2004
#> 22205 Michigan Florida 2004
#> 22206 Minnesota Rhode Island 2004
#> 22207 Florida Virginia 2004
#> 22208 North Dakota Nebraska 2004
#> 22209 New York New Hampshire 2004
#> 22210 Hawaii Idaho 2004
#> 22211 Illinois Missouri 2004
#> 22212 Wisconsin Maryland 2004
#> 22213 Minnesota Oregon 2004
#> 22214 Colorado Arizona 2004
#> 22215 Florida New Jersey 2004
#> 22216 Wisconsin Indiana 2004
#> 22217 Kentucky Louisiana 2004
#> 22218 Wisconsin Maine 2004
#> 22219 Utah Illinois 2004
#> 22220 Kentucky New York 2004
#> 22221 North Dakota New Mexico 2004
#> 22222 Massachusetts Florida 2004
#> 22223 Minnesota Arkansas 2004
#> 22224 Louisiana Alabama 2004
#> 22225 Arizona Oregon 2004
#> 22226 Illinois Delaware 2004
#> 22227 Nevada Minnesota 2004
#> 22228 Louisiana North Dakota 2004
#> 22229 New York Connecticut 2004
#> 22230 Missouri Ohio 2004
#> 22231 South Carolina Wisconsin 2004
#> 22232 Tennessee Florida 2004
#> 22233 Georgia Kentucky 2004
#> 22234 Louisiana Missouri 2004
#> 22235 New York New Mexico 2004
#> 22236 Ohio Texas 2004
#> 22237 Illinois West Virginia 2004
#> 22238 Iowa Vermont 2004
#> 22239 Oregon Wyoming 2004
#> 22240 Nevada Utah 2004
#> 22241 Nevada Rhode Island 2004
#> 22242 Illinois Iowa 2004
#> 22243 Iowa Colorado 2004
#> 22244 Maine Pennsylvania 2004
#> 22245 Nevada Tennessee 2004
#> 22246 New Jersey Massachusetts 2004
#> 22247 Connecticut New York 2004
#> 22248 Washington Montana 2004
#> 22249 Arizona Washington 2004
#> 22250 New York Texas 2004
#> 22251 Connecticut Kansas 2004
#> 22252 Alaska New York 2004
#> 22253 New Jersey Louisiana 2004
#> 22254 Maine Maryland 2004
#> 22255 North Dakota Mississippi 2004
#> 22256 Kentucky Georgia 2004
#> 22257 Idaho Kansas 2004
#> 22258 Florida Rhode Island 2004
#> 22259 Virginia California 2004
#> 22260 New York North Carolina 2004
#> 22261 Georgia New Hampshire 2004
#> 22262 Florida New York 2004
#> 22263 Oklahoma North Dakota 2004
#> 22264 North Dakota Washington 2004
#> 22265 Idaho Ohio 2004
#> 22266 Utah Alaska 2004
#> 22267 Connecticut Oregon 2004
#> 22268 New York Hawaii 2004
#> 22269 Colorado Michigan 2004
#> 22270 Minnesota New Jersey 2004
#> 22271 Arkansas Montana 2004
#> 22272 Utah Oklahoma 2004
#> 22273 Michigan Maine 2004
#> 22274 Michigan Wisconsin 2004
#> 22275 Illinois Rhode Island 2004
#> 22276 Florida Iowa 2004
#> 22277 North Dakota South Dakota 2004
#> 22278 Colorado Minnesota 2004
#> 22279 Florida Indiana 2004
#> 22280 California Kentucky 2004
#> 22281 New Mexico Arkansas 2004
#> 22282 Utah Louisiana 2004
#> 22283 Wisconsin Arizona 2004
#> 22284 Utah Tennessee 2004
#> 22285 Arkansas California 2004
#> 22286 North Dakota Idaho 2004
#> 22287 Arizona Pennsylvania 2004
#> 22288 Connecticut Wisconsin 2004
#> 22289 Rhode Island Wyoming 2004
#> 22290 Georgia Arkansas 2004
#> 22291 Oregon California 2004
#> 22292 Arizona Hawaii 2004
#> 22293 Maine North Carolina 2004
#> 22294 Montana Alaska 2004
#> 22295 Texas Kentucky 2004
#> 22296 Tennessee Missouri 2004
#> 22297 Maryland Maine 2004
#> 22298 Nevada Nebraska 2004
#> 22299 Pennsylvania Texas 2004
#> 22300 Indiana Delaware 2004
#> 22301 Utah Maryland 2004
#> 22302 Texas Utah 2004
#> 22303 Oregon Missouri 2004
#> 22304 New Mexico Mississippi 2004
#> 22305 Washington Louisiana 2004
#> 22306 Maryland Nevada 2004
#> 22307 New York Ohio 2004
#> 22308 Florida Massachusetts 2004
#> 22309 Indiana South Carolina 2004
#> 22310 Oklahoma West Virginia 2004
#> 22311 California Arizona 2004
#> 22312 Minnesota West Virginia 2004
#> 22313 Michigan Illinois 2004
#> 22314 Kentucky Ohio 2004
#> 22315 Nevada New Mexico 2004
#> 22316 Pennsylvania Indiana 2004
#> 22317 Kentucky Colorado 2004
#> 22318 Michigan California 2004
#> 22319 Florida Nebraska 2004
#> 22320 Hawaii Florida 2004
#> 22321 Mississippi Montana 2004
#> 22322 New Mexico Alabama 2004
#> 22323 Wisconsin New Mexico 2004
#> 22324 Ohio Virginia 2004
#> 22325 Washington Connecticut 2004
#> 22326 Illinois New York 2004
#> 22327 Utah New Jersey 2004
#> 22328 Kansas Idaho 2004
#> 22329 Texas Oklahoma 2004
#> 22330 New York Washington 2004
#> 22331 Utah South Carolina 2004
#> 22332 Oregon Ohio 2004
#> 22333 Washington Colorado 2004
#> 22334 Massachusetts Texas 2004
#> 22335 Wisconsin Rhode Island 2004
#> 22336 Hawaii Virginia 2004
#> 22337 Maine North Dakota 2004
#> 22338 New Mexico Oklahoma 2004
#> 22339 New Mexico Kansas 2004
#> 22340 Utah Indiana 2004
#> 22341 North Carolina Georgia 2004
#> 22342 Florida Michigan 2004
#> 22343 Kentucky North Carolina 2004
#> 22344 Washington Tennessee 2004
#> 22345 New Mexico Iowa 2004
#> 22346 South Carolina Wyoming 2004
#> 22347 Texas South Carolina 2004
#> 22348 Washington Illinois 2004
#> 22349 Illinois New Hampshire 2004
#> 22350 Connecticut Maryland 2004
#> 22351 Illinois Michigan 2004
#> 22352 Wisconsin Colorado 2004
#> 22353 Oregon Idaho 2004
#> 22354 Utah Mississippi 2004
#> 22355 Wisconsin Vermont 2004
#> 22356 Washington Oregon 2004
#> 22357 Florida Nevada 2004
#> 22358 Utah South Dakota 2004
#> 22359 Oklahoma Connecticut 2004
#> 22360 New Mexico Hawaii 2004
#> 22361 Delaware Alabama 2004
#> 22362 Missouri Kentucky 2004
#> 22363 Utah Arizona 2004
#> 22364 Rhode Island Minnesota 2004
#> 22365 Missouri Pennsylvania 2004
#> 22366 Delaware Massachusetts 2004
#> 22367 Louisiana South Dakota 2004
#> 22368 Colorado Montana 2004
#> 22369 Connecticut Louisiana 2004
#> 22370 Michigan Kansas 2004
#> 22371 South Carolina Illinois 2004
#> 22372 Maryland New York 2004
#> 22373 Michigan Utah 2004
#> 22374 Oregon Michigan 2004
#> 22375 Maine Iowa 2004
#> 22376 Maryland Massachusetts 2004
#> 22377 California West Virginia 2004
#> 22378 Montana Florida 2004
#> 22379 Louisiana New Mexico 2004
#> 22380 Kentucky Pennsylvania 2004
#> 22381 Hawaii North Carolina 2004
#> 22382 Georgia New York 2004
#> 22383 Tennessee South Carolina 2004
#> 22384 Connecticut New Hampshire 2004
#> 22385 Kentucky Maryland 2004
#> 22386 New York Florida 2004
#> 22387 Mississippi Tennessee 2004
#> 22388 California Mississippi 2004
#> 22389 Vermont California 2004
#> 22390 Ohio Kansas 2004
#> 22391 New Jersey Alaska 2004
#> 22392 South Carolina Arkansas 2004
#> 22393 Alaska Nevada 2004
#> 22394 Georgia Nebraska 2004
#> 22395 Montana New Jersey 2004
#> 22396 New Mexico Maine 2004
#> 22397 Connecticut Illinois 2004
#> 22398 Kansas Arizona 2004
#> 22399 Massachusetts Indiana 2004
#> 22400 Montana Minnesota 2004
#> 22401 Hawaii Delaware 2004
#> 22402 South Dakota Florida 2004
#> 22403 Indiana Ohio 2004
#> 22404 Indiana New Jersey 2004
#> 22405 Ohio Rhode Island 2004
#> 22406 Connecticut Rhode Island 2004
#> 22407 Tennessee Texas 2004
#> 22408 Wisconsin Louisiana 2004
#> 22409 Rhode Island California 2004
#> 22410 Idaho Vermont 2004
#> 22411 Washington California 2004
#> 22412 Minnesota Wisconsin 2004
#> 22413 Wisconsin Missouri 2004
#> 22414 Illinois Maryland 2004
#> 22415 Wisconsin Oregon 2004
#> 22416 Georgia Virginia 2004
#> 22417 New Jersey Delaware 2004
#> 22418 New Jersey Georgia 2004
#> 22419 Maryland North Carolina 2004
#> 22420 Kentucky Iowa 2004
#> 22421 Illinois Florida 2004
#> 22422 South Dakota Nebraska 2004
#> 22423 Wisconsin Alaska 2004
#> 22424 New York Idaho 2004
#> 22425 Washington North Dakota 2004
#> 22426 Texas Virginia 2004
#> 22427 Oregon Wisconsin 2004
#> 22428 New York Maine 2004
#> 22429 Washington Ohio 2004
#> 22430 Utah Georgia 2004
#> 22431 Nevada Montana 2004
#> 22432 South Carolina Nevada 2004
#> 22433 Georgia Oklahoma 2004
#> 22434 Colorado Texas 2004
#> 22435 Texas Connecticut 2004
#> 22436 Michigan Wyoming 2004
#> 22437 Alaska North Carolina 2004
#> 22438 Nevada Hawaii 2004
#> 22439 Hawaii Utah 2004
#> 22440 Pennsylvania Rhode Island 2004
#> 22441 Georgia New Mexico 2004
#> 22442 Utah Kansas 2004
#> 22443 Arkansas Connecticut 2004
#> 22444 Connecticut Alabama 2004
#> 22445 Georgia Arizona 2004
#> 22446 Hawaii Washington 2004
#> 22447 Montana California 2004
#> 22448 Montana Georgia 2004
#> 22449 Kansas Wisconsin 2004
#> 22450 Massachusetts Maine 2004
#> 22451 Washington North Carolina 2004
#> 22452 Kansas New Mexico 2004
#> 22453 Florida Hawaii 2004
#> 22454 Missouri Michigan 2004
#> 22455 Ohio Colorado 2004
#> 22456 North Carolina Colorado 2004
#> 22457 Oklahoma Kansas 2004
#> 22458 Hawaii Pennsylvania 2004
#> 22459 Indiana South Dakota 2004
#> 22460 Utah California 2004
#> 22461 New York Missouri 2004
#> 22462 Illinois Tennessee 2004
#> 22463 Idaho Missouri 2004
#> 22464 Montana Hawaii 2004
#> 22465 Minnesota North Dakota 2004
#> 22466 Oklahoma California 2004
#> 22467 New Mexico Washington 2004
#> 22468 Georgia Louisiana 2004
#> 22469 Hawaii Connecticut 2004
#> 22470 Wisconsin Kentucky 2004
#> 22471 Colorado Maryland 2004
#> 22472 Illinois Indiana 2004
#> 22473 Illinois Alabama 2004
#> 22474 New Hampshire New York 2004
#> 22475 Delaware Minnesota 2004
#> 22476 West Virginia Vermont 2004
#> 22477 Ohio Utah 2004
#> 22478 Illinois South Dakota 2004
#> 22479 Wisconsin Michigan 2004
#> 22480 Iowa Nevada 2004
#> 22481 Colorado West Virginia 2004
#> 22482 Oregon Arizona 2004
#> 22483 Connecticut Delaware 2004
#> 22484 Illinois South Carolina 2004
#> 22485 Minnesota Missouri 2004
#> 22486 Missouri Maryland 2004
#> 22487 Washington Massachusetts 2004
#> 22488 Wyoming North Dakota 2004
#> 22489 Tennessee Montana 2004
#> 22490 Idaho Wyoming 2004
#> 22491 Missouri Mississippi 2004
#> 22492 Louisiana Utah 2004
#> 22493 New Hampshire West Virginia 2004
#> 22494 New York Rhode Island 2004
#> 22495 Utah Texas 2004
#> 22496 Illinois Idaho 2004
#> 22497 Delaware Iowa 2004
#> 22498 Wisconsin Illinois 2004
#> 22499 Rhode Island Maryland 2004
#> 22500 Maryland Montana 2004
#> 22501 California Oregon 2005
#> 22502 California Maryland 2005
#> 22503 California Illinois 2005
#> 22504 California Colorado 2005
#> 22505 California Texas 2005
#> 22506 California Maine 2005
#> 22507 Florida Arizona 2005
#> 22508 California New Mexico 2005
#> 22509 California Florida 2005
#> 22510 California Montana 2005
#> 22511 California Nevada 2005
#> 22512 California New Jersey 2005
#> 22513 Oregon Kentucky 2005
#> 22514 California Nebraska 2005
#> 22515 California Ohio 2005
#> 22516 California Indiana 2005
#> 22517 California Washington 2005
#> 22518 California Minnesota 2005
#> 22519 California Delaware 2005
#> 22520 California North Carolina 2005
#> 22521 California Georgia 2005
#> 22522 California Missouri 2005
#> 22523 California New Hampshire 2005
#> 22524 Minnesota Virginia 2005
#> 22525 California South Dakota 2005
#> 22526 California Pennsylvania 2005
#> 22527 Minnesota Iowa 2005
#> 22528 California Vermont 2005
#> 22529 California Kansas 2005
#> 22530 Oregon Tennessee 2005
#> 22531 California Arkansas 2005
#> 22532 California Utah 2005
#> 22533 Minnesota South Carolina 2005
#> 22534 California North Dakota 2005
#> 22535 California Rhode Island 2005
#> 22536 Florida Mississippi 2005
#> 22537 California Connecticut 2005
#> 22538 Minnesota Alabama 2005
#> 22539 California Alaska 2005
#> 22540 Florida Louisiana 2005
#> 22541 California New York 2005
#> 22542 California Michigan 2005
#> 22543 California Idaho 2005
#> 22544 California Oklahoma 2005
#> 22545 Washington Wisconsin 2005
#> 22546 Colorado Wyoming 2005
#> 22547 California Hawaii 2005
#> 22548 California Massachusetts 2005
#> 22549 Minnesota California 2005
#> 22550 Oregon West Virginia 2005
#> 22551 Oregon Minnesota 2005
#> 22552 Connecticut Ohio 2005
#> 22553 Idaho Indiana 2005
#> 22554 Florida Texas 2005
#> 22555 New York New Jersey 2005
#> 22556 Florida Georgia 2005
#> 22557 Florida Connecticut 2005
#> 22558 Massachusetts California 2005
#> 22559 Rhode Island Wisconsin 2005
#> 22560 Idaho Virginia 2005
#> 22561 Minnesota Arizona 2005
#> 22562 Idaho Utah 2005
#> 22563 California Louisiana 2005
#> 22564 Minnesota Oklahoma 2005
#> 22565 Florida Missouri 2005
#> 22566 Oregon New Mexico 2005
#> 22567 Minnesota Kansas 2005
#> 22568 Florida Washington 2005
#> 22569 Florida South Carolina 2005
#> 22570 Minnesota Colorado 2005
#> 22571 Florida Illinois 2005
#> 22572 Florida Arkansas 2005
#> 22573 Oregon Delaware 2005
#> 22574 Idaho North Dakota 2005
#> 22575 Oregon Maine 2005
#> 22576 Oregon Maryland 2005
#> 22577 California Iowa 2005
#> 22578 New York Michigan 2005
#> 22579 Washington Alaska 2005
#> 22580 Florida Kentucky 2005
#> 22581 Colorado South Dakota 2005
#> 22582 Florida Alabama 2005
#> 22583 Oregon Rhode Island 2005
#> 22584 Minnesota Florida 2005
#> 22585 Minnesota Nebraska 2005
#> 22586 New York Oregon 2005
#> 22587 Florida North Carolina 2005
#> 22588 Rhode Island Idaho 2005
#> 22589 Illinois Pennsylvania 2005
#> 22590 Connecticut Massachusetts 2005
#> 22591 Florida West Virginia 2005
#> 22592 California Wyoming 2005
#> 22593 Massachusetts Hawaii 2005
#> 22594 Massachusetts Vermont 2005
#> 22595 Illinois Tennessee 2005
#> 22596 Michigan Montana 2005
#> 22597 Idaho Nevada 2005
#> 22598 Illinois Delaware 2005
#> 22599 Massachusetts New York 2005
#> 22600 Minnesota Mississippi 2005
#> 22601 Colorado New Jersey 2005
#> 22602 Maryland New Hampshire 2005
#> 22603 Massachusetts Connecticut 2005
#> 22604 California Virginia 2005
#> 22605 Minnesota Illinois 2005
#> 22606 Minnesota Washington 2005
#> 22607 Illinois Massachusetts 2005
#> 22608 Idaho Texas 2005
#> 22609 Idaho Michigan 2005
#> 22610 Florida Oklahoma 2005
#> 22611 Connecticut Minnesota 2005
#> 22612 Louisiana Indiana 2005
#> 22613 Colorado Idaho 2005
#> 22614 Florida Utah 2005
#> 22615 Connecticut Colorado 2005
#> 22616 Rhode Island New Mexico 2005
#> 22617 Wisconsin California 2005
#> 22618 Colorado Oregon 2005
#> 22619 Massachusetts Rhode Island 2005
#> 22620 Minnesota Ohio 2005
#> 22621 Connecticut Pennsylvania 2005
#> 22622 Iowa Wisconsin 2005
#> 22623 North Dakota Kentucky 2005
#> 22624 Colorado Arizona 2005
#> 22625 Oregon Montana 2005
#> 22626 Michigan Maine 2005
#> 22627 Connecticut South Carolina 2005
#> 22628 Oregon Connecticut 2005
#> 22629 Utah Arkansas 2005
#> 22630 Colorado North Dakota 2005
#> 22631 Oregon Vermont 2005
#> 22632 Georgia Florida 2005
#> 22633 Louisiana Kansas 2005
#> 22634 New York Iowa 2005
#> 22635 Florida Maryland 2005
#> 22636 Colorado Louisiana 2005
#> 22637 Wisconsin Massachusetts 2005
#> 22638 Florida Tennessee 2005
#> 22639 Connecticut California 2005
#> 22640 Connecticut Virginia 2005
#> 22641 Connecticut New Hampshire 2005
#> 22642 Michigan Nebraska 2005
#> 22643 Nevada New Mexico 2005
#> 22644 Delaware South Dakota 2005
#> 22645 Massachusetts West Virginia 2005
#> 22646 Minnesota Nevada 2005
#> 22647 Illinois Minnesota 2005
#> 22648 New Mexico North Carolina 2005
#> 22649 Maine Arizona 2005
#> 22650 California Alabama 2005
#> 22651 California Mississippi 2005
#> 22652 Oregon Kansas 2005
#> 22653 Idaho Washington 2005
#> 22654 Colorado Missouri 2005
#> 22655 Illinois Oklahoma 2005
#> 22656 Colorado Hawaii 2005
#> 22657 West Virginia Georgia 2005
#> 22658 Florida Ohio 2005
#> 22659 Rhode Island New York 2005
#> 22660 Georgia Indiana 2005
#> 22661 Kentucky Arkansas 2005
#> 22662 Connecticut North Carolina 2005
#> 22663 Connecticut Florida 2005
#> 22664 Connecticut Maine 2005
#> 22665 Connecticut Iowa 2005
#> 22666 California Tennessee 2005
#> 22667 Alabama Montana 2005
#> 22668 Connecticut New Jersey 2005
#> 22669 Florida Colorado 2005
#> 22670 Oregon Alaska 2005
#> 22671 Montana Wyoming 2005
#> 22672 Wisconsin Minnesota 2005
#> 22673 Rhode Island Kentucky 2005
#> 22674 Colorado South Carolina 2005
#> 22675 Louisiana Nevada 2005
#> 22676 Maine Pennsylvania 2005
#> 22677 Maryland Illinois 2005
#> 22678 Illinois Connecticut 2005
#> 22679 Texas Massachusetts 2005
#> 22680 Arizona Utah 2005
#> 22681 Connecticut Washington 2005
#> 22682 Hawaii North Dakota 2005
#> 22683 Illinois Georgia 2005
#> 22684 Kentucky Michigan 2005
#> 22685 New York Maryland 2005
#> 22686 Idaho Delaware 2005
#> 22687 New Mexico Iowa 2005
#> 22688 Oregon Oklahoma 2005
#> 22689 Connecticut Vermont 2005
#> 22690 Hawaii Oregon 2005
#> 22691 Hawaii Idaho 2005
#> 22692 Iowa Texas 2005
#> 22693 Louisiana Virginia 2005
#> 22694 Wisconsin Maine 2005
#> 22695 Kansas Mississippi 2005
#> 22696 Florida New York 2005
#> 22697 Illinois California 2005
#> 22698 Idaho Colorado 2005
#> 22699 Colorado Wisconsin 2005
#> 22700 Iowa Nebraska 2005
#> 22701 Oregon South Dakota 2005
#> 22702 New York Nevada 2005
#> 22703 Minnesota New Hampshire 2005
#> 22704 Michigan Florida 2005
#> 22705 Minnesota Rhode Island 2005
#> 22706 Florida Virginia 2005
#> 22707 New York Hawaii 2005
#> 22708 Louisiana Alabama 2005
#> 22709 North Dakota Nebraska 2005
#> 22710 Colorado Montana 2005
#> 22711 Rhode Island Delaware 2005
#> 22712 Massachusetts South Carolina 2005
#> 22713 Wisconsin Indiana 2005
#> 22714 Illinois Missouri 2005
#> 22715 Wisconsin Maryland 2005
#> 22716 Minnesota Oregon 2005
#> 22717 Florida Pennsylvania 2005
#> 22718 Idaho Ohio 2005
#> 22719 Rhode Island Louisiana 2005
#> 22720 Florida New Jersey 2005
#> 22721 Montana Idaho 2005
#> 22722 Utah Illinois 2005
#> 22723 South Carolina North Carolina 2005
#> 22724 Utah Kansas 2005
#> 22725 Minnesota Arkansas 2005
#> 22726 North Dakota New Mexico 2005
#> 22727 Arizona Oregon 2005
#> 22728 Louisiana North Dakota 2005
#> 22729 Nevada Minnesota 2005
#> 22730 New York Connecticut 2005
#> 22731 Oregon New York 2005
#> 22732 Tennessee Florida 2005
#> 22733 Georgia Kentucky 2005
#> 22734 Colorado Vermont 2005
#> 22735 Connecticut Tennessee 2005
#> 22736 Rhode Island Wyoming 2005
#> 22737 Louisiana Missouri 2005
#> 22738 Iowa Colorado 2005
#> 22739 Maryland Maine 2005
#> 22740 Illinois West Virginia 2005
#> 22741 Ohio Texas 2005
#> 22742 Florida Massachusetts 2005
#> 22743 Ohio Wisconsin 2005
#> 22744 Nevada Utah 2005
#> 22745 New York New Mexico 2005
#> 22746 Nevada Rhode Island 2005
#> 22747 New York Texas 2005
#> 22748 New Jersey Washington 2005
#> 22749 North Dakota Louisiana 2005
#> 22750 Idaho Iowa 2005
#> 22751 Utah Alaska 2005
#> 22752 Maine Maryland 2005
#> 22753 Missouri Ohio 2005
#> 22754 Iowa Hawaii 2005
#> 22755 Texas Mississippi 2005
#> 22756 Michigan Arizona 2005
#> 22757 Florida Rhode Island 2005
#> 22758 Virginia California 2005
#> 22759 Minnesota Delaware 2005
#> 22760 New York North Carolina 2005
#> 22761 Oklahoma North Dakota 2005
#> 22762 Colorado Michigan 2005
#> 22763 Pennsylvania Indiana 2005
#> 22764 Illinois New York 2005
#> 22765 Connecticut Oregon 2005
#> 22766 Connecticut Kansas 2005
#> 22767 Hawaii Florida 2005
#> 22768 New York Nebraska 2005
#> 22769 Minnesota New Jersey 2005
#> 22770 Utah Oklahoma 2005
#> 22771 Massachusetts Georgia 2005
#> 22772 Illinois Rhode Island 2005
#> 22773 North Dakota South Dakota 2005
#> 22774 Colorado Minnesota 2005
#> 22775 Georgia New York 2005
#> 22776 New Mexico Arkansas 2005
#> 22777 Oregon Idaho 2005
#> 22778 Arkansas California 2005
#> 22779 New Jersey Massachusetts 2005
#> 22780 Oregon Wyoming 2005
#> 22781 New Mexico New Hampshire 2005
#> 22782 Nebraska Idaho 2005
#> 22783 Utah Tennessee 2005
#> 22784 Idaho South Carolina 2005
#> 22785 Connecticut Wisconsin 2005
#> 22786 Maine Montana 2005
#> 22787 Illinois Iowa 2005
#> 22788 Illinois Washington 2005
#> 22789 Georgia Arkansas 2005
#> 22790 Texas Kentucky 2005
#> 22791 Washington Connecticut 2005
#> 22792 Oregon California 2005
#> 22793 New Jersey Louisiana 2005
#> 22794 Maine North Carolina 2005
#> 22795 Michigan Utah 2005
#> 22796 Tennessee Missouri 2005
#> 22797 New Mexico Maine 2005
#> 22798 Florida Indiana 2005
#> 22799 Montana Alaska 2005
#> 22800 Maine North Dakota 2005
#> 22801 Utah Indiana 2005
#> 22802 Iowa Pennsylvania 2005
#> 22803 Minnesota West Virginia 2005
#> 22804 California Kentucky 2005
#> 22805 Pennsylvania Texas 2005
#> 22806 Idaho New Mexico 2005
#> 22807 Utah Maryland 2005
#> 22808 Oklahoma Kansas 2005
#> 22809 West Virginia Vermont 2005
#> 22810 New York Florida 2005
#> 22811 Florida Iowa 2005
#> 22812 Oregon Missouri 2005
#> 22813 Kentucky Colorado 2005
#> 22814 Oregon Arizona 2005
#> 22815 Maryland Nevada 2005
#> 22816 New York Ohio 2005
#> 22817 Michigan Illinois 2005
#> 22818 Montana Florida 2005
#> 22819 Massachusetts Pennsylvania 2005
#> 22820 Kentucky Ohio 2005
#> 22821 Michigan California 2005
#> 22822 Virginia South Carolina 2005
#> 22823 New Mexico Alabama 2005
#> 22824 Nevada Montana 2005
#> 22825 Texas Virginia 2005
#> 22826 Utah New Jersey 2005
#> 22827 Texas Oklahoma 2005
#> 22828 Kentucky Louisiana 2005
#> 22829 Oregon Ohio 2005
#> 22830 Utah Mississippi 2005
#> 22831 Washington Colorado 2005
#> 22832 Nevada Hawaii 2005
#> 22833 Tennessee Georgia 2005
#> 22834 New Mexico Oklahoma 2005
#> 22835 Michigan Tennessee 2005
#> 22836 Massachusetts Texas 2005
#> 22837 Louisiana South Dakota 2005
#> 22838 Wisconsin Rhode Island 2005
#> 22839 Maine New Hampshire 2005
#> 22840 Hawaii Virginia 2005
#> 22841 South Dakota Nebraska 2005
#> 22842 Maryland West Virginia 2005
#> 22843 New Mexico Kansas 2005
#> 22844 Utah South Carolina 2005
#> 22845 Florida Michigan 2005
#> 22846 Maryland Washington 2005
#> 22847 Kentucky North Carolina 2005
#> 22848 Washington Illinois 2005
#> 22849 Utah Arizona 2005
#> 22850 Georgia New Hampshire 2005
#> 22851 Connecticut Maryland 2005
#> 22852 New Mexico Mississippi 2005
#> 22853 Illinois Michigan 2005
#> 22854 South Carolina Wisconsin 2005
#> 22855 Virginia Hawaii 2005
#> 22856 Hawaii Pennsylvania 2005
#> 22857 South Dakota Florida 2005
#> 22858 Wisconsin Colorado 2005
#> 22859 Wisconsin New York 2005
#> 22860 Georgia Nebraska 2005
#> 22861 Minnesota Wisconsin 2005
#> 22862 Kansas Arizona 2005
#> 22863 Texas Delaware 2005
#> 22864 Washington Oregon 2005
#> 22865 Florida Nevada 2005
#> 22866 Utah South Dakota 2005
#> 22867 Oklahoma Connecticut 2005
#> 22868 Delaware Alabama 2005
#> 22869 Georgia Mississippi 2005
#> 22870 Rhode Island Minnesota 2005
#> 22871 Georgia Virginia 2005
#> 22872 Utah Louisiana 2005
#> 22873 Ohio Utah 2005
#> 22874 Delaware Massachusetts 2005
#> 22875 Louisiana New Mexico 2005
#> 22876 Illinois Vermont 2005
#> 22877 New York Delaware 2005
#> 22878 Montana Georgia 2005
#> 22879 Oregon Michigan 2005
#> 22880 Maine Iowa 2005
#> 22881 Hawaii Alaska 2005
#> 22882 Maryland Massachusetts 2005
#> 22883 Washington Montana 2005
#> 22884 New York Idaho 2005
#> 22885 Tennessee Kentucky 2005
#> 22886 Hawaii North Carolina 2005
#> 22887 Alaska New York 2005
#> 22888 Texas Tennessee 2005
#> 22889 Georgia Arizona 2005
#> 22890 South Carolina Wyoming 2005
#> 22891 North Carolina Colorado 2005
#> 22892 Missouri Mississippi 2005
#> 22893 North Carolina Georgia 2005
#> 22894 Rhode Island Florida 2005
#> 22895 Vermont California 2005
#> 22896 South Carolina Arkansas 2005
#> 22897 Connecticut Illinois 2005
#> 22898 Minnesota Maine 2005
#> 22899 Montana New Jersey 2005
#> 22900 Illinois Maryland 2005
#> 22901 Alaska Nevada 2005
#> 22902 Kentucky West Virginia 2005
#> 22903 South Dakota Idaho 2005
#> 22904 Massachusetts Indiana 2005
#> 22905 Montana Minnesota 2005
#> 22906 Connecticut New York 2005
#> 22907 Arizona Missouri 2005
#> 22908 Indiana Ohio 2005
#> 22909 Indiana New Jersey 2005
#> 22910 Ohio Kansas 2005
#> 22911 Ohio Rhode Island 2005
#> 22912 Connecticut Rhode Island 2005
#> 22913 New Jersey Alaska 2005
#> 22914 Tennessee Texas 2005
#> 22915 Rhode Island California 2005
#> 22916 Washington California 2005
#> 22917 Florida Nebraska 2005
#> 22918 Ohio Tennessee 2005
#> 22919 Maryland New Mexico 2005
#> 22920 Wisconsin Oregon 2005
#> 22921 Idaho Missouri 2005
#> 22922 North Carolina Maryland 2005
#> 22923 Maryland North Carolina 2005
#> 22924 Michigan Wyoming 2005
#> 22925 Washington Arizona 2005
#> 22926 Kansas Hawaii 2005
#> 22927 Louisiana Montana 2005
#> 22928 Texas Connecticut 2005
#> 22929 North Carolina South Carolina 2005
#> 22930 Wisconsin Vermont 2005
#> 22931 Washington North Dakota 2005
#> 22932 Kentucky Pennsylvania 2005
#> 22933 Utah Georgia 2005
#> 22934 Kentucky Utah 2005
#> 22935 Washington Ohio 2005
#> 22936 New York Kansas 2005
#> 22937 Connecticut Louisiana 2005
#> 22938 Massachusetts Maine 2005
#> 22939 Colorado Alaska 2005
#> 22940 Hawaii Washington 2005
#> 22941 Illinois Idaho 2005
#> 22942 Kansas New Mexico 2005
#> 22943 Texas Florida 2005
#> 22944 Illinois Hawaii 2005
#> 22945 South Carolina Nevada 2005
#> 22946 Georgia Oklahoma 2005
#> 22947 Colorado Texas 2005
#> 22948 Alaska North Carolina 2005
#> 22949 Oregon Wisconsin 2005
#> 22950 Pennsylvania Rhode Island 2005
#> 22951 Michigan Wisconsin 2005
#> 22952 Illinois New Mexico 2005
#> 22953 Connecticut Alabama 2005
#> 22954 South Carolina Illinois 2005
#> 22955 Montana Washington 2005
#> 22956 Rhode Island Kansas 2005
#> 22957 Arkansas Connecticut 2005
#> 22958 Hawaii Delaware 2005
#> 22959 Montana California 2005
#> 22960 Tennessee Massachusetts 2005
#> 22961 Kansas Wisconsin 2005
#> 22962 Mississippi New Mexico 2005
#> 22963 Washington North Carolina 2005
#> 22964 Georgia West Virginia 2005
#> 22965 Kentucky New York 2005
#> 22966 Wisconsin Delaware 2005
#> 22967 Ohio Colorado 2005
#> 22968 Washington Missouri 2005
#> 22969 New York Missouri 2005
#> 22970 Missouri Michigan 2005
#> 22971 Missouri Iowa 2005
#> 22972 Mississippi Missouri 2005
#> 22973 Texas Washington 2005
#> 22974 California West Virginia 2005
#> 22975 Maryland Montana 2005
#> 22976 Tennessee Illinois 2005
#> 22977 Indiana South Dakota 2005
#> 22978 Utah California 2005
#> 22979 Kansas Wyoming 2005
#> 22980 Minnesota North Dakota 2005
#> 22981 Oklahoma California 2005
#> 22982 Colorado Maryland 2005
#> 22983 Hawaii Iowa 2005
#> 22984 Hawaii Connecticut 2005
#> 22985 Illinois Alabama 2005
#> 22986 Delaware Minnesota 2005
#> 22987 Maine Hawaii 2005
#> 22988 New Mexico Virginia 2005
#> 22989 Illinois South Dakota 2005
#> 22990 New Mexico Vermont 2005
#> 22991 Wisconsin Michigan 2005
#> 22992 Iowa Nevada 2005
#> 22993 New Hampshire New York 2005
#> 22994 Washington Massachusetts 2005
#> 22995 New Jersey Delaware 2005
#> 22996 Illinois Arizona 2005
#> 22997 Utah Idaho 2005
#> 22998 Colorado West Virginia 2005
#> 22999 Tennessee Maryland 2005
#> 23000 Wyoming North Dakota 2005
#> 23001 California Oregon 2006
#> 23002 California Maryland 2006
#> 23003 California Maine 2006
#> 23004 California Montana 2006
#> 23005 California New Mexico 2006
#> 23006 Florida Arizona 2006
#> 23007 California Colorado 2006
#> 23008 California Texas 2006
#> 23009 California Illinois 2006
#> 23010 California New Jersey 2006
#> 23011 California Nevada 2006
#> 23012 California Washington 2006
#> 23013 California Florida 2006
#> 23014 Oregon Kentucky 2006
#> 23015 California Indiana 2006
#> 23016 California Delaware 2006
#> 23017 California Nebraska 2006
#> 23018 California Ohio 2006
#> 23019 California North Carolina 2006
#> 23020 California Missouri 2006
#> 23021 California Georgia 2006
#> 23022 California Minnesota 2006
#> 23023 California Vermont 2006
#> 23024 Minnesota Virginia 2006
#> 23025 California New Hampshire 2006
#> 23026 California South Dakota 2006
#> 23027 Oregon Tennessee 2006
#> 23028 Minnesota Iowa 2006
#> 23029 California North Dakota 2006
#> 23030 Minnesota South Carolina 2006
#> 23031 California Arkansas 2006
#> 23032 California Pennsylvania 2006
#> 23033 California Rhode Island 2006
#> 23034 Florida Utah 2006
#> 23035 California Kansas 2006
#> 23036 Florida Mississippi 2006
#> 23037 California Connecticut 2006
#> 23038 Florida Louisiana 2006
#> 23039 California New York 2006
#> 23040 Minnesota Alabama 2006
#> 23041 California Alaska 2006
#> 23042 Minnesota Oklahoma 2006
#> 23043 California Michigan 2006
#> 23044 California Massachusetts 2006
#> 23045 California Idaho 2006
#> 23046 California Hawaii 2006
#> 23047 Washington Wisconsin 2006
#> 23048 Colorado Wyoming 2006
#> 23049 Massachusetts California 2006
#> 23050 Florida West Virginia 2006
#> 23051 Oregon Minnesota 2006
#> 23052 Connecticut Ohio 2006
#> 23053 Florida Georgia 2006
#> 23054 California Oklahoma 2006
#> 23055 Florida Texas 2006
#> 23056 Louisiana Indiana 2006
#> 23057 Florida New Jersey 2006
#> 23058 Minnesota Arizona 2006
#> 23059 Florida Illinois 2006
#> 23060 Texas New Mexico 2006
#> 23061 Idaho Utah 2006
#> 23062 Rhode Island Wisconsin 2006
#> 23063 Kansas Virginia 2006
#> 23064 Florida Connecticut 2006
#> 23065 California Louisiana 2006
#> 23066 Minnesota California 2006
#> 23067 Florida Missouri 2006
#> 23068 Florida Washington 2006
#> 23069 Minnesota North Dakota 2006
#> 23070 Oregon Delaware 2006
#> 23071 Minnesota Kansas 2006
#> 23072 Florida South Carolina 2006
#> 23073 California Iowa 2006
#> 23074 Minnesota Nebraska 2006
#> 23075 Florida Arkansas 2006
#> 23076 Florida North Carolina 2006
#> 23077 Minnesota Florida 2006
#> 23078 Washington Alaska 2006
#> 23079 Oregon Maine 2006
#> 23080 Oregon Maryland 2006
#> 23081 New York Michigan 2006
#> 23082 Rhode Island Idaho 2006
#> 23083 New York Oregon 2006
#> 23084 Oregon Rhode Island 2006
#> 23085 Colorado South Dakota 2006
#> 23086 Minnesota Colorado 2006
#> 23087 Florida Alabama 2006
#> 23088 Washington Pennsylvania 2006
#> 23089 Florida Kentucky 2006
#> 23090 Massachusetts West Virginia 2006
#> 23091 Hawaii Montana 2006
#> 23092 Virginia Nevada 2006
#> 23093 Massachusetts Vermont 2006
#> 23094 Massachusetts Hawaii 2006
#> 23095 Minnesota Wyoming 2006
#> 23096 Connecticut Massachusetts 2006
#> 23097 Minnesota Tennessee 2006
#> 23098 Massachusetts New York 2006
#> 23099 California Mississippi 2006
#> 23100 Massachusetts New Jersey 2006
#> 23101 Illinois Delaware 2006
#> 23102 Maryland New Hampshire 2006
#> 23103 Massachusetts Connecticut 2006
#> 23104 Florida Virginia 2006
#> 23105 Minnesota Washington 2006
#> 23106 Washington Indiana 2006
#> 23107 Minnesota Illinois 2006
#> 23108 Idaho Texas 2006
#> 23109 Minnesota New Mexico 2006
#> 23110 Colorado Montana 2006
#> 23111 Colorado Oregon 2006
#> 23112 Illinois Oklahoma 2006
#> 23113 Massachusetts Rhode Island 2006
#> 23114 Colorado Idaho 2006
#> 23115 Illinois Massachusetts 2006
#> 23116 Wisconsin California 2006
#> 23117 New York Minnesota 2006
#> 23118 California Arizona 2006
#> 23119 Connecticut Colorado 2006
#> 23120 North Dakota Kentucky 2006
#> 23121 Minnesota Arkansas 2006
#> 23122 California Utah 2006
#> 23123 Florida Ohio 2006
#> 23124 Minnesota West Virginia 2006
#> 23125 Iowa Wisconsin 2006
#> 23126 New York Iowa 2006
#> 23127 Connecticut South Carolina 2006
#> 23128 Michigan Maine 2006
#> 23129 Oregon Connecticut 2006
#> 23130 Florida Kansas 2006
#> 23131 Florida Pennsylvania 2006
#> 23132 Colorado Michigan 2006
#> 23133 Utah North Dakota 2006
#> 23134 Florida Maryland 2006
#> 23135 Georgia Florida 2006
#> 23136 Oregon Vermont 2006
#> 23137 Indiana Tennessee 2006
#> 23138 Michigan Nebraska 2006
#> 23139 Colorado Louisiana 2006
#> 23140 Wisconsin Massachusetts 2006
#> 23141 North Dakota South Dakota 2006
#> 23142 Connecticut California 2006
#> 23143 West Virginia Georgia 2006
#> 23144 Idaho Virginia 2006
#> 23145 Rhode Island North Carolina 2006
#> 23146 Minnesota Mississippi 2006
#> 23147 Kentucky Arkansas 2006
#> 23148 Connecticut Washington 2006
#> 23149 Minnesota New Jersey 2006
#> 23150 California Alabama 2006
#> 23151 New York Nevada 2006
#> 23152 Florida Oklahoma 2006
#> 23153 Illinois Minnesota 2006
#> 23154 Connecticut New Hampshire 2006
#> 23155 Connecticut Iowa 2006
#> 23156 Georgia Indiana 2006
#> 23157 Minnesota Ohio 2006
#> 23158 Rhode Island New York 2006
#> 23159 Illinois Hawaii 2006
#> 23160 Illinois Missouri 2006
#> 23161 Colorado New Mexico 2006
#> 23162 Connecticut Florida 2006
#> 23163 Florida Massachusetts 2006
#> 23164 Idaho South Carolina 2006
#> 23165 Kentucky Michigan 2006
#> 23166 Iowa Texas 2006
#> 23167 Wisconsin Maine 2006
#> 23168 Massachusetts Kansas 2006
#> 23169 Idaho Wyoming 2006
#> 23170 California Virginia 2006
#> 23171 Florida Colorado 2006
#> 23172 Hawaii Idaho 2006
#> 23173 Oregon Alaska 2006
#> 23174 Wisconsin Maryland 2006
#> 23175 Rhode Island Kentucky 2006
#> 23176 Illinois Connecticut 2006
#> 23177 Illinois Washington 2006
#> 23178 Minnesota Delaware 2006
#> 23179 Illinois Georgia 2006
#> 23180 Colorado Vermont 2006
#> 23181 Illinois California 2006
#> 23182 New York Pennsylvania 2006
#> 23183 New Mexico Iowa 2006
#> 23184 Louisiana Nevada 2006
#> 23185 South Carolina Missouri 2006
#> 23186 Hawaii North Dakota 2006
#> 23187 Hawaii Oregon 2006
#> 23188 Kentucky Minnesota 2006
#> 23189 Maine Montana 2006
#> 23190 Arizona Utah 2006
#> 23191 Colorado Arizona 2006
#> 23192 Kansas Mississippi 2006
#> 23193 Florida New York 2006
#> 23194 Iowa Indiana 2006
#> 23195 Minnesota New Hampshire 2006
#> 23196 Florida Rhode Island 2006
#> 23197 Delaware South Dakota 2006
#> 23198 Idaho Colorado 2006
#> 23199 Connecticut Tennessee 2006
#> 23200 Colorado Wisconsin 2006
#> 23201 South Carolina North Carolina 2006
#> 23202 Michigan Illinois 2006
#> 23203 Colorado Minnesota 2006
#> 23204 Iowa Nebraska 2006
#> 23205 Michigan Florida 2006
#> 23206 New York Maryland 2006
#> 23207 Nebraska Pennsylvania 2006
#> 23208 Maine Oregon 2006
#> 23209 Rhode Island New Mexico 2006
#> 23210 Minnesota Hawaii 2006
#> 23211 Massachusetts Wyoming 2006
#> 23212 Indiana South Carolina 2006
#> 23213 Utah Arkansas 2006
#> 23214 Ohio Texas 2006
#> 23215 Louisiana Alabama 2006
#> 23216 North Dakota Nebraska 2006
#> 23217 Maryland Maine 2006
#> 23218 Louisiana Kansas 2006
#> 23219 Minnesota Nevada 2006
#> 23220 Rhode Island Louisiana 2006
#> 23221 Connecticut Vermont 2006
#> 23222 Ohio Wisconsin 2006
#> 23223 New Jersey Washington 2006
#> 23224 Arizona Missouri 2006
#> 23225 Oregon Oklahoma 2006
#> 23226 Michigan Tennessee 2006
#> 23227 Minnesota Rhode Island 2006
#> 23228 New Mexico North Carolina 2006
#> 23229 Wisconsin Arizona 2006
#> 23230 Indiana Delaware 2006
#> 23231 Pennsylvania Ohio 2006
#> 23232 New York Connecticut 2006
#> 23233 Connecticut Virginia 2006
#> 23234 Georgia Kentucky 2006
#> 23235 Texas Utah 2006
#> 23236 Tennessee Florida 2006
#> 23237 New York Texas 2006
#> 23238 Utah Alaska 2006
#> 23239 Michigan Montana 2006
#> 23240 Maryland Illinois 2006
#> 23241 Montana Idaho 2006
#> 23242 Louisiana North Dakota 2006
#> 23243 Ohio West Virginia 2006
#> 23244 North Dakota Louisiana 2006
#> 23245 Idaho Iowa 2006
#> 23246 Hawaii Florida 2006
#> 23247 Washington North Dakota 2006
#> 23248 Connecticut Oregon 2006
#> 23249 Nevada Rhode Island 2006
#> 23250 Maine Maryland 2006
#> 23251 Hawaii New Mexico 2006
#> 23252 Utah New Jersey 2006
#> 23253 Oregon New York 2006
#> 23254 Connecticut Maine 2006
#> 23255 Oregon California 2006
#> 23256 Connecticut North Carolina 2006
#> 23257 New York Hawaii 2006
#> 23258 California Tennessee 2006
#> 23259 Iowa Colorado 2006
#> 23260 Utah Washington 2006
#> 23261 Louisiana South Dakota 2006
#> 23262 Michigan Arizona 2006
#> 23263 Rhode Island Nebraska 2006
#> 23264 Idaho Michigan 2006
#> 23265 Georgia Arkansas 2006
#> 23266 Illinois Iowa 2006
#> 23267 Virginia Indiana 2006
#> 23268 Michigan Nevada 2006
#> 23269 New York North Carolina 2006
#> 23270 Missouri Pennsylvania 2006
#> 23271 Oklahoma Kansas 2006
#> 23272 Massachusetts Georgia 2006
#> 23273 Georgia New York 2006
#> 23274 Wyoming Oklahoma 2006
#> 23275 Washington Illinois 2006
#> 23276 New York Delaware 2006
#> 23277 Illinois Rhode Island 2006
#> 23278 Kansas Hawaii 2006
#> 23279 Virginia California 2006
#> 23280 West Virginia Vermont 2006
#> 23281 Oregon Idaho 2006
#> 23282 Missouri South Carolina 2006
#> 23283 New Mexico Arkansas 2006
#> 23284 Arkansas California 2006
#> 23285 Oregon Montana 2006
#> 23286 New York Ohio 2006
#> 23287 New Jersey Massachusetts 2006
#> 23288 Washington Colorado 2006
#> 23289 Michigan Indiana 2006
#> 23290 Utah Mississippi 2006
#> 23291 Idaho Ohio 2006
#> 23292 Nevada Utah 2006
#> 23293 Idaho Delaware 2006
#> 23294 Nebraska Idaho 2006
#> 23295 Illinois New York 2006
#> 23296 Connecticut Wisconsin 2006
#> 23297 Ohio Virginia 2006
#> 23298 Hawaii Tennessee 2006
#> 23299 New York New Hampshire 2006
#> 23300 Texas Kentucky 2006
#> 23301 Washington Connecticut 2006
#> 23302 New Jersey Louisiana 2006
#> 23303 Tennessee Missouri 2006
#> 23304 Massachusetts New Mexico 2006
#> 23305 New York New Jersey 2006
#> 23306 Arkansas Montana 2006
#> 23307 Hawaii Arizona 2006
#> 23308 Texas Massachusetts 2006
#> 23309 Missouri Minnesota 2006
#> 23310 Montana Alaska 2006
#> 23311 Oregon Colorado 2006
#> 23312 Florida Nebraska 2006
#> 23313 Minnesota Indiana 2006
#> 23314 Tennessee Georgia 2006
#> 23315 California Kentucky 2006
#> 23316 Virginia Florida 2006
#> 23317 Pennsylvania Texas 2006
#> 23318 Utah Oklahoma 2006
#> 23319 Utah Maryland 2006
#> 23320 New York Florida 2006
#> 23321 New Mexico New Hampshire 2006
#> 23322 Florida Iowa 2006
#> 23323 North Carolina Michigan 2006
#> 23324 Texas South Carolina 2006
#> 23325 Alaska Nevada 2006
#> 23326 Utah South Dakota 2006
#> 23327 Montana Florida 2006
#> 23328 Michigan California 2006
#> 23329 Kentucky Ohio 2006
#> 23330 New Mexico Alabama 2006
#> 23331 Georgia New Jersey 2006
#> 23332 Massachusetts Missouri 2006
#> 23333 Oregon South Dakota 2006
#> 23334 Kentucky Louisiana 2006
#> 23335 Massachusetts Maine 2006
#> 23336 Illinois Vermont 2006
#> 23337 New Mexico Maine 2006
#> 23338 Massachusetts Texas 2006
#> 23339 Wisconsin Rhode Island 2006
#> 23340 Idaho Minnesota 2006
#> 23341 Georgia Colorado 2006
#> 23342 Wisconsin Oregon 2006
#> 23343 Hawaii North Carolina 2006
#> 23344 New York Wyoming 2006
#> 23345 Virginia Connecticut 2006
#> 23346 California West Virginia 2006
#> 23347 Louisiana Mississippi 2006
#> 23348 Utah Illinois 2006
#> 23349 Hawaii Virginia 2006
#> 23350 Connecticut Maryland 2006
#> 23351 Wisconsin Indiana 2006
#> 23352 Kentucky Pennsylvania 2006
#> 23353 South Carolina Wisconsin 2006
#> 23354 Virginia Hawaii 2006
#> 23355 Wisconsin Colorado 2006
#> 23356 Utah Kansas 2006
#> 23357 Washington California 2006
#> 23358 North Carolina South Carolina 2006
#> 23359 Wisconsin New York 2006
#> 23360 Kansas Iowa 2006
#> 23361 Missouri Michigan 2006
#> 23362 Mississippi West Virginia 2006
#> 23363 Louisiana Arizona 2006
#> 23364 Nebraska North Dakota 2006
#> 23365 Nevada Montana 2006
#> 23366 Delaware Alabama 2006
#> 23367 Georgia Mississippi 2006
#> 23368 Ohio Tennessee 2006
#> 23369 Michigan Utah 2006
#> 23370 Missouri Ohio 2006
#> 23371 Wisconsin Pennsylvania 2006
#> 23372 New Mexico Mississippi 2006
#> 23373 Delaware Massachusetts 2006
#> 23374 Kansas New Mexico 2006
#> 23375 Iowa Kansas 2006
#> 23376 Maryland Washington 2006
#> 23377 Utah Texas 2006
#> 23378 Texas North Carolina 2006
#> 23379 Montana Oregon 2006
#> 23380 Washington Montana 2006
#> 23381 Wisconsin Vermont 2006
#> 23382 Maine New Hampshire 2006
#> 23383 New York Idaho 2006
#> 23384 New Mexico Connecticut 2006
#> 23385 Mississippi Missouri 2006
#> 23386 Mississippi New Mexico 2006
#> 23387 Hawaii Alaska 2006
#> 23388 Hawaii Washington 2006
#> 23389 Delaware Wyoming 2006
#> 23390 Maryland New Mexico 2006
#> 23391 Michigan Louisiana 2006
#> 23392 Maine North Dakota 2006
#> 23393 Oklahoma West Virginia 2006
#> 23394 Utah Michigan 2006
#> 23395 Alaska New York 2006
#> 23396 North Carolina Georgia 2006
#> 23397 Florida Nevada 2006
#> 23398 Missouri Iowa 2006
#> 23399 Utah Connecticut 2006
#> 23400 Massachusetts Illinois 2006
#> 23401 Louisiana New Mexico 2006
#> 23402 South Carolina Arkansas 2006
#> 23403 Idaho Arizona 2006
#> 23404 Connecticut Rhode Island 2006
#> 23405 Missouri Maryland 2006
#> 23406 Connecticut Pennsylvania 2006
#> 23407 Vermont California 2006
#> 23408 South Dakota Idaho 2006
#> 23409 Arkansas Minnesota 2006
#> 23410 Minnesota Maine 2006
#> 23411 Hawaii Delaware 2006
#> 23412 Texas Virginia 2006
#> 23413 Louisiana Montana 2006
#> 23414 Utah South Carolina 2006
#> 23415 Ohio Rhode Island 2006
#> 23416 New Jersey Alaska 2006
#> 23417 Washington Kansas 2006
#> 23418 Kansas Wyoming 2006
#> 23419 Pennsylvania Wisconsin 2006
#> 23420 Louisiana New Jersey 2006
#> 23421 Georgia Nebraska 2006
#> 23422 Indiana Missouri 2006
#> 23423 Georgia New Hampshire 2006
#> 23424 Florida Oregon 2006
#> 23425 New York New Mexico 2006
#> 23426 Pennsylvania Indiana 2006
#> 23427 New Mexico Oklahoma 2006
#> 23428 Wyoming North Dakota 2006
#> 23429 Illinois Maryland 2006
#> 23430 Iowa Arizona 2006
#> 23431 Maryland New Jersey 2006
#> 23432 Minnesota Wisconsin 2006
#> 23433 New Hampshire West Virginia 2006
#> 23434 Utah Georgia 2006
#> 23435 Oregon Ohio 2006
#> 23436 Delaware Minnesota 2006
#> 23437 Colorado Alaska 2006
#> 23438 Hawaii Nevada 2006
#> 23439 Mississippi Tennessee 2006
#> 23440 New York Kansas 2006
#> 23441 Virginia North Carolina 2006
#> 23442 Washington Missouri 2006
#> 23443 Massachusetts Kentucky 2006
#> 23444 Colorado Texas 2006
#> 23445 Maryland California 2006
#> 23446 Maryland Montana 2006
#> 23447 Texas Oklahoma 2006
#> 23448 Montana Washington 2006
#> 23449 Georgia Oklahoma 2006
#> 23450 South Dakota Nebraska 2006
#> 23451 Connecticut Kansas 2006
#> 23452 Oregon Georgia 2006
#> 23453 Illinois North Carolina 2006
#> 23454 Oregon Wisconsin 2006
#> 23455 Virginia Colorado 2006
#> 23456 South Carolina Illinois 2006
#> 23457 Hawaii Utah 2006
#> 23458 Illinois Colorado 2006
#> 23459 Connecticut Alabama 2006
#> 23460 Louisiana Texas 2006
#> 23461 Washington North Carolina 2006
#> 23462 Maine Rhode Island 2006
#> 23463 Vermont Iowa 2006
#> 23464 Maryland Massachusetts 2006
#> 23465 North Carolina Colorado 2006
#> 23466 Illinois Virginia 2006
#> 23467 California Wyoming 2006
#> 23468 Tennessee Kentucky 2006
#> 23469 Kansas Wisconsin 2006
#> 23470 Rhode Island Washington 2006
#> 23471 Illinois Pennsylvania 2006
#> 23472 Massachusetts Florida 2006
#> 23473 Kentucky New York 2006
#> 23474 New Mexico Delaware 2006
#> 23475 Tennessee South Carolina 2006
#> 23476 Arizona Louisiana 2006
#> 23477 Texas Delaware 2006
#> 23478 Massachusetts Oklahoma 2006
#> 23479 Wisconsin Tennessee 2006
#> 23480 Ohio South Dakota 2006
#> 23481 Montana California 2006
#> 23482 New York Missouri 2006
#> 23483 Montana Wyoming 2006
#> 23484 Florida Michigan 2006
#> 23485 South Carolina Nevada 2006
#> 23486 Delaware North Dakota 2006
#> 23487 Wisconsin Michigan 2006
#> 23488 Oklahoma California 2006
#> 23489 Hawaii Iowa 2006
#> 23490 Montana Hawaii 2006
#> 23491 Virginia New Hampshire 2006
#> 23492 Indiana South Dakota 2006
#> 23493 Colorado Maryland 2006
#> 23494 South Dakota Vermont 2006
#> 23495 Maine Hawaii 2006
#> 23496 North Carolina Wisconsin 2006
#> 23497 Colorado North Dakota 2006
#> 23498 Kentucky South Carolina 2006
#> 23499 Illinois Alabama 2006
#> 23500 Nebraska Ohio 2006
#> 23501 California Oregon 2007
#> 23502 California Maine 2007
#> 23503 Florida Arizona 2007
#> 23504 California Colorado 2007
#> 23505 California Montana 2007
#> 23506 California New Mexico 2007
#> 23507 California New Jersey 2007
#> 23508 California Maryland 2007
#> 23509 California Washington 2007
#> 23510 California Illinois 2007
#> 23511 California Texas 2007
#> 23512 California Nevada 2007
#> 23513 California Florida 2007
#> 23514 Oregon Kentucky 2007
#> 23515 California Nebraska 2007
#> 23516 California Ohio 2007
#> 23517 California Indiana 2007
#> 23518 Florida Georgia 2007
#> 23519 California Delaware 2007
#> 23520 California Vermont 2007
#> 23521 California New Hampshire 2007
#> 23522 California North Carolina 2007
#> 23523 California Missouri 2007
#> 23524 California Minnesota 2007
#> 23525 Florida South Carolina 2007
#> 23526 Oregon Tennessee 2007
#> 23527 California Rhode Island 2007
#> 23528 Minnesota Virginia 2007
#> 23529 California South Dakota 2007
#> 23530 Florida Mississippi 2007
#> 23531 California Kansas 2007
#> 23532 Minnesota Iowa 2007
#> 23533 Florida Utah 2007
#> 23534 California Pennsylvania 2007
#> 23535 California Arkansas 2007
#> 23536 Minnesota Alabama 2007
#> 23537 California North Dakota 2007
#> 23538 California Connecticut 2007
#> 23539 California Alaska 2007
#> 23540 Florida Louisiana 2007
#> 23541 California New York 2007
#> 23542 California Hawaii 2007
#> 23543 Minnesota Oklahoma 2007
#> 23544 California Michigan 2007
#> 23545 California Idaho 2007
#> 23546 Washington Wisconsin 2007
#> 23547 California Massachusetts 2007
#> 23548 Colorado Wyoming 2007
#> 23549 Minnesota California 2007
#> 23550 Oregon West Virginia 2007
#> 23551 Connecticut Ohio 2007
#> 23552 Oregon Minnesota 2007
#> 23553 Florida New Jersey 2007
#> 23554 California Oklahoma 2007
#> 23555 California Georgia 2007
#> 23556 Louisiana Indiana 2007
#> 23557 Minnesota Arizona 2007
#> 23558 Florida Texas 2007
#> 23559 Florida Connecticut 2007
#> 23560 Idaho Utah 2007
#> 23561 Ohio Virginia 2007
#> 23562 Florida Illinois 2007
#> 23563 Texas New Mexico 2007
#> 23564 Massachusetts California 2007
#> 23565 Florida Washington 2007
#> 23566 Florida Missouri 2007
#> 23567 Oregon Delaware 2007
#> 23568 Minnesota Kansas 2007
#> 23569 Minnesota Nebraska 2007
#> 23570 California Louisiana 2007
#> 23571 Rhode Island Wisconsin 2007
#> 23572 Minnesota South Carolina 2007
#> 23573 Minnesota North Dakota 2007
#> 23574 California Iowa 2007
#> 23575 Florida North Carolina 2007
#> 23576 Oregon Maine 2007
#> 23577 Minnesota Colorado 2007
#> 23578 Florida Alabama 2007
#> 23579 Florida Arkansas 2007
#> 23580 Florida Kentucky 2007
#> 23581 Minnesota Florida 2007
#> 23582 Washington Alaska 2007
#> 23583 Oregon Rhode Island 2007
#> 23584 Oregon Maryland 2007
#> 23585 Minnesota Idaho 2007
#> 23586 Minnesota Michigan 2007
#> 23587 Colorado South Dakota 2007
#> 23588 Washington Pennsylvania 2007
#> 23589 Connecticut Oregon 2007
#> 23590 Florida West Virginia 2007
#> 23591 Connecticut Vermont 2007
#> 23592 Hawaii Montana 2007
#> 23593 Illinois Massachusetts 2007
#> 23594 Minnesota Nevada 2007
#> 23595 Minnesota Wyoming 2007
#> 23596 Minnesota Mississippi 2007
#> 23597 Massachusetts Hawaii 2007
#> 23598 Florida Tennessee 2007
#> 23599 Maryland New Hampshire 2007
#> 23600 Illinois Delaware 2007
#> 23601 California Virginia 2007
#> 23602 Massachusetts New York 2007
#> 23603 Massachusetts New Jersey 2007
#> 23604 Minnesota Washington 2007
#> 23605 Washington Indiana 2007
#> 23606 Massachusetts Connecticut 2007
#> 23607 Minnesota Illinois 2007
#> 23608 California Arizona 2007
#> 23609 Florida Oklahoma 2007
#> 23610 Connecticut Massachusetts 2007
#> 23611 Minnesota New Mexico 2007
#> 23612 Colorado Montana 2007
#> 23613 California Utah 2007
#> 23614 Oregon Vermont 2007
#> 23615 North Dakota Kentucky 2007
#> 23616 Idaho Texas 2007
#> 23617 Connecticut Colorado 2007
#> 23618 Wisconsin California 2007
#> 23619 Minnesota Arkansas 2007
#> 23620 Washington Oregon 2007
#> 23621 Connecticut South Carolina 2007
#> 23622 Massachusetts Rhode Island 2007
#> 23623 Colorado Ohio 2007
#> 23624 Connecticut Minnesota 2007
#> 23625 Florida Nevada 2007
#> 23626 Iowa Wisconsin 2007
#> 23627 California Tennessee 2007
#> 23628 New York Iowa 2007
#> 23629 Kentucky Michigan 2007
#> 23630 Michigan Maine 2007
#> 23631 Florida Kansas 2007
#> 23632 Tennessee Florida 2007
#> 23633 Oregon Connecticut 2007
#> 23634 Missouri Pennsylvania 2007
#> 23635 Florida Idaho 2007
#> 23636 Minnesota North Carolina 2007
#> 23637 Minnesota Louisiana 2007
#> 23638 Florida Nebraska 2007
#> 23639 Utah North Dakota 2007
#> 23640 Florida Maryland 2007
#> 23641 North Dakota South Dakota 2007
#> 23642 Wisconsin Massachusetts 2007
#> 23643 West Virginia Georgia 2007
#> 23644 Indiana Alabama 2007
#> 23645 Connecticut California 2007
#> 23646 Hawaii Virginia 2007
#> 23647 California Mississippi 2007
#> 23648 Minnesota New Jersey 2007
#> 23649 New York Florida 2007
#> 23650 Wisconsin Minnesota 2007
#> 23651 New York Michigan 2007
#> 23652 Kentucky Arkansas 2007
#> 23653 Colorado Hawaii 2007
#> 23654 Connecticut Washington 2007
#> 23655 Connecticut New Hampshire 2007
#> 23656 Illinois Oklahoma 2007
#> 23657 Idaho South Carolina 2007
#> 23658 Nebraska Idaho 2007
#> 23659 Illinois Pennsylvania 2007
#> 23660 Connecticut Iowa 2007
#> 23661 Florida Colorado 2007
#> 23662 Georgia Indiana 2007
#> 23663 Minnesota Missouri 2007
#> 23664 North Dakota Nebraska 2007
#> 23665 Pennsylvania New York 2007
#> 23666 Illinois West Virginia 2007
#> 23667 Wisconsin Vermont 2007
#> 23668 Colorado New Mexico 2007
#> 23669 Florida Massachusetts 2007
#> 23670 Hawaii Florida 2007
#> 23671 Rhode Island Kentucky 2007
#> 23672 Iowa Texas 2007
#> 23673 Wisconsin Maine 2007
#> 23674 Maine Ohio 2007
#> 23675 Idaho Wyoming 2007
#> 23676 Wisconsin Maryland 2007
#> 23677 Oregon Alaska 2007
#> 23678 Hawaii Oregon 2007
#> 23679 Louisiana Kansas 2007
#> 23680 Illinois Tennessee 2007
#> 23681 Illinois California 2007
#> 23682 Illinois Washington 2007
#> 23683 Florida Virginia 2007
#> 23684 Illinois Connecticut 2007
#> 23685 Illinois Georgia 2007
#> 23686 New Mexico Arizona 2007
#> 23687 Idaho Colorado 2007
#> 23688 New Mexico Iowa 2007
#> 23689 Illinois Minnesota 2007
#> 23690 Maine Montana 2007
#> 23691 Massachusetts North Dakota 2007
#> 23692 Kansas Mississippi 2007
#> 23693 Colorado Wisconsin 2007
#> 23694 Minnesota Delaware 2007
#> 23695 Montana Idaho 2007
#> 23696 Arizona Utah 2007
#> 23697 New York Ohio 2007
#> 23698 Connecticut North Carolina 2007
#> 23699 Iowa Indiana 2007
#> 23700 Minnesota New Hampshire 2007
#> 23701 Minnesota Rhode Island 2007
#> 23702 Louisiana South Dakota 2007
#> 23703 Illinois Missouri 2007
#> 23704 Michigan Illinois 2007
#> 23705 Kentucky West Virginia 2007
#> 23706 Indiana South Carolina 2007
#> 23707 Utah Oklahoma 2007
#> 23708 Texas Kentucky 2007
#> 23709 Maine Hawaii 2007
#> 23710 Hawaii New Mexico 2007
#> 23711 New York Maryland 2007
#> 23712 Maine Oregon 2007
#> 23713 Maine North Carolina 2007
#> 23714 Massachusetts Wyoming 2007
#> 23715 Florida Rhode Island 2007
#> 23716 Utah Arkansas 2007
#> 23717 Louisiana Nevada 2007
#> 23718 New Mexico Alabama 2007
#> 23719 Maryland Maine 2007
#> 23720 Connecticut Pennsylvania 2007
#> 23721 Nevada Minnesota 2007
#> 23722 Alaska North Dakota 2007
#> 23723 New York Connecticut 2007
#> 23724 Ohio Louisiana 2007
#> 23725 Maine Vermont 2007
#> 23726 Nevada Utah 2007
#> 23727 Idaho Virginia 2007
#> 23728 New Jersey Washington 2007
#> 23729 Connecticut Florida 2007
#> 23730 New York Texas 2007
#> 23731 Massachusetts Kansas 2007
#> 23732 Utah Alaska 2007
#> 23733 New York North Carolina 2007
#> 23734 Indiana Delaware 2007
#> 23735 North Carolina Missouri 2007
#> 23736 Kentucky New York 2007
#> 23737 New York Nevada 2007
#> 23738 Colorado Michigan 2007
#> 23739 Utah South Dakota 2007
#> 23740 Ohio Wisconsin 2007
#> 23741 Connecticut Tennessee 2007
#> 23742 New York Hawaii 2007
#> 23743 Kentucky Georgia 2007
#> 23744 Wisconsin Arizona 2007
#> 23745 Michigan Montana 2007
#> 23746 Maryland Illinois 2007
#> 23747 Delaware New York 2007
#> 23748 Nevada Nebraska 2007
#> 23749 Maine Maryland 2007
#> 23750 Kentucky Pennsylvania 2007
#> 23751 Rhode Island New Mexico 2007
#> 23752 Ohio Texas 2007
#> 23753 Nevada Rhode Island 2007
#> 23754 Oklahoma Kansas 2007
#> 23755 Idaho Iowa 2007
#> 23756 Washington Louisiana 2007
#> 23757 Kansas Oklahoma 2007
#> 23758 Connecticut Maine 2007
#> 23759 Wisconsin Oregon 2007
#> 23760 Utah New Jersey 2007
#> 23761 Iowa Colorado 2007
#> 23762 Illinois Rhode Island 2007
#> 23763 Oregon California 2007
#> 23764 Ohio Nevada 2007
#> 23765 Georgia Kentucky 2007
#> 23766 Missouri South Carolina 2007
#> 23767 Utah Washington 2007
#> 23768 Georgia Arkansas 2007
#> 23769 Louisiana Ohio 2007
#> 23770 Illinois Iowa 2007
#> 23771 New York Idaho 2007
#> 23772 Illinois Arizona 2007
#> 23773 Hawaii North Carolina 2007
#> 23774 Florida Indiana 2007
#> 23775 Washington Illinois 2007
#> 23776 South Dakota Florida 2007
#> 23777 Texas Massachusetts 2007
#> 23778 New York Oregon 2007
#> 23779 California Alabama 2007
#> 23780 New York Delaware 2007
#> 23781 Arizona West Virginia 2007
#> 23782 Delaware North Dakota 2007
#> 23783 Colorado Minnesota 2007
#> 23784 Arkansas California 2007
#> 23785 Texas Utah 2007
#> 23786 Tennessee Missouri 2007
#> 23787 Virginia California 2007
#> 23788 Florida New York 2007
#> 23789 Indiana West Virginia 2007
#> 23790 New Mexico Arkansas 2007
#> 23791 Kentucky Tennessee 2007
#> 23792 Louisiana Montana 2007
#> 23793 New Jersey Massachusetts 2007
#> 23794 Washington Colorado 2007
#> 23795 Connecticut Wisconsin 2007
#> 23796 Utah Mississippi 2007
#> 23797 Connecticut Virginia 2007
#> 23798 Idaho Delaware 2007
#> 23799 Kentucky Louisiana 2007
#> 23800 Arkansas Ohio 2007
#> 23801 Michigan Nebraska 2007
#> 23802 Mississippi Florida 2007
#> 23803 Oregon South Dakota 2007
#> 23804 Washington Connecticut 2007
#> 23805 New York New Jersey 2007
#> 23806 Utah Tennessee 2007
#> 23807 New Jersey Louisiana 2007
#> 23808 Florida Michigan 2007
#> 23809 Oregon Colorado 2007
#> 23810 Kansas Vermont 2007
#> 23811 Virginia Hawaii 2007
#> 23812 Oregon Montana 2007
#> 23813 Montana Alaska 2007
#> 23814 Alaska New York 2007
#> 23815 Wisconsin New Mexico 2007
#> 23816 New York Wisconsin 2007
#> 23817 California Kentucky 2007
#> 23818 Pennsylvania Texas 2007
#> 23819 Colorado Arizona 2007
#> 23820 Kentucky North Carolina 2007
#> 23821 Utah Maryland 2007
#> 23822 New Mexico New Hampshire 2007
#> 23823 Wisconsin Indiana 2007
#> 23824 Arizona Missouri 2007
#> 23825 Florida Iowa 2007
#> 23826 Texas South Carolina 2007
#> 23827 New York New Mexico 2007
#> 23828 Idaho Michigan 2007
#> 23829 Michigan California 2007
#> 23830 Washington North Dakota 2007
#> 23831 Minnesota Maine 2007
#> 23832 Arizona Oklahoma 2007
#> 23833 Kentucky Virginia 2007
#> 23834 Georgia New Jersey 2007
#> 23835 Kansas Idaho 2007
#> 23836 Connecticut New York 2007
#> 23837 Maine New Hampshire 2007
#> 23838 Michigan Indiana 2007
#> 23839 Idaho South Dakota 2007
#> 23840 Iowa Ohio 2007
#> 23841 Maryland Pennsylvania 2007
#> 23842 Louisiana Mississippi 2007
#> 23843 Massachusetts Texas 2007
#> 23844 Wisconsin Rhode Island 2007
#> 23845 North Carolina Georgia 2007
#> 23846 Georgia Colorado 2007
#> 23847 South Carolina North Carolina 2007
#> 23848 Missouri Minnesota 2007
#> 23849 New York Wyoming 2007
#> 23850 South Carolina Alabama 2007
#> 23851 Hawaii North Dakota 2007
#> 23852 Iowa Nebraska 2007
#> 23853 Utah Arizona 2007
#> 23854 Minnesota Indiana 2007
#> 23855 Utah Illinois 2007
#> 23856 Illinois Hawaii 2007
#> 23857 Georgia New Hampshire 2007
#> 23858 Washington New Mexico 2007
#> 23859 Connecticut Maryland 2007
#> 23860 Delaware Kansas 2007
#> 23861 Ohio Utah 2007
#> 23862 Iowa Pennsylvania 2007
#> 23863 Missouri Michigan 2007
#> 23864 Texas Connecticut 2007
#> 23865 Wisconsin Colorado 2007
#> 23866 Washington California 2007
#> 23867 North Carolina South Carolina 2007
#> 23868 Kansas Iowa 2007
#> 23869 Georgia Louisiana 2007
#> 23870 Georgia Mississippi 2007
#> 23871 Nevada Montana 2007
#> 23872 Michigan Florida 2007
#> 23873 New Mexico Maine 2007
#> 23874 Washington Kansas 2007
#> 23875 Florida Oregon 2007
#> 23876 Hawaii Idaho 2007
#> 23877 Montana Washington 2007
#> 23878 Oklahoma Connecticut 2007
#> 23879 New York West Virginia 2007
#> 23880 New Mexico Mississippi 2007
#> 23881 Delaware Massachusetts 2007
#> 23882 Illinois Vermont 2007
#> 23883 Wyoming Louisiana 2007
#> 23884 Utah Texas 2007
#> 23885 Delaware Montana 2007
#> 23886 Louisiana Missouri 2007
#> 23887 Washington Montana 2007
#> 23888 Texas Virginia 2007
#> 23889 Maryland New York 2007
#> 23890 Montana Hawaii 2007
#> 23891 Hawaii Alaska 2007
#> 23892 Kentucky Oregon 2007
#> 23893 Hawaii Washington 2007
#> 23894 Delaware Wyoming 2007
#> 23895 Vermont Michigan 2007
#> 23896 Colorado Tennessee 2007
#> 23897 Mississippi Missouri 2007
#> 23898 Alaska Nevada 2007
#> 23899 North Dakota Rhode Island 2007
#> 23900 South Carolina Wisconsin 2007
#> 23901 Utah Kansas 2007
#> 23902 Kentucky Maryland 2007
#> 23903 Maine Nebraska 2007
#> 23904 Oregon Idaho 2007
#> 23905 Missouri Iowa 2007
#> 23906 Illinois Alabama 2007
#> 23907 Connecticut Illinois 2007
#> 23908 Utah South Carolina 2007
#> 23909 South Carolina Arkansas 2007
#> 23910 Connecticut Rhode Island 2007
#> 23911 Montana Minnesota 2007
#> 23912 Vermont California 2007
#> 23913 Rhode Island Washington 2007
#> 23914 Iowa Arizona 2007
#> 23915 Washington Oklahoma 2007
#> 23916 Illinois Ohio 2007
#> 23917 Wisconsin Michigan 2007
#> 23918 Kentucky Massachusetts 2007
#> 23919 Hawaii Delaware 2007
#> 23920 Kansas Wyoming 2007
#> 23921 Georgia Virginia 2007
#> 23922 Washington Nebraska 2007
#> 23923 Colorado Alaska 2007
#> 23924 North Dakota New Jersey 2007
#> 23925 Maryland Nevada 2007
#> 23926 Michigan Tennessee 2007
#> 23927 Illinois New York 2007
#> 23928 Texas Florida 2007
#> 23929 Washington Massachusetts 2007
#> 23930 Minnesota Wisconsin 2007
#> 23931 Utah New Mexico 2007
#> 23932 South Carolina Missouri 2007
#> 23933 Illinois Maryland 2007
#> 23934 Alaska North Carolina 2007
#> 23935 Oregon Ohio 2007
#> 23936 Iowa Oklahoma 2007
#> 23937 Pennsylvania Georgia 2007
#> 23938 Hawaii Indiana 2007
#> 23939 Rhode Island California 2007
#> 23940 Florida Pennsylvania 2007
#> 23941 Michigan Utah 2007
#> 23942 Kansas Hawaii 2007
#> 23943 New Mexico Oklahoma 2007
#> 23944 Utah Georgia 2007
#> 23945 Louisiana New Mexico 2007
#> 23946 Illinois New Jersey 2007
#> 23947 Connecticut Kansas 2007
#> 23948 Colorado Texas 2007
#> 23949 New York Kansas 2007
#> 23950 Tennessee Kentucky 2007
#> 23951 Missouri Maine 2007
#> 23952 Iowa Kansas 2007
#> 23953 Oregon Georgia 2007
#> 23954 Wyoming North Dakota 2007
#> 23955 Maryland North Carolina 2007
#> 23956 West Virginia Vermont 2007
#> 23957 Michigan Rhode Island 2007
#> 23958 Mississippi New Mexico 2007
#> 23959 Georgia Florida 2007
#> 23960 Oregon Wisconsin 2007
#> 23961 Arkansas Montana 2007
#> 23962 Tennessee South Carolina 2007
#> 23963 Illinois Colorado 2007
#> 23964 Louisiana Texas 2007
#> 23965 South Carolina Illinois 2007
#> 23966 Montana California 2007
#> 23967 Hawaii Utah 2007
#> 23968 Hawaii West Virginia 2007
#> 23969 Vermont Iowa 2007
#> 23970 Louisiana Alaska 2007
#> 23971 Maryland Montana 2007
#> 23972 North Carolina Colorado 2007
#> 23973 Oklahoma North Dakota 2007
#> 23974 Georgia New York 2007
#> 23975 California Wyoming 2007
#> 23976 Kansas Wisconsin 2007
#> 23977 Georgia Oklahoma 2007
#> 23978 New Mexico Delaware 2007
#> 23979 Georgia Arizona 2007
#> 23980 Texas Delaware 2007
#> 23981 Michigan Nevada 2007
#> 23982 West Virginia Maryland 2007
#> 23983 Montana Wyoming 2007
#> 23984 Utah California 2007
#> 23985 New York Missouri 2007
#> 23986 Indiana South Dakota 2007
#> 23987 Connecticut Alabama 2007
#> 23988 Idaho Ohio 2007
#> 23989 Missouri Wisconsin 2007
#> 23990 Maryland Indiana 2007
#> 23991 Nevada Hawaii 2007
#> 23992 Maryland Massachusetts 2007
#> 23993 Oklahoma California 2007
#> 23994 Hawaii Iowa 2007
#> 23995 Kentucky Ohio 2007
#> 23996 Hawaii Connecticut 2007
#> 23997 Hawaii Vermont 2007
#> 23998 Pennsylvania Indiana 2007
#> 23999 Colorado North Dakota 2007
#> 24000 Montana Florida 2007
#> 24001 California Oregon 2008
#> 24002 California New Mexico 2008
#> 24003 California Colorado 2008
#> 24004 California Maine 2008
#> 24005 Florida Arizona 2008
#> 24006 California New Jersey 2008
#> 24007 California Maryland 2008
#> 24008 California Washington 2008
#> 24009 California Montana 2008
#> 24010 California Illinois 2008
#> 24011 California Nevada 2008
#> 24012 California Texas 2008
#> 24013 California Ohio 2008
#> 24014 California Florida 2008
#> 24015 California Nebraska 2008
#> 24016 California Indiana 2008
#> 24017 California Delaware 2008
#> 24018 California Minnesota 2008
#> 24019 California New Hampshire 2008
#> 24020 California North Carolina 2008
#> 24021 Oregon Kentucky 2008
#> 24022 California Vermont 2008
#> 24023 California Missouri 2008
#> 24024 California Rhode Island 2008
#> 24025 Florida Georgia 2008
#> 24026 California Kansas 2008
#> 24027 California Arkansas 2008
#> 24028 California Iowa 2008
#> 24029 Connecticut Virginia 2008
#> 24030 California South Dakota 2008
#> 24031 Oregon Tennessee 2008
#> 24032 California North Dakota 2008
#> 24033 California Utah 2008
#> 24034 California Pennsylvania 2008
#> 24035 California Connecticut 2008
#> 24036 Florida South Carolina 2008
#> 24037 Florida Louisiana 2008
#> 24038 Florida Mississippi 2008
#> 24039 California New York 2008
#> 24040 Minnesota Alabama 2008
#> 24041 California Hawaii 2008
#> 24042 California Alaska 2008
#> 24043 California Oklahoma 2008
#> 24044 California Idaho 2008
#> 24045 California Michigan 2008
#> 24046 California Massachusetts 2008
#> 24047 California Wisconsin 2008
#> 24048 Colorado Wyoming 2008
#> 24049 Minnesota California 2008
#> 24050 Oregon West Virginia 2008
#> 24051 Connecticut Ohio 2008
#> 24052 Oregon Minnesota 2008
#> 24053 California Georgia 2008
#> 24054 Florida New Jersey 2008
#> 24055 California Arizona 2008
#> 24056 Louisiana Indiana 2008
#> 24057 Illinois Connecticut 2008
#> 24058 Florida Washington 2008
#> 24059 Minnesota Oklahoma 2008
#> 24060 Texas New Mexico 2008
#> 24061 Idaho Virginia 2008
#> 24062 California Louisiana 2008
#> 24063 Idaho Texas 2008
#> 24064 California South Carolina 2008
#> 24065 Idaho Utah 2008
#> 24066 Massachusetts California 2008
#> 24067 Minnesota Kansas 2008
#> 24068 Florida Missouri 2008
#> 24069 Florida Illinois 2008
#> 24070 Oregon Delaware 2008
#> 24071 Florida Kentucky 2008
#> 24072 Minnesota Iowa 2008
#> 24073 Oregon Maine 2008
#> 24074 Washington Alaska 2008
#> 24075 Florida Alabama 2008
#> 24076 Minnesota Nebraska 2008
#> 24077 Connecticut Colorado 2008
#> 24078 Arizona Arkansas 2008
#> 24079 Oregon Rhode Island 2008
#> 24080 Idaho North Dakota 2008
#> 24081 Minnesota Florida 2008
#> 24082 Florida North Carolina 2008
#> 24083 Kentucky Michigan 2008
#> 24084 Colorado Maryland 2008
#> 24085 South Carolina Wisconsin 2008
#> 24086 Massachusetts Hawaii 2008
#> 24087 Washington Oregon 2008
#> 24088 Illinois Pennsylvania 2008
#> 24089 Colorado South Dakota 2008
#> 24090 Colorado Idaho 2008
#> 24091 Virginia Nevada 2008
#> 24092 California Wyoming 2008
#> 24093 Connecticut Massachusetts 2008
#> 24094 Hawaii Montana 2008
#> 24095 Georgia Tennessee 2008
#> 24096 Connecticut Vermont 2008
#> 24097 Florida West Virginia 2008
#> 24098 Minnesota Mississippi 2008
#> 24099 California Virginia 2008
#> 24100 Massachusetts New York 2008
#> 24101 Maryland New Hampshire 2008
#> 24102 Illinois Delaware 2008
#> 24103 Massachusetts New Jersey 2008
#> 24104 North Dakota South Carolina 2008
#> 24105 Illinois Oklahoma 2008
#> 24106 Florida Texas 2008
#> 24107 Minnesota Arizona 2008
#> 24108 Florida Utah 2008
#> 24109 Idaho Indiana 2008
#> 24110 Illinois Massachusetts 2008
#> 24111 Kentucky Arkansas 2008
#> 24112 Minnesota Washington 2008
#> 24113 Rhode Island New Mexico 2008
#> 24114 Florida Ohio 2008
#> 24115 Oregon Illinois 2008
#> 24116 North Dakota Kentucky 2008
#> 24117 Colorado Montana 2008
#> 24118 Massachusetts Connecticut 2008
#> 24119 Illinois California 2008
#> 24120 Idaho Minnesota 2008
#> 24121 Idaho Colorado 2008
#> 24122 Massachusetts Rhode Island 2008
#> 24123 Illinois Iowa 2008
#> 24124 New York Michigan 2008
#> 24125 Oregon Vermont 2008
#> 24126 Rhode Island Idaho 2008
#> 24127 Florida Kansas 2008
#> 24128 Illinois Maine 2008
#> 24129 Arizona Oregon 2008
#> 24130 Iowa Wisconsin 2008
#> 24131 Connecticut Pennsylvania 2008
#> 24132 Hawaii Florida 2008
#> 24133 Florida Connecticut 2008
#> 24134 Hawaii North Dakota 2008
#> 24135 West Virginia Georgia 2008
#> 24136 New Mexico North Carolina 2008
#> 24137 Michigan Nebraska 2008
#> 24138 California Tennessee 2008
#> 24139 North Dakota South Dakota 2008
#> 24140 Wisconsin Massachusetts 2008
#> 24141 Minnesota Louisiana 2008
#> 24142 Indiana Alabama 2008
#> 24143 Rhode Island Maryland 2008
#> 24144 Idaho Washington 2008
#> 24145 California Mississippi 2008
#> 24146 New York Nevada 2008
#> 24147 Minnesota New Jersey 2008
#> 24148 Tennessee Florida 2008
#> 24149 Kentucky Virginia 2008
#> 24150 Florida Colorado 2008
#> 24151 Colorado New Mexico 2008
#> 24152 Colorado Hawaii 2008
#> 24153 Illinois Missouri 2008
#> 24154 Wisconsin California 2008
#> 24155 Florida Minnesota 2008
#> 24156 Rhode Island Wisconsin 2008
#> 24157 Rhode Island West Virginia 2008
#> 24158 Florida Oklahoma 2008
#> 24159 Colorado New Hampshire 2008
#> 24160 Idaho Michigan 2008
#> 24161 Oregon Connecticut 2008
#> 24162 Georgia Indiana 2008
#> 24163 Connecticut Maine 2008
#> 24164 Maine Pennsylvania 2008
#> 24165 Iowa Texas 2008
#> 24166 Minnesota Virginia 2008
#> 24167 Oregon Iowa 2008
#> 24168 Maine Vermont 2008
#> 24169 Connecticut Oregon 2008
#> 24170 North Dakota Ohio 2008
#> 24171 Louisiana Kansas 2008
#> 24172 Florida New York 2008
#> 24173 Minnesota North Dakota 2008
#> 24174 Rhode Island Kentucky 2008
#> 24175 Idaho Wyoming 2008
#> 24176 Connecticut Washington 2008
#> 24177 Arizona South Carolina 2008
#> 24178 Oregon Alaska 2008
#> 24179 South Carolina Missouri 2008
#> 24180 Louisiana Nevada 2008
#> 24181 Hawaii Idaho 2008
#> 24182 Georgia Arkansas 2008
#> 24183 Arizona Maryland 2008
#> 24184 Illinois Minnesota 2008
#> 24185 Louisiana Mississippi 2008
#> 24186 Iowa Colorado 2008
#> 24187 Connecticut California 2008
#> 24188 Georgia Montana 2008
#> 24189 Illinois Georgia 2008
#> 24190 Illinois North Carolina 2008
#> 24191 Idaho Delaware 2008
#> 24192 Maryland Illinois 2008
#> 24193 New York Florida 2008
#> 24194 North Dakota Nebraska 2008
#> 24195 Florida Massachusetts 2008
#> 24196 New Mexico Arizona 2008
#> 24197 Louisiana South Dakota 2008
#> 24198 Maryland New Mexico 2008
#> 24199 Michigan Tennessee 2008
#> 24200 Arizona Utah 2008
#> 24201 Minnesota Rhode Island 2008
#> 24202 Kentucky Idaho 2008
#> 24203 North Dakota Iowa 2008
#> 24204 Maryland Hawaii 2008
#> 24205 Idaho Alabama 2008
#> 24206 Delaware Kansas 2008
#> 24207 Maine Ohio 2008
#> 24208 Wisconsin Oklahoma 2008
#> 24209 Iowa Nebraska 2008
#> 24210 Colorado Wisconsin 2008
#> 24211 Texas Kentucky 2008
#> 24212 Illinois Washington 2008
#> 24213 Rhode Island Indiana 2008
#> 24214 Michigan Arizona 2008
#> 24215 Illinois New York 2008
#> 24216 South Carolina North Carolina 2008
#> 24217 Minnesota Nevada 2008
#> 24218 Florida Virginia 2008
#> 24219 Maine Wyoming 2008
#> 24220 Utah South Dakota 2008
#> 24221 Colorado Tennessee 2008
#> 24222 Minnesota New Hampshire 2008
#> 24223 Kentucky Louisiana 2008
#> 24224 Ohio Utah 2008
#> 24225 Delaware Montana 2008
#> 24226 New York Connecticut 2008
#> 24227 Indiana Maine 2008
#> 24228 Michigan Illinois 2008
#> 24229 Minnesota Arkansas 2008
#> 24230 New York Rhode Island 2008
#> 24231 Iowa Oregon 2008
#> 24232 Connecticut Florida 2008
#> 24233 Wisconsin Vermont 2008
#> 24234 Arizona Missouri 2008
#> 24235 Minnesota Delaware 2008
#> 24236 New York Texas 2008
#> 24237 Utah Alaska 2008
#> 24238 Kansas Iowa 2008
#> 24239 Illinois South Carolina 2008
#> 24240 Washington Louisiana 2008
#> 24241 New York Maryland 2008
#> 24242 Wisconsin Minnesota 2008
#> 24243 Texas Oklahoma 2008
#> 24244 Indiana West Virginia 2008
#> 24245 Kentucky Pennsylvania 2008
#> 24246 Washington North Dakota 2008
#> 24247 Nebraska Virginia 2008
#> 24248 Kentucky North Carolina 2008
#> 24249 Kentucky Georgia 2008
#> 24250 Louisiana North Dakota 2008
#> 24251 Ohio Texas 2008
#> 24252 Maine Hawaii 2008
#> 24253 Michigan California 2008
#> 24254 Florida Iowa 2008
#> 24255 Florida Arkansas 2008
#> 24256 Arizona West Virginia 2008
#> 24257 New York Ohio 2008
#> 24258 Georgia New York 2008
#> 24259 Florida Rhode Island 2008
#> 24260 New Jersey Louisiana 2008
#> 24261 South Dakota Florida 2008
#> 24262 Florida Maryland 2008
#> 24263 Florida Michigan 2008
#> 24264 Rhode Island Nebraska 2008
#> 24265 Utah New Jersey 2008
#> 24266 California Alabama 2008
#> 24267 Georgia Kentucky 2008
#> 24268 Oregon Idaho 2008
#> 24269 Connecticut South Carolina 2008
#> 24270 Indiana Maryland 2008
#> 24271 Virginia California 2008
#> 24272 New Jersey Washington 2008
#> 24273 Washington Massachusetts 2008
#> 24274 Wisconsin Arizona 2008
#> 24275 Wisconsin Rhode Island 2008
#> 24276 Oregon Kansas 2008
#> 24277 New Mexico Illinois 2008
#> 24278 Illinois Colorado 2008
#> 24279 New York Delaware 2008
#> 24280 Oregon New York 2008
#> 24281 Florida Tennessee 2008
#> 24282 Connecticut North Carolina 2008
#> 24283 Minnesota New Mexico 2008
#> 24284 Louisiana Montana 2008
#> 24285 North Carolina Wisconsin 2008
#> 24286 Ohio Nevada 2008
#> 24287 Maryland Maine 2008
#> 24288 Wisconsin Indiana 2008
#> 24289 Montana Idaho 2008
#> 24290 Hawaii Oregon 2008
#> 24291 Maine North Dakota 2008
#> 24292 Illinois Michigan 2008
#> 24293 New Jersey Massachusetts 2008
#> 24294 Illinois Rhode Island 2008
#> 24295 Utah Kansas 2008
#> 24296 Michigan Indiana 2008
#> 24297 New York North Carolina 2008
#> 24298 Washington Arkansas 2008
#> 24299 Nevada Utah 2008
#> 24300 Utah Mississippi 2008
#> 24301 Arizona Pennsylvania 2008
#> 24302 Delaware Tennessee 2008
#> 24303 South Carolina Alabama 2008
#> 24304 Georgia Oklahoma 2008
#> 24305 Pennsylvania Indiana 2008
#> 24306 New York Hawaii 2008
#> 24307 Washington Connecticut 2008
#> 24308 Massachusetts Wyoming 2008
#> 24309 Mississippi Florida 2008
#> 24310 Rhode Island New Hampshire 2008
#> 24311 Oregon South Dakota 2008
#> 24312 Kentucky Colorado 2008
#> 24313 Florida Nebraska 2008
#> 24314 Oregon California 2008
#> 24315 Wisconsin Maine 2008
#> 24316 Wisconsin New York 2008
#> 24317 Kansas South Carolina 2008
#> 24318 New York New Mexico 2008
#> 24319 Montana Minnesota 2008
#> 24320 Massachusetts Pennsylvania 2008
#> 24321 Kentucky West Virginia 2008
#> 24322 New York Oregon 2008
#> 24323 Montana Alaska 2008
#> 24324 Utah Louisiana 2008
#> 24325 Illinois New Jersey 2008
#> 24326 Indiana Delaware 2008
#> 24327 California Kentucky 2008
#> 24328 Pennsylvania Texas 2008
#> 24329 Colorado Arizona 2008
#> 24330 Arkansas California 2008
#> 24331 Florida Nevada 2008
#> 24332 Kansas Mississippi 2008
#> 24333 New Jersey Illinois 2008
#> 24334 Connecticut Iowa 2008
#> 24335 Iowa Vermont 2008
#> 24336 Kentucky Missouri 2008
#> 24337 North Carolina Oklahoma 2008
#> 24338 Washington Montana 2008
#> 24339 Kansas New Mexico 2008
#> 24340 Utah North Carolina 2008
#> 24341 Massachusetts Missouri 2008
#> 24342 Arkansas Ohio 2008
#> 24343 Maine Maryland 2008
#> 24344 New Mexico New Hampshire 2008
#> 24345 Idaho South Dakota 2008
#> 24346 Minnesota Oregon 2008
#> 24347 Ohio Wisconsin 2008
#> 24348 Washington New Mexico 2008
#> 24349 Kansas Wyoming 2008
#> 24350 Kansas Idaho 2008
#> 24351 Michigan Montana 2008
#> 24352 Texas Utah 2008
#> 24353 Connecticut Minnesota 2008
#> 24354 Massachusetts Texas 2008
#> 24355 New York Iowa 2008
#> 24356 Idaho Iowa 2008
#> 24357 New Mexico Virginia 2008
#> 24358 Georgia Arizona 2008
#> 24359 New Mexico Arkansas 2008
#> 24360 Minnesota Maine 2008
#> 24361 Virginia Hawaii 2008
#> 24362 Florida Indiana 2008
#> 24363 Kentucky Tennessee 2008
#> 24364 Hawaii Pennsylvania 2008
#> 24365 Pennsylvania Kansas 2008
#> 24366 Rhode Island Washington 2008
#> 24367 Texas Connecticut 2008
#> 24368 New Jersey Georgia 2008
#> 24369 Utah Arizona 2008
#> 24370 Wisconsin Colorado 2008
#> 24371 Alaska New York 2008
#> 24372 Washington California 2008
#> 24373 Missouri South Carolina 2008
#> 24374 Georgia Nebraska 2008
#> 24375 New Jersey Michigan 2008
#> 24376 Georgia Mississippi 2008
#> 24377 Georgia Louisiana 2008
#> 24378 Texas Florida 2008
#> 24379 Iowa Massachusetts 2008
#> 24380 Missouri Texas 2008
#> 24381 Illinois West Virginia 2008
#> 24382 Washington Colorado 2008
#> 24383 Wisconsin Oregon 2008
#> 24384 Michigan Florida 2008
#> 24385 Montana Washington 2008
#> 24386 Pennsylvania Ohio 2008
#> 24387 Nevada Montana 2008
#> 24388 Oklahoma Connecticut 2008
#> 24389 Maine New Hampshire 2008
#> 24390 New Mexico Mississippi 2008
#> 24391 Nevada New Mexico 2008
#> 24392 Colorado North Dakota 2008
#> 24393 Kentucky Oklahoma 2008
#> 24394 Tennessee Missouri 2008
#> 24395 Colorado Texas 2008
#> 24396 Delaware Massachusetts 2008
#> 24397 Connecticut Louisiana 2008
#> 24398 Connecticut Rhode Island 2008
#> 24399 Michigan Wyoming 2008
#> 24400 Oregon Wisconsin 2008
#> 24401 North Dakota Rhode Island 2008
#> 24402 New York Idaho 2008
#> 24403 North Carolina Maryland 2008
#> 24404 Mississippi Missouri 2008
#> 24405 Missouri Michigan 2008
#> 24406 Hawaii Alaska 2008
#> 24407 Mississippi Oregon 2008
#> 24408 Utah Illinois 2008
#> 24409 South Carolina Arkansas 2008
#> 24410 Delaware Illinois 2008
#> 24411 Mississippi California 2008
#> 24412 New York Vermont 2008
#> 24413 Montana New Jersey 2008
#> 24414 North Carolina Colorado 2008
#> 24415 Kentucky New York 2008
#> 24416 Louisiana New Mexico 2008
#> 24417 Alaska Nevada 2008
#> 24418 Maryland Montana 2008
#> 24419 Illinois Tennessee 2008
#> 24420 Missouri Colorado 2008
#> 24421 New Hampshire New York 2008
#> 24422 Indiana New Jersey 2008
#> 24423 Delaware North Dakota 2008
#> 24424 Utah South Carolina 2008
#> 24425 Maryland California 2008
#> 24426 Louisiana Georgia 2008
#> 24427 Michigan Alabama 2008
#> 24428 Kansas Arizona 2008
#> 24429 Kentucky Massachusetts 2008
#> 24430 Wisconsin Michigan 2008
#> 24431 South Carolina Illinois 2008
#> 24432 Kansas Wisconsin 2008
#> 24433 Colorado Alaska 2008
#> 24434 Illinois Virginia 2008
#> 24435 Illinois Maryland 2008
#> 24436 Texas Delaware 2008
#> 24437 Missouri Pennsylvania 2008
#> 24438 Kansas Hawaii 2008
#> 24439 New York New Jersey 2008
#> 24440 Utah Indiana 2008
#> 24441 Washington Michigan 2008
#> 24442 Wisconsin Maryland 2008
#> 24443 Rhode Island Minnesota 2008
#> 24444 Oregon Ohio 2008
#> 24445 Oklahoma Kansas 2008
#> 24446 Missouri Idaho 2008
#> 24447 Kentucky South Carolina 2008
#> 24448 Connecticut Kansas 2008
#> 24449 Tennessee Kentucky 2008
#> 24450 Missouri Maine 2008
#> 24451 Michigan Utah 2008
#> 24452 Kentucky Vermont 2008
#> 24453 Oregon Hawaii 2008
#> 24454 Utah Missouri 2008
#> 24455 New Jersey New Hampshire 2008
#> 24456 Washington North Carolina 2008
#> 24457 Michigan Rhode Island 2008
#> 24458 Utah Georgia 2008
#> 24459 New York Washington 2008
#> 24460 Oklahoma North Dakota 2008
#> 24461 Hawaii Oklahoma 2008
#> 24462 Kansas Nebraska 2008
#> 24463 Illinois Vermont 2008
#> 24464 Wyoming North Dakota 2008
#> 24465 New York Kansas 2008
#> 24466 Virginia Indiana 2008
#> 24467 South Dakota Nebraska 2008
#> 24468 Arkansas Idaho 2008
#> 24469 New York Missouri 2008
#> 24470 Georgia Florida 2008
#> 24471 Hawaii North Carolina 2008
#> 24472 Delaware Minnesota 2008
#> 24473 New York West Virginia 2008
#> 24474 North Dakota Wyoming 2008
#> 24475 Hawaii Washington 2008
#> 24476 Hawaii Utah 2008
#> 24477 Louisiana Alaska 2008
#> 24478 Missouri Iowa 2008
#> 24479 New Mexico Kansas 2008
#> 24480 North Carolina Delaware 2008
#> 24481 South Dakota Idaho 2008
#> 24482 Oregon Montana 2008
#> 24483 Louisiana Ohio 2008
#> 24484 Maine Wisconsin 2008
#> 24485 North Carolina New York 2008
#> 24486 Michigan Nevada 2008
#> 24487 Nevada Georgia 2008
#> 24488 Wyoming Louisiana 2008
#> 24489 Montana California 2008
#> 24490 Mississippi New Mexico 2008
#> 24491 Oregon Michigan 2008
#> 24492 Indiana South Dakota 2008
#> 24493 Missouri Wisconsin 2008
#> 24494 Oklahoma California 2008
#> 24495 Louisiana Texas 2008
#> 24496 Wyoming Maine 2008
#> 24497 Hawaii Connecticut 2008
#> 24498 Nevada Tennessee 2008
#> 24499 Illinois Hawaii 2008
#> 24500 Illinois Ohio 2008
#> 24501 California Oregon 2009
#> 24502 California New Mexico 2009
#> 24503 California Maryland 2009
#> 24504 California Colorado 2009
#> 24505 California Maine 2009
#> 24506 California New Jersey 2009
#> 24507 California Illinois 2009
#> 24508 California Washington 2009
#> 24509 Florida Arizona 2009
#> 24510 California Montana 2009
#> 24511 California Ohio 2009
#> 24512 California Nevada 2009
#> 24513 California Florida 2009
#> 24514 California Texas 2009
#> 24515 Oregon Kentucky 2009
#> 24516 California Nebraska 2009
#> 24517 California Indiana 2009
#> 24518 California North Carolina 2009
#> 24519 California Minnesota 2009
#> 24520 California Delaware 2009
#> 24521 California New Hampshire 2009
#> 24522 California Missouri 2009
#> 24523 California Vermont 2009
#> 24524 Minnesota Iowa 2009
#> 24525 California Rhode Island 2009
#> 24526 Florida Georgia 2009
#> 24527 Connecticut Virginia 2009
#> 24528 California Kansas 2009
#> 24529 California Arkansas 2009
#> 24530 California South Dakota 2009
#> 24531 California Utah 2009
#> 24532 California Pennsylvania 2009
#> 24533 California Tennessee 2009
#> 24534 Florida South Carolina 2009
#> 24535 California North Dakota 2009
#> 24536 California Connecticut 2009
#> 24537 Florida Louisiana 2009
#> 24538 California Michigan 2009
#> 24539 Minnesota Alabama 2009
#> 24540 Minnesota Mississippi 2009
#> 24541 California Oklahoma 2009
#> 24542 California New York 2009
#> 24543 California Hawaii 2009
#> 24544 California Alaska 2009
#> 24545 California Idaho 2009
#> 24546 California Massachusetts 2009
#> 24547 Washington Wisconsin 2009
#> 24548 Colorado Wyoming 2009
#> 24549 Oregon West Virginia 2009
#> 24550 Minnesota California 2009
#> 24551 Connecticut Ohio 2009
#> 24552 Oregon Minnesota 2009
#> 24553 California Arizona 2009
#> 24554 California Georgia 2009
#> 24555 Florida New Jersey 2009
#> 24556 Illinois Connecticut 2009
#> 24557 Louisiana Indiana 2009
#> 24558 Florida Washington 2009
#> 24559 Illinois Iowa 2009
#> 24560 California Virginia 2009
#> 24561 Minnesota Oklahoma 2009
#> 24562 Idaho Utah 2009
#> 24563 Texas New Mexico 2009
#> 24564 California South Carolina 2009
#> 24565 California Louisiana 2009
#> 24566 Idaho Texas 2009
#> 24567 Florida Illinois 2009
#> 24568 Illinois California 2009
#> 24569 Rhode Island Wisconsin 2009
#> 24570 Florida Kentucky 2009
#> 24571 Florida Missouri 2009
#> 24572 Minnesota Kansas 2009
#> 24573 Washington Alaska 2009
#> 24574 Oregon Maine 2009
#> 24575 Connecticut Colorado 2009
#> 24576 Oregon Delaware 2009
#> 24577 Oregon Rhode Island 2009
#> 24578 Florida Alabama 2009
#> 24579 Minnesota Nebraska 2009
#> 24580 Arizona Arkansas 2009
#> 24581 Idaho North Dakota 2009
#> 24582 Illinois Florida 2009
#> 24583 Colorado Maryland 2009
#> 24584 Idaho Michigan 2009
#> 24585 Colorado Idaho 2009
#> 24586 Washington Pennsylvania 2009
#> 24587 Florida North Carolina 2009
#> 24588 Iowa Vermont 2009
#> 24589 Indiana Mississippi 2009
#> 24590 California Wyoming 2009
#> 24591 Massachusetts Hawaii 2009
#> 24592 Illinois Massachusetts 2009
#> 24593 Florida Tennessee 2009
#> 24594 Colorado South Dakota 2009
#> 24595 Virginia Nevada 2009
#> 24596 Washington Oregon 2009
#> 24597 Hawaii Montana 2009
#> 24598 Florida West Virginia 2009
#> 24599 Idaho Virginia 2009
#> 24600 Massachusetts New York 2009
#> 24601 Maryland New Hampshire 2009
#> 24602 Illinois Delaware 2009
#> 24603 Massachusetts New Jersey 2009
#> 24604 Illinois Oklahoma 2009
#> 24605 North Dakota South Carolina 2009
#> 24606 Florida Utah 2009
#> 24607 Connecticut California 2009
#> 24608 Minnesota Washington 2009
#> 24609 Florida Texas 2009
#> 24610 Minnesota Arizona 2009
#> 24611 Connecticut Massachusetts 2009
#> 24612 Idaho Indiana 2009
#> 24613 Minnesota Illinois 2009
#> 24614 Rhode Island New Mexico 2009
#> 24615 Massachusetts Connecticut 2009
#> 24616 Florida Ohio 2009
#> 24617 Idaho Minnesota 2009
#> 24618 Oregon Florida 2009
#> 24619 North Dakota Kentucky 2009
#> 24620 Colorado Montana 2009
#> 24621 Minnesota Colorado 2009
#> 24622 New York Michigan 2009
#> 24623 Massachusetts Rhode Island 2009
#> 24624 New Mexico North Carolina 2009
#> 24625 Kentucky Arkansas 2009
#> 24626 Iowa Wisconsin 2009
#> 24627 Rhode Island Idaho 2009
#> 24628 Illinois Maine 2009
#> 24629 Colorado Louisiana 2009
#> 24630 Florida Kansas 2009
#> 24631 Arizona Oregon 2009
#> 24632 Oregon Iowa 2009
#> 24633 Rhode Island Maryland 2009
#> 24634 Massachusetts Vermont 2009
#> 24635 North Dakota South Dakota 2009
#> 24636 Florida Connecticut 2009
#> 24637 Hawaii North Dakota 2009
#> 24638 West Virginia Georgia 2009
#> 24639 Indiana Alabama 2009
#> 24640 Minnesota Tennessee 2009
#> 24641 Minnesota New Jersey 2009
#> 24642 Wisconsin Massachusetts 2009
#> 24643 Florida Pennsylvania 2009
#> 24644 Colorado Hawaii 2009
#> 24645 Kentucky Michigan 2009
#> 24646 Colorado New Mexico 2009
#> 24647 Idaho Washington 2009
#> 24648 New York Nevada 2009
#> 24649 North Dakota Nebraska 2009
#> 24650 Florida Minnesota 2009
#> 24651 Kentucky Virginia 2009
#> 24652 Arizona Missouri 2009
#> 24653 Wisconsin California 2009
#> 24654 Idaho Colorado 2009
#> 24655 Florida Mississippi 2009
#> 24656 Connecticut Maine 2009
#> 24657 Delaware Kansas 2009
#> 24658 Idaho Wyoming 2009
#> 24659 Connecticut New Hampshire 2009
#> 24660 Rhode Island West Virginia 2009
#> 24661 Florida Oklahoma 2009
#> 24662 Georgia Indiana 2009
#> 24663 Oregon Connecticut 2009
#> 24664 Iowa Texas 2009
#> 24665 Minnesota Virginia 2009
#> 24666 Oregon Alaska 2009
#> 24667 Connecticut Oregon 2009
#> 24668 North Dakota Ohio 2009
#> 24669 Indiana Florida 2009
#> 24670 Florida New York 2009
#> 24671 California Iowa 2009
#> 24672 Florida Nebraska 2009
#> 24673 Minnesota North Dakota 2009
#> 24674 Nevada Idaho 2009
#> 24675 Rhode Island Kentucky 2009
#> 24676 Maryland Illinois 2009
#> 24677 Connecticut Washington 2009
#> 24678 Arizona South Carolina 2009
#> 24679 Illinois Missouri 2009
#> 24680 Indiana Georgia 2009
#> 24681 Nebraska Pennsylvania 2009
#> 24682 Colorado Arizona 2009
#> 24683 Louisiana Nevada 2009
#> 24684 Arizona Maryland 2009
#> 24685 New York Florida 2009
#> 24686 Minnesota Arkansas 2009
#> 24687 Illinois Minnesota 2009
#> 24688 Colorado Wisconsin 2009
#> 24689 Illinois North Carolina 2009
#> 24690 Idaho Delaware 2009
#> 24691 Oregon Vermont 2009
#> 24692 Vermont Tennessee 2009
#> 24693 Utah South Dakota 2009
#> 24694 Florida Massachusetts 2009
#> 24695 Maryland New Mexico 2009
#> 24696 Maryland Hawaii 2009
#> 24697 Maine Montana 2009
#> 24698 Arizona Utah 2009
#> 24699 Texas Colorado 2009
#> 24700 Louisiana Kansas 2009
#> 24701 Kentucky Louisiana 2009
#> 24702 Minnesota New Hampshire 2009
#> 24703 Minnesota Rhode Island 2009
#> 24704 South Carolina Missouri 2009
#> 24705 Maine Ohio 2009
#> 24706 North Dakota Iowa 2009
#> 24707 New Jersey California 2009
#> 24708 Idaho Alabama 2009
#> 24709 Wisconsin Oklahoma 2009
#> 24710 Texas Kentucky 2009
#> 24711 Kansas Mississippi 2009
#> 24712 Illinois Washington 2009
#> 24713 Rhode Island Indiana 2009
#> 24714 Illinois New York 2009
#> 24715 South Carolina North Carolina 2009
#> 24716 Minnesota Nevada 2009
#> 24717 Georgia Colorado 2009
#> 24718 Michigan Tennessee 2009
#> 24719 Maine Wyoming 2009
#> 24720 New York Pennsylvania 2009
#> 24721 Connecticut Vermont 2009
#> 24722 Ohio Utah 2009
#> 24723 Utah Arizona 2009
#> 24724 Louisiana South Dakota 2009
#> 24725 Hawaii Oregon 2009
#> 24726 Indiana Maine 2009
#> 24727 Florida Idaho 2009
#> 24728 New York Rhode Island 2009
#> 24729 Texas Florida 2009
#> 24730 Connecticut South Carolina 2009
#> 24731 Minnesota Delaware 2009
#> 24732 New York Texas 2009
#> 24733 New York Maryland 2009
#> 24734 Louisiana Virginia 2009
#> 24735 Utah Illinois 2009
#> 24736 Florida Arkansas 2009
#> 24737 Michigan Montana 2009
#> 24738 Texas Oklahoma 2009
#> 24739 Illinois Georgia 2009
#> 24740 Wisconsin Minnesota 2009
#> 24741 Illinois Nebraska 2009
#> 24742 Indiana West Virginia 2009
#> 24743 Maine Hawaii 2009
#> 24744 Ohio Wisconsin 2009
#> 24745 Washington North Dakota 2009
#> 24746 Virginia Louisiana 2009
#> 24747 Indiana Iowa 2009
#> 24748 Louisiana North Dakota 2009
#> 24749 Illinois South Carolina 2009
#> 24750 Utah Alaska 2009
#> 24751 Ohio Texas 2009
#> 24752 Arizona West Virginia 2009
#> 24753 Texas California 2009
#> 24754 New York Ohio 2009
#> 24755 Georgia New York 2009
#> 24756 Florida Rhode Island 2009
#> 24757 Wisconsin Oregon 2009
#> 24758 Florida Michigan 2009
#> 24759 Florida Virginia 2009
#> 24760 Texas Massachusetts 2009
#> 24761 Utah New Jersey 2009
#> 24762 California Alabama 2009
#> 24763 Wisconsin Arizona 2009
#> 24764 New York Connecticut 2009
#> 24765 South Carolina Idaho 2009
#> 24766 Indiana Maryland 2009
#> 24767 Georgia Kentucky 2009
#> 24768 Louisiana Tennessee 2009
#> 24769 New York Iowa 2009
#> 24770 Virginia California 2009
#> 24771 New Jersey Washington 2009
#> 24772 North Dakota Louisiana 2009
#> 24773 Wisconsin Rhode Island 2009
#> 24774 Oregon Kansas 2009
#> 24775 New York Delaware 2009
#> 24776 Oregon New York 2009
#> 24777 Utah North Carolina 2009
#> 24778 Oregon South Dakota 2009
#> 24779 Minnesota New Mexico 2009
#> 24780 Maine Vermont 2009
#> 24781 Ohio Mississippi 2009
#> 24782 Florida Maryland 2009
#> 24783 Ohio Nevada 2009
#> 24784 Utah Idaho 2009
#> 24785 Wisconsin Tennessee 2009
#> 24786 Wisconsin Indiana 2009
#> 24787 Maryland Maine 2009
#> 24788 New Mexico New Hampshire 2009
#> 24789 Georgia Arkansas 2009
#> 24790 Illinois Michigan 2009
#> 24791 New York North Carolina 2009
#> 24792 Maine North Dakota 2009
#> 24793 Louisiana Montana 2009
#> 24794 Maryland Arizona 2009
#> 24795 Nevada Nebraska 2009
#> 24796 Kentucky Pennsylvania 2009
#> 24797 New Jersey Massachusetts 2009
#> 24798 Illinois Rhode Island 2009
#> 24799 Michigan Indiana 2009
#> 24800 Tennessee Florida 2009
#> 24801 Connecticut Wisconsin 2009
#> 24802 New York Hawaii 2009
#> 24803 Nevada Utah 2009
#> 24804 Kansas Arizona 2009
#> 24805 Minnesota Oregon 2009
#> 24806 Kentucky Georgia 2009
#> 24807 South Carolina Alabama 2009
#> 24808 Iowa Colorado 2009
#> 24809 Massachusetts Wyoming 2009
#> 24810 Pennsylvania Indiana 2009
#> 24811 Washington Connecticut 2009
#> 24812 Connecticut North Carolina 2009
#> 24813 Arkansas Ohio 2009
#> 24814 Kansas South Carolina 2009
#> 24815 Montana Minnesota 2009
#> 24816 Wisconsin Maine 2009
#> 24817 Hawaii Florida 2009
#> 24818 Wisconsin New York 2009
#> 24819 New Mexico Arkansas 2009
#> 24820 New York New Mexico 2009
#> 24821 Kentucky West Virginia 2009
#> 24822 Wisconsin Illinois 2009
#> 24823 Montana Alaska 2009
#> 24824 Illinois New Jersey 2009
#> 24825 Indiana Delaware 2009
#> 24826 New Mexico Virginia 2009
#> 24827 California Kentucky 2009
#> 24828 Pennsylvania Texas 2009
#> 24829 Florida Iowa 2009
#> 24830 Oregon Montana 2009
#> 24831 California Mississippi 2009
#> 24832 Florida Nevada 2009
#> 24833 New Jersey Louisiana 2009
#> 24834 Kentucky North Carolina 2009
#> 24835 Washington Colorado 2009
#> 24836 Oregon California 2009
#> 24837 Oregon Illinois 2009
#> 24838 Kentucky Missouri 2009
#> 24839 Colorado Oklahoma 2009
#> 24840 Utah Kansas 2009
#> 24841 Missouri Pennsylvania 2009
#> 24842 Oregon Idaho 2009
#> 24843 Kansas New Mexico 2009
#> 24844 Rhode Island New Hampshire 2009
#> 24845 Idaho South Dakota 2009
#> 24846 Massachusetts Missouri 2009
#> 24847 Florida Hawaii 2009
#> 24848 Maine Maryland 2009
#> 24849 Connecticut Minnesota 2009
#> 24850 Michigan Nebraska 2009
#> 24851 Washington New Mexico 2009
#> 24852 Texas Utah 2009
#> 24853 Massachusetts Texas 2009
#> 24854 South Carolina Illinois 2009
#> 24855 Montana Georgia 2009
#> 24856 Michigan California 2009
#> 24857 Minnesota Maine 2009
#> 24858 South Carolina Arkansas 2009
#> 24859 South Carolina Wisconsin 2009
#> 24860 Pennsylvania Kansas 2009
#> 24861 Rhode Island Washington 2009
#> 24862 Texas Connecticut 2009
#> 24863 Connecticut Iowa 2009
#> 24864 New Mexico Mississippi 2009
#> 24865 Missouri South Carolina 2009
#> 24866 Oregon Michigan 2009
#> 24867 South Dakota Florida 2009
#> 24868 Alaska New York 2009
#> 24869 Rhode Island Illinois 2009
#> 24870 Rhode Island California 2009
#> 24871 Nevada Montana 2009
#> 24872 Connecticut Florida 2009
#> 24873 Iowa Pennsylvania 2009
#> 24874 Illinois West Virginia 2009
#> 24875 Iowa Nebraska 2009
#> 24876 Tennessee Indiana 2009
#> 24877 Montana Washington 2009
#> 24878 Pennsylvania Ohio 2009
#> 24879 Washington California 2009
#> 24880 Oklahoma Connecticut 2009
#> 24881 Georgia Florida 2009
#> 24882 Georgia Oklahoma 2009
#> 24883 Nevada New Mexico 2009
#> 24884 Delaware Massachusetts 2009
#> 24885 Wisconsin Vermont 2009
#> 24886 Colorado North Dakota 2009
#> 24887 Maine New Hampshire 2009
#> 24888 Wisconsin Colorado 2009
#> 24889 Michigan Wyoming 2009
#> 24890 Utah Indiana 2009
#> 24891 Tennessee Missouri 2009
#> 24892 Utah Texas 2009
#> 24893 Connecticut Rhode Island 2009
#> 24894 New York Oregon 2009
#> 24895 Michigan Florida 2009
#> 24896 Georgia Virginia 2009
#> 24897 Maryland New Jersey 2009
#> 24898 Washington Montana 2009
#> 24899 Ohio Iowa 2009
#> 24900 North Carolina Maryland 2009
#> 24901 Arkansas Montana 2009
#> 24902 Mississippi Missouri 2009
#> 24903 Oregon Wisconsin 2009
#> 24904 Hawaii Alaska 2009
#> 24905 New Jersey Idaho 2009
#> 24906 Kentucky Idaho 2009
#> 24907 Florida Colorado 2009
#> 24908 Kentucky Massachusetts 2009
#> 24909 Georgia Louisiana 2009
#> 24910 Ohio Rhode Island 2009
#> 24911 South Carolina Wyoming 2009
#> 24912 Utah Tennessee 2009
#> 24913 North Carolina Colorado 2009
#> 24914 Kentucky New York 2009
#> 24915 Hawaii Iowa 2009
#> 24916 Louisiana New Mexico 2009
#> 24917 Alaska Nevada 2009
#> 24918 Delaware Alabama 2009
#> 24919 Washington Hawaii 2009
#> 24920 Montana New Jersey 2009
#> 24921 New Hampshire New York 2009
#> 24922 Maine Nebraska 2009
#> 24923 Oregon Arizona 2009
#> 24924 North Carolina Wisconsin 2009
#> 24925 Georgia Mississippi 2009
#> 24926 Utah South Carolina 2009
#> 24927 Colorado Michigan 2009
#> 24928 Maryland Oklahoma 2009
#> 24929 New Mexico California 2009
#> 24930 Colorado Alaska 2009
#> 24931 Illinois Maryland 2009
#> 24932 Connecticut Pennsylvania 2009
#> 24933 Texas Delaware 2009
#> 24934 Washington Arkansas 2009
#> 24935 New Jersey Georgia 2009
#> 24936 Minnesota Wisconsin 2009
#> 24937 Oregon Hawaii 2009
#> 24938 Colorado Utah 2009
#> 24939 Washington Louisiana 2009
#> 24940 Tennessee Mississippi 2009
#> 24941 Wisconsin Michigan 2009
#> 24942 Washington Massachusetts 2009
#> 24943 Texas South Carolina 2009
#> 24944 Ohio Tennessee 2009
#> 24945 Oklahoma North Dakota 2009
#> 24946 Wisconsin Maryland 2009
#> 24947 Texas Virginia 2009
#> 24948 Rhode Island Minnesota 2009
#> 24949 Washington Missouri 2009
#> 24950 Oregon Ohio 2009
#> 24951 Oklahoma Kansas 2009
#> 24952 Tennessee Kentucky 2009
#> 24953 Connecticut Kansas 2009
#> 24954 Missouri Maine 2009
#> 24955 Washington North Carolina 2009
#> 24956 New Mexico Iowa 2009
#> 24957 New York Montana 2009
#> 24958 Wyoming North Dakota 2009
#> 24959 Missouri Illinois 2009
#> 24960 New York Washington 2009
#> 24961 Texas Idaho 2009
#> 24962 Utah Georgia 2009
#> 24963 Hawaii Oklahoma 2009
#> 24964 Illinois Vermont 2009
#> 24965 West Virginia Vermont 2009
#> 24966 Pennsylvania Michigan 2009
#> 24967 Maine Missouri 2009
#> 24968 Colorado Texas 2009
#> 24969 New York Kansas 2009
#> 24970 New York New Jersey 2009
#> 24971 Connecticut Tennessee 2009
#> 24972 Hawaii North Carolina 2009
#> 24973 Delaware Minnesota 2009
#> 24974 Virginia Indiana 2009
#> 24975 Vermont California 2009
#> 24976 New York Missouri 2009
#> 24977 New York West Virginia 2009
#> 24978 Louisiana Texas 2009
#> 24979 Hawaii Washington 2009
#> 24980 Massachusetts North Dakota 2009
#> 24981 Louisiana Alaska 2009
#> 24982 New Mexico Kansas 2009
#> 24983 Washington Idaho 2009
#> 24984 Illinois Pennsylvania 2009
#> 24985 Virginia Oregon 2009
#> 24986 Tennessee Georgia 2009
#> 24987 Kansas Wisconsin 2009
#> 24988 Michigan Utah 2009
#> 24989 Mississippi Arizona 2009
#> 24990 Massachusetts Nebraska 2009
#> 24991 Ohio Arizona 2009
#> 24992 North Carolina New York 2009
#> 24993 Michigan Nevada 2009
#> 24994 Kentucky Rhode Island 2009
#> 24995 Michigan Louisiana 2009
#> 24996 New Mexico Alabama 2009
#> 24997 Mississippi New Mexico 2009
#> 24998 Indiana South Dakota 2009
#> 24999 Wyoming Idaho 2009
#> 25000 Missouri Wisconsin 2009
#> 25001 California Oregon 2010
#> 25002 California New Mexico 2010
#> 25003 California Maine 2010
#> 25004 California Maryland 2010
#> 25005 California Washington 2010
#> 25006 California Colorado 2010
#> 25007 California New Jersey 2010
#> 25008 Florida Arizona 2010
#> 25009 California Montana 2010
#> 25010 California Illinois 2010
#> 25011 California Ohio 2010
#> 25012 California Nevada 2010
#> 25013 California Florida 2010
#> 25014 California Texas 2010
#> 25015 California North Carolina 2010
#> 25016 California Nebraska 2010
#> 25017 California Minnesota 2010
#> 25018 California Delaware 2010
#> 25019 Minnesota Iowa 2010
#> 25020 California Indiana 2010
#> 25021 Florida Georgia 2010
#> 25022 California New Hampshire 2010
#> 25023 Oregon Kentucky 2010
#> 25024 California Vermont 2010
#> 25025 California Utah 2010
#> 25026 California Missouri 2010
#> 25027 California South Dakota 2010
#> 25028 California Rhode Island 2010
#> 25029 Connecticut Virginia 2010
#> 25030 California Kansas 2010
#> 25031 California Tennessee 2010
#> 25032 California Arkansas 2010
#> 25033 California Pennsylvania 2010
#> 25034 Florida South Carolina 2010
#> 25035 California North Dakota 2010
#> 25036 Minnesota Alabama 2010
#> 25037 California Michigan 2010
#> 25038 California Connecticut 2010
#> 25039 California Hawaii 2010
#> 25040 Florida Louisiana 2010
#> 25041 California Oklahoma 2010
#> 25042 California Alaska 2010
#> 25043 Minnesota Mississippi 2010
#> 25044 Washington Wisconsin 2010
#> 25045 California New York 2010
#> 25046 California Massachusetts 2010
#> 25047 California Idaho 2010
#> 25048 Colorado Wyoming 2010
#> 25049 Minnesota California 2010
#> 25050 California West Virginia 2010
#> 25051 Texas New Mexico 2010
#> 25052 Florida Ohio 2010
#> 25053 Florida New Jersey 2010
#> 25054 California Arizona 2010
#> 25055 Oregon Minnesota 2010
#> 25056 California Georgia 2010
#> 25057 Illinois Connecticut 2010
#> 25058 Louisiana Indiana 2010
#> 25059 Florida Texas 2010
#> 25060 Florida Washington 2010
#> 25061 Minnesota Oklahoma 2010
#> 25062 Illinois Iowa 2010
#> 25063 Idaho Utah 2010
#> 25064 Utah Virginia 2010
#> 25065 California Louisiana 2010
#> 25066 California South Carolina 2010
#> 25067 Minnesota Nebraska 2010
#> 25068 Florida Illinois 2010
#> 25069 Arizona Arkansas 2010
#> 25070 Florida Missouri 2010
#> 25071 Oregon Maine 2010
#> 25072 Massachusetts California 2010
#> 25073 Rhode Island Wisconsin 2010
#> 25074 Florida Kentucky 2010
#> 25075 Minnesota Kansas 2010
#> 25076 Washington Alaska 2010
#> 25077 Connecticut Colorado 2010
#> 25078 Illinois Delaware 2010
#> 25079 Florida Alabama 2010
#> 25080 Minnesota Michigan 2010
#> 25081 Oregon Rhode Island 2010
#> 25082 Idaho North Dakota 2010
#> 25083 Colorado Maryland 2010
#> 25084 Minnesota Florida 2010
#> 25085 Colorado Idaho 2010
#> 25086 Iowa Vermont 2010
#> 25087 Minnesota North Carolina 2010
#> 25088 Washington Pennsylvania 2010
#> 25089 Florida Tennessee 2010
#> 25090 Arizona Oregon 2010
#> 25091 Indiana Mississippi 2010
#> 25092 Florida Nevada 2010
#> 25093 Connecticut Massachusetts 2010
#> 25094 Colorado South Dakota 2010
#> 25095 Rhode Island Wyoming 2010
#> 25096 Massachusetts Hawaii 2010
#> 25097 Michigan Montana 2010
#> 25098 Illinois Oklahoma 2010
#> 25099 California Virginia 2010
#> 25100 Illinois West Virginia 2010
#> 25101 Maryland New Hampshire 2010
#> 25102 Florida Utah 2010
#> 25103 Massachusetts New York 2010
#> 25104 Minnesota Washington 2010
#> 25105 North Dakota South Carolina 2010
#> 25106 Idaho Minnesota 2010
#> 25107 Minnesota Arizona 2010
#> 25108 Illinois Massachusetts 2010
#> 25109 Oregon Delaware 2010
#> 25110 Minnesota Illinois 2010
#> 25111 North Dakota Ohio 2010
#> 25112 Massachusetts New Jersey 2010
#> 25113 Colorado New Mexico 2010
#> 25114 Idaho Indiana 2010
#> 25115 Kansas Texas 2010
#> 25116 North Dakota Kentucky 2010
#> 25117 Minnesota Nevada 2010
#> 25118 Massachusetts Connecticut 2010
#> 25119 Iowa Wisconsin 2010
#> 25120 Illinois California 2010
#> 25121 Kentucky Michigan 2010
#> 25122 Kentucky Arkansas 2010
#> 25123 Iowa Colorado 2010
#> 25124 Illinois Maine 2010
#> 25125 Connecticut Iowa 2010
#> 25126 Colorado Louisiana 2010
#> 25127 Massachusetts Rhode Island 2010
#> 25128 Louisiana Kansas 2010
#> 25129 Tennessee Florida 2010
#> 25130 Massachusetts Vermont 2010
#> 25131 Rhode Island Idaho 2010
#> 25132 Minnesota Hawaii 2010
#> 25133 Alabama Montana 2010
#> 25134 Washington Oregon 2010
#> 25135 Louisiana Virginia 2010
#> 25136 North Dakota South Dakota 2010
#> 25137 Minnesota New Jersey 2010
#> 25138 Florida Connecticut 2010
#> 25139 Colorado North Dakota 2010
#> 25140 West Virginia Georgia 2010
#> 25141 Arizona North Carolina 2010
#> 25142 Maryland Pennsylvania 2010
#> 25143 Indiana Alabama 2010
#> 25144 Wisconsin Massachusetts 2010
#> 25145 Minnesota Tennessee 2010
#> 25146 Minnesota New Mexico 2010
#> 25147 New York Maryland 2010
#> 25148 Colorado Missouri 2010
#> 25149 Kentucky West Virginia 2010
#> 25150 Idaho Wyoming 2010
#> 25151 Michigan Nebraska 2010
#> 25152 Illinois Washington 2010
#> 25153 Idaho Colorado 2010
#> 25154 Florida Oklahoma 2010
#> 25155 Florida Mississippi 2010
#> 25156 Florida Minnesota 2010
#> 25157 Hawaii Florida 2010
#> 25158 Colorado Montana 2010
#> 25159 Delaware Kansas 2010
#> 25160 New York Michigan 2010
#> 25161 Idaho Texas 2010
#> 25162 Indiana New York 2010
#> 25163 Florida Colorado 2010
#> 25164 Connecticut Maine 2010
#> 25165 Rhode Island Kentucky 2010
#> 25166 Georgia Indiana 2010
#> 25167 Idaho Iowa 2010
#> 25168 Massachusetts Ohio 2010
#> 25169 Minnesota New Hampshire 2010
#> 25170 Oregon Connecticut 2010
#> 25171 Illinois Pennsylvania 2010
#> 25172 Illinois Minnesota 2010
#> 25173 New York Iowa 2010
#> 25174 Wisconsin California 2010
#> 25175 Florida Virginia 2010
#> 25176 Connecticut Oregon 2010
#> 25177 Nevada Idaho 2010
#> 25178 Utah Maryland 2010
#> 25179 Indiana South Carolina 2010
#> 25180 Maryland Illinois 2010
#> 25181 South Carolina North Carolina 2010
#> 25182 Illinois Hawaii 2010
#> 25183 Nevada Alaska 2010
#> 25184 Indiana Georgia 2010
#> 25185 Oregon Vermont 2010
#> 25186 Hawaii North Dakota 2010
#> 25187 Florida Massachusetts 2010
#> 25188 California Wisconsin 2010
#> 25189 Idaho Nebraska 2010
#> 25190 Idaho Washington 2010
#> 25191 Minnesota Arkansas 2010
#> 25192 Connecticut California 2010
#> 25193 Colorado Tennessee 2010
#> 25194 Utah Oklahoma 2010
#> 25195 Arizona Utah 2010
#> 25196 New York New Mexico 2010
#> 25197 Montana Arizona 2010
#> 25198 Idaho Delaware 2010
#> 25199 Utah South Dakota 2010
#> 25200 New York Florida 2010
#> 25201 Florida Kansas 2010
#> 25202 Oregon Montana 2010
#> 25203 Illinois Rhode Island 2010
#> 25204 Texas Kentucky 2010
#> 25205 Kansas Mississippi 2010
#> 25206 Hawaii North Carolina 2010
#> 25207 Louisiana Missouri 2010
#> 25208 Kentucky Louisiana 2010
#> 25209 Arkansas Ohio 2010
#> 25210 Florida West Virginia 2010
#> 25211 Louisiana Nevada 2010
#> 25212 Louisiana North Dakota 2010
#> 25213 New Mexico Alabama 2010
#> 25214 Connecticut New Hampshire 2010
#> 25215 Nevada Utah 2010
#> 25216 Nevada Rhode Island 2010
#> 25217 Ohio Virginia 2010
#> 25218 Pennsylvania Indiana 2010
#> 25219 Utah Illinois 2010
#> 25220 Missouri Pennsylvania 2010
#> 25221 Nevada Oregon 2010
#> 25222 Idaho Michigan 2010
#> 25223 Wisconsin Minnesota 2010
#> 25224 Minnesota South Carolina 2010
#> 25225 Kentucky New York 2010
#> 25226 Connecticut Vermont 2010
#> 25227 Texas Florida 2010
#> 25228 Michigan Tennessee 2010
#> 25229 Louisiana South Dakota 2010
#> 25230 Indiana Maine 2010
#> 25231 Florida Idaho 2010
#> 25232 Wisconsin Arizona 2010
#> 25233 Minnesota Delaware 2010
#> 25234 Oregon Maryland 2010
#> 25235 Florida Arkansas 2010
#> 25236 Connecticut Washington 2010
#> 25237 Texas Colorado 2010
#> 25238 Minnesota West Virginia 2010
#> 25239 New York Nevada 2010
#> 25240 Illinois Missouri 2010
#> 25241 Wisconsin Oklahoma 2010
#> 25242 New York Texas 2010
#> 25243 North Dakota New Mexico 2010
#> 25244 South Carolina Wisconsin 2010
#> 25245 Connecticut Wyoming 2010
#> 25246 Maryland Hawaii 2010
#> 25247 Virginia Louisiana 2010
#> 25248 Wisconsin Indiana 2010
#> 25249 Connecticut North Carolina 2010
#> 25250 Florida Rhode Island 2010
#> 25251 Montana Iowa 2010
#> 25252 Louisiana Georgia 2010
#> 25253 Michigan California 2010
#> 25254 Arizona Missouri 2010
#> 25255 Louisiana Tennessee 2010
#> 25256 Kansas Hawaii 2010
#> 25257 Texas Massachusetts 2010
#> 25258 Delaware Alabama 2010
#> 25259 South Dakota Florida 2010
#> 25260 Louisiana Montana 2010
#> 25261 Hawaii Alaska 2010
#> 25262 Iowa Nebraska 2010
#> 25263 Indiana Delaware 2010
#> 25264 Utah New Jersey 2010
#> 25265 Florida Michigan 2010
#> 25266 Hawaii Arizona 2010
#> 25267 Missouri South Carolina 2010
#> 25268 Wisconsin Oregon 2010
#> 25269 New York Connecticut 2010
#> 25270 Georgia Kentucky 2010
#> 25271 Minnesota Rhode Island 2010
#> 25272 Texas Utah 2010
#> 25273 Oklahoma North Dakota 2010
#> 25274 New Jersey Washington 2010
#> 25275 Virginia California 2010
#> 25276 New Jersey Massachusetts 2010
#> 25277 Utah Indiana 2010
#> 25278 Pennsylvania Maryland 2010
#> 25279 North Dakota Nebraska 2010
#> 25280 Ohio Texas 2010
#> 25281 Florida New York 2010
#> 25282 Kentucky Pennsylvania 2010
#> 25283 North Dakota Louisiana 2010
#> 25284 Oregon Kansas 2010
#> 25285 Illinois Arizona 2010
#> 25286 Nebraska Ohio 2010
#> 25287 Kentucky Idaho 2010
#> 25288 Maine Vermont 2010
#> 25289 Ohio Mississippi 2010
#> 25290 New York Nebraska 2010
#> 25291 Utah Idaho 2010
#> 25292 Ohio Nevada 2010
#> 25293 New Mexico Maine 2010
#> 25294 Alaska New York 2010
#> 25295 Massachusetts Florida 2010
#> 25296 New Mexico New Hampshire 2010
#> 25297 Maryland Maine 2010
#> 25298 Utah Tennessee 2010
#> 25299 Delaware Minnesota 2010
#> 25300 Pennsylvania Texas 2010
#> 25301 Illinois Colorado 2010
#> 25302 Rhode Island Virginia 2010
#> 25303 Washington Arkansas 2010
#> 25304 Maine North Carolina 2010
#> 25305 North Carolina Maryland 2010
#> 25306 Connecticut New York 2010
#> 25307 Massachusetts North Dakota 2010
#> 25308 Florida Indiana 2010
#> 25309 New York Delaware 2010
#> 25310 Connecticut Tennessee 2010
#> 25311 Colorado Oklahoma 2010
#> 25312 Kansas Iowa 2010
#> 25313 Washington Connecticut 2010
#> 25314 Maryland West Virginia 2010
#> 25315 New York Ohio 2010
#> 25316 Rhode Island New Mexico 2010
#> 25317 New York North Carolina 2010
#> 25318 Wisconsin Illinois 2010
#> 25319 Illinois South Dakota 2010
#> 25320 Kentucky North Carolina 2010
#> 25321 California Alabama 2010
#> 25322 North Carolina Wisconsin 2010
#> 25323 Illinois New Jersey 2010
#> 25324 California Kentucky 2010
#> 25325 Pennsylvania Kansas 2010
#> 25326 Delaware Nevada 2010
#> 25327 Indiana Illinois 2010
#> 25328 California Mississippi 2010
#> 25329 Arkansas California 2010
#> 25330 North Dakota Iowa 2010
#> 25331 Texas South Carolina 2010
#> 25332 New Jersey Louisiana 2010
#> 25333 Iowa Pennsylvania 2010
#> 25334 Hawaii Oregon 2010
#> 25335 Montana Minnesota 2010
#> 25336 Illinois Georgia 2010
#> 25337 Arkansas North Dakota 2010
#> 25338 South Dakota Massachusetts 2010
#> 25339 Wisconsin New Mexico 2010
#> 25340 Utah California 2010
#> 25341 Colorado Wisconsin 2010
#> 25342 Alaska California 2010
#> 25343 Rhode Island New Hampshire 2010
#> 25344 Florida Maryland 2010
#> 25345 Utah Kansas 2010
#> 25346 Wisconsin Arkansas 2010
#> 25347 North Carolina Missouri 2010
#> 25348 Colorado Texas 2010
#> 25349 Georgia Colorado 2010
#> 25350 Maryland Nevada 2010
#> 25351 Pennsylvania Wisconsin 2010
#> 25352 Indiana Alaska 2010
#> 25353 Wisconsin Rhode Island 2010
#> 25354 Iowa Arizona 2010
#> 25355 North Dakota Virginia 2010
#> 25356 Kentucky Oregon 2010
#> 25357 Washington Montana 2010
#> 25358 Oregon South Dakota 2010
#> 25359 South Dakota Wyoming 2010
#> 25360 Wisconsin Idaho 2010
#> 25361 Florida Montana 2010
#> 25362 Ohio Utah 2010
#> 25363 Minnesota Maine 2010
#> 25364 Georgia Florida 2010
#> 25365 Kentucky Ohio 2010
#> 25366 Kansas Wyoming 2010
#> 25367 Utah Washington 2010
#> 25368 Connecticut South Carolina 2010
#> 25369 Connecticut Rhode Island 2010
#> 25370 Tennessee Missouri 2010
#> 25371 Indiana Nebraska 2010
#> 25372 Arkansas Virginia 2010
#> 25373 Texas Connecticut 2010
#> 25374 Michigan Indiana 2010
#> 25375 New Mexico Mississippi 2010
#> 25376 North Carolina Colorado 2010
#> 25377 Wisconsin Michigan 2010
#> 25378 Massachusetts Texas 2010
#> 25379 Florida Pennsylvania 2010
#> 25380 Texas Oklahoma 2010
#> 25381 Connecticut Maryland 2010
#> 25382 Utah Georgia 2010
#> 25383 Missouri Iowa 2010
#> 25384 New York Hawaii 2010
#> 25385 Washington Illinois 2010
#> 25386 South Carolina Alabama 2010
#> 25387 Texas California 2010
#> 25388 Oregon Ohio 2010
#> 25389 Montana Washington 2010
#> 25390 Utah Texas 2010
#> 25391 Oklahoma Connecticut 2010
#> 25392 Michigan Florida 2010
#> 25393 Wisconsin Vermont 2010
#> 25394 Wisconsin New York 2010
#> 25395 Colorado West Virginia 2010
#> 25396 Wisconsin Colorado 2010
#> 25397 New Jersey Idaho 2010
#> 25398 Michigan Illinois 2010
#> 25399 Illinois Vermont 2010
#> 25400 Utah South Carolina 2010
#> 25401 Connecticut Hawaii 2010
#> 25402 Maine Missouri 2010
#> 25403 Maryland New Jersey 2010
#> 25404 New Mexico Arkansas 2010
#> 25405 New York Minnesota 2010
#> 25406 Missouri Michigan 2010
#> 25407 Pennsylvania Virginia 2010
#> 25408 Virginia Indiana 2010
#> 25409 Washington Idaho 2010
#> 25410 Louisiana New Mexico 2010
#> 25411 Kentucky Massachusetts 2010
#> 25412 Georgia Louisiana 2010
#> 25413 Georgia Arizona 2010
#> 25414 Michigan Wyoming 2010
#> 25415 North Dakota Rhode Island 2010
#> 25416 Montana New Jersey 2010
#> 25417 Washington Colorado 2010
#> 25418 Georgia Mississippi 2010
#> 25419 Alaska Nevada 2010
#> 25420 Georgia Arkansas 2010
#> 25421 New Jersey Georgia 2010
#> 25422 Hawaii New Mexico 2010
#> 25423 Wisconsin Maryland 2010
#> 25424 Colorado Utah 2010
#> 25425 Maryland North Carolina 2010
#> 25426 Delaware New York 2010
#> 25427 Kansas Wisconsin 2010
#> 25428 Texas Delaware 2010
#> 25429 Virginia Tennessee 2010
#> 25430 Oklahoma Kansas 2010
#> 25431 Arkansas Minnesota 2010
#> 25432 Maryland Oklahoma 2010
#> 25433 Tennessee Mississippi 2010
#> 25434 Pennsylvania Florida 2010
#> 25435 Washington Louisiana 2010
#> 25436 Nevada Montana 2010
#> 25437 Washington North Dakota 2010
#> 25438 Louisiana Maine 2010
#> 25439 Delaware Washington 2010
#> 25440 Tennessee Kentucky 2010
#> 25441 West Virginia Nebraska 2010
#> 25442 Connecticut Kansas 2010
#> 25443 Connecticut Florida 2010
#> 25444 Alaska Arizona 2010
#> 25445 New York Pennsylvania 2010
#> 25446 New Hampshire West Virginia 2010
#> 25447 Vermont California 2010
#> 25448 Montana Georgia 2010
#> 25449 Montana Alaska 2010
#> 25450 Maine New Hampshire 2010
#> 25451 Delaware Ohio 2010
#> 25452 West Virginia Vermont 2010
#> 25453 Oregon Iowa 2010
#> 25454 New York Kansas 2010
#> 25455 Washington North Carolina 2010
#> 25456 South Carolina Missouri 2010
#> 25457 Kentucky Indiana 2010
#> 25458 Missouri Illinois 2010
#> 25459 Michigan Rhode Island 2010
#> 25460 Arizona North Dakota 2010
#> 25461 New York New Jersey 2010
#> 25462 Georgia Oklahoma 2010
#> 25463 South Carolina Arkansas 2010
#> 25464 Mississippi New Mexico 2010
#> 25465 Tennessee South Carolina 2010
#> 25466 Texas Idaho 2010
#> 25467 Colorado Minnesota 2010
#> 25468 Kentucky Arizona 2010
#> 25469 Maine Wyoming 2010
#> 25470 Washington Massachusetts 2010
#> 25471 Oregon Wisconsin 2010
#> 25472 Maryland Oregon 2010
#> 25473 Kansas New Mexico 2010
#> 25474 South Carolina Illinois 2010
#> 25475 Washington Missouri 2010
#> 25476 Maryland Washington 2010
#> 25477 North Dakota California 2010
#> 25478 New Mexico Kansas 2010
#> 25479 Ohio Tennessee 2010
#> 25480 Indiana South Dakota 2010
#> 25481 Ohio Arkansas 2010
#> 25482 Alaska North Carolina 2010
#> 25483 Louisiana Alaska 2010
#> 25484 Michigan Utah 2010
#> 25485 New Hampshire New York 2010
#> 25486 Louisiana Texas 2010
#> 25487 Kentucky Georgia 2010
#> 25488 Maine Hawaii 2010
#> 25489 Mississippi Missouri 2010
#> 25490 Colorado Michigan 2010
#> 25491 Maryland Montana 2010
#> 25492 Delaware South Dakota 2010
#> 25493 Arkansas Nebraska 2010
#> 25494 Hawaii Washington 2010
#> 25495 Maine Wisconsin 2010
#> 25496 New York Missouri 2010
#> 25497 Arizona New York 2010
#> 25498 North Dakota Alaska 2010
#> 25499 Michigan Nevada 2010
#> 25500 West Virginia Maryland 2010
#> 25501 California Oregon 2011
#> 25502 California New Mexico 2011
#> 25503 California Maine 2011
#> 25504 California Colorado 2011
#> 25505 California Maryland 2011
#> 25506 California Washington 2011
#> 25507 California New Jersey 2011
#> 25508 California Montana 2011
#> 25509 Florida Arizona 2011
#> 25510 California Illinois 2011
#> 25511 California Ohio 2011
#> 25512 California North Carolina 2011
#> 25513 California Florida 2011
#> 25514 California Nebraska 2011
#> 25515 California Nevada 2011
#> 25516 California Texas 2011
#> 25517 Minnesota Iowa 2011
#> 25518 California Delaware 2011
#> 25519 California Minnesota 2011
#> 25520 California Indiana 2011
#> 25521 California Vermont 2011
#> 25522 Oregon Kentucky 2011
#> 25523 California New Hampshire 2011
#> 25524 Florida Georgia 2011
#> 25525 California Missouri 2011
#> 25526 California Kansas 2011
#> 25527 California Utah 2011
#> 25528 California Rhode Island 2011
#> 25529 California South Dakota 2011
#> 25530 Connecticut Virginia 2011
#> 25531 California Tennessee 2011
#> 25532 California Pennsylvania 2011
#> 25533 California Arkansas 2011
#> 25534 California Michigan 2011
#> 25535 Minnesota Alabama 2011
#> 25536 Washington Wisconsin 2011
#> 25537 California Connecticut 2011
#> 25538 Florida South Carolina 2011
#> 25539 California North Dakota 2011
#> 25540 California Oklahoma 2011
#> 25541 California New York 2011
#> 25542 Florida Louisiana 2011
#> 25543 Minnesota Mississippi 2011
#> 25544 California Alaska 2011
#> 25545 California Hawaii 2011
#> 25546 California Massachusetts 2011
#> 25547 California Idaho 2011
#> 25548 Colorado Wyoming 2011
#> 25549 Minnesota California 2011
#> 25550 California West Virginia 2011
#> 25551 Texas New Mexico 2011
#> 25552 Florida Ohio 2011
#> 25553 Oregon Minnesota 2011
#> 25554 Minnesota Arizona 2011
#> 25555 California Georgia 2011
#> 25556 Florida New Jersey 2011
#> 25557 Illinois Connecticut 2011
#> 25558 Louisiana Indiana 2011
#> 25559 Minnesota Oklahoma 2011
#> 25560 California South Carolina 2011
#> 25561 Florida Texas 2011
#> 25562 California Louisiana 2011
#> 25563 Idaho Utah 2011
#> 25564 Utah Virginia 2011
#> 25565 Florida Washington 2011
#> 25566 Illinois Iowa 2011
#> 25567 Florida Missouri 2011
#> 25568 Rhode Island Wisconsin 2011
#> 25569 Minnesota Kansas 2011
#> 25570 Florida Illinois 2011
#> 25571 Oregon Maine 2011
#> 25572 Arizona Arkansas 2011
#> 25573 Minnesota Nebraska 2011
#> 25574 Minnesota Michigan 2011
#> 25575 Massachusetts California 2011
#> 25576 Florida Kentucky 2011
#> 25577 Connecticut Colorado 2011
#> 25578 Washington Alaska 2011
#> 25579 Colorado Maryland 2011
#> 25580 Illinois Delaware 2011
#> 25581 Iowa Vermont 2011
#> 25582 Florida Alabama 2011
#> 25583 Colorado Idaho 2011
#> 25584 Oregon Rhode Island 2011
#> 25585 Minnesota North Carolina 2011
#> 25586 Idaho North Dakota 2011
#> 25587 Minnesota Florida 2011
#> 25588 Florida Tennessee 2011
#> 25589 Connecticut Massachusetts 2011
#> 25590 Washington Pennsylvania 2011
#> 25591 Indiana Mississippi 2011
#> 25592 Arizona Oregon 2011
#> 25593 Florida Nevada 2011
#> 25594 Massachusetts Hawaii 2011
#> 25595 Colorado South Dakota 2011
#> 25596 Rhode Island Wyoming 2011
#> 25597 Hawaii Montana 2011
#> 25598 Illinois Oklahoma 2011
#> 25599 California Virginia 2011
#> 25600 Michigan West Virginia 2011
#> 25601 Maryland New Hampshire 2011
#> 25602 North Dakota South Carolina 2011
#> 25603 Florida Utah 2011
#> 25604 Minnesota Illinois 2011
#> 25605 California Arizona 2011
#> 25606 Illinois Massachusetts 2011
#> 25607 Massachusetts New York 2011
#> 25608 Minnesota Washington 2011
#> 25609 Idaho Minnesota 2011
#> 25610 North Dakota Ohio 2011
#> 25611 Oregon Delaware 2011
#> 25612 Massachusetts New Jersey 2011
#> 25613 North Dakota Kentucky 2011
#> 25614 Colorado New Mexico 2011
#> 25615 Idaho Indiana 2011
#> 25616 Kansas Texas 2011
#> 25617 Minnesota Nevada 2011
#> 25618 Colorado Montana 2011
#> 25619 Iowa Wisconsin 2011
#> 25620 Massachusetts Connecticut 2011
#> 25621 Illinois California 2011
#> 25622 Illinois Maine 2011
#> 25623 Kentucky Michigan 2011
#> 25624 Kentucky Arkansas 2011
#> 25625 Texas Colorado 2011
#> 25626 Connecticut Vermont 2011
#> 25627 Connecticut Iowa 2011
#> 25628 Colorado Louisiana 2011
#> 25629 Louisiana Kansas 2011
#> 25630 Massachusetts Rhode Island 2011
#> 25631 Colorado Tennessee 2011
#> 25632 Tennessee Florida 2011
#> 25633 Rhode Island Idaho 2011
#> 25634 Minnesota Hawaii 2011
#> 25635 Washington Oregon 2011
#> 25636 Louisiana Virginia 2011
#> 25637 Kansas Missouri 2011
#> 25638 North Dakota South Dakota 2011
#> 25639 Minnesota New Jersey 2011
#> 25640 Florida Connecticut 2011
#> 25641 Colorado North Dakota 2011
#> 25642 New York Maryland 2011
#> 25643 West Virginia Georgia 2011
#> 25644 Arizona North Carolina 2011
#> 25645 Idaho Wyoming 2011
#> 25646 Indiana Alabama 2011
#> 25647 Minnesota West Virginia 2011
#> 25648 Minnesota New Mexico 2011
#> 25649 Florida Pennsylvania 2011
#> 25650 Idaho Nebraska 2011
#> 25651 Idaho Colorado 2011
#> 25652 Illinois Washington 2011
#> 25653 Wisconsin Massachusetts 2011
#> 25654 Utah Oklahoma 2011
#> 25655 Florida Mississippi 2011
#> 25656 Hawaii Florida 2011
#> 25657 Rhode Island Kentucky 2011
#> 25658 Rhode Island Minnesota 2011
#> 25659 Virginia Alaska 2011
#> 25660 Oregon Kansas 2011
#> 25661 Connecticut Maine 2011
#> 25662 Oregon Vermont 2011
#> 25663 New York Michigan 2011
#> 25664 Idaho Iowa 2011
#> 25665 Indiana New York 2011
#> 25666 Idaho Texas 2011
#> 25667 Connecticut New Hampshire 2011
#> 25668 Georgia Indiana 2011
#> 25669 Massachusetts Ohio 2011
#> 25670 Oregon Connecticut 2011
#> 25671 Minnesota Tennessee 2011
#> 25672 Florida Virginia 2011
#> 25673 Hawaii North Dakota 2011
#> 25674 Indiana South Carolina 2011
#> 25675 Connecticut Oregon 2011
#> 25676 Michigan Nebraska 2011
#> 25677 Utah Maryland 2011
#> 25678 Minnesota Arkansas 2011
#> 25679 Maryland Illinois 2011
#> 25680 South Carolina North Carolina 2011
#> 25681 Louisiana Montana 2011
#> 25682 Illinois Hawaii 2011
#> 25683 Indiana Georgia 2011
#> 25684 Nebraska Pennsylvania 2011
#> 25685 Connecticut California 2011
#> 25686 Colorado Arizona 2011
#> 25687 New York Iowa 2011
#> 25688 Iowa Colorado 2011
#> 25689 Nevada Idaho 2011
#> 25690 Idaho Washington 2011
#> 25691 Colorado Wisconsin 2011
#> 25692 Florida Oklahoma 2011
#> 25693 Arizona Utah 2011
#> 25694 New York New Mexico 2011
#> 25695 Wisconsin California 2011
#> 25696 Idaho Delaware 2011
#> 25697 Florida Massachusetts 2011
#> 25698 Utah South Dakota 2011
#> 25699 New York Florida 2011
#> 25700 Illinois Missouri 2011
#> 25701 Colorado Minnesota 2011
#> 25702 Texas Kentucky 2011
#> 25703 Kentucky Louisiana 2011
#> 25704 Illinois Rhode Island 2011
#> 25705 Kansas Mississippi 2011
#> 25706 Hawaii North Carolina 2011
#> 25707 Utah Illinois 2011
#> 25708 Minnesota New Hampshire 2011
#> 25709 Illinois West Virginia 2011
#> 25710 Arkansas Ohio 2011
#> 25711 Texas Minnesota 2011
#> 25712 Delaware Kansas 2011
#> 25713 Louisiana Nevada 2011
#> 25714 Louisiana North Dakota 2011
#> 25715 New Mexico Alabama 2011
#> 25716 Florida Colorado 2011
#> 25717 Nevada Utah 2011
#> 25718 South Dakota Florida 2011
#> 25719 Nevada Rhode Island 2011
#> 25720 Florida Idaho 2011
#> 25721 Ohio Virginia 2011
#> 25722 Nevada Oregon 2011
#> 25723 Idaho Michigan 2011
#> 25724 Indiana Maine 2011
#> 25725 Kentucky New York 2011
#> 25726 Minnesota South Carolina 2011
#> 25727 Iowa Indiana 2011
#> 25728 New York Pennsylvania 2011
#> 25729 Indiana Delaware 2011
#> 25730 Michigan Tennessee 2011
#> 25731 Utah Arizona 2011
#> 25732 Louisiana South Dakota 2011
#> 25733 Connecticut Wisconsin 2011
#> 25734 West Virginia Montana 2011
#> 25735 Oregon Maryland 2011
#> 25736 Florida Arkansas 2011
#> 25737 Connecticut Washington 2011
#> 25738 Wisconsin Vermont 2011
#> 25739 Louisiana Missouri 2011
#> 25740 New York Nevada 2011
#> 25741 Virginia Louisiana 2011
#> 25742 New York Texas 2011
#> 25743 North Dakota New Mexico 2011
#> 25744 Delaware Alabama 2011
#> 25745 Connecticut Wyoming 2011
#> 25746 Maryland Hawaii 2011
#> 25747 Connecticut North Carolina 2011
#> 25748 Montana Iowa 2011
#> 25749 Florida Rhode Island 2011
#> 25750 Louisiana Georgia 2011
#> 25751 Texas Indiana 2011
#> 25752 Louisiana Tennessee 2011
#> 25753 Minnesota Delaware 2011
#> 25754 New Jersey Massachusetts 2011
#> 25755 Illinois Minnesota 2011
#> 25756 Texas Florida 2011
#> 25757 Florida Kansas 2011
#> 25758 Michigan California 2011
#> 25759 Kansas Hawaii 2011
#> 25760 Texas Massachusetts 2011
#> 25761 Wisconsin Oklahoma 2011
#> 25762 Hawaii Alaska 2011
#> 25763 Iowa Nebraska 2011
#> 25764 Utah New Jersey 2011
#> 25765 Missouri South Carolina 2011
#> 25766 Florida Michigan 2011
#> 25767 Wisconsin Oregon 2011
#> 25768 Georgia Kentucky 2011
#> 25769 Minnesota Rhode Island 2011
#> 25770 Texas Utah 2011
#> 25771 Oklahoma North Dakota 2011
#> 25772 Kentucky Nebraska 2011
#> 25773 New Jersey Washington 2011
#> 25774 Virginia California 2011
#> 25775 Massachusetts Montana 2011
#> 25776 Ohio Texas 2011
#> 25777 Florida New York 2011
#> 25778 Texas Connecticut 2011
#> 25779 North Dakota Louisiana 2011
#> 25780 Kentucky Pennsylvania 2011
#> 25781 Maine Vermont 2011
#> 25782 Nebraska Ohio 2011
#> 25783 Maryland Arizona 2011
#> 25784 Utah Idaho 2011
#> 25785 Ohio Mississippi 2011
#> 25786 Kentucky Missouri 2011
#> 25787 Ohio Nevada 2011
#> 25788 New Mexico Maine 2011
#> 25789 Alaska New York 2011
#> 25790 South Carolina Wisconsin 2011
#> 25791 Florida West Virginia 2011
#> 25792 Massachusetts Florida 2011
#> 25793 New Mexico New Hampshire 2011
#> 25794 Maryland Maine 2011
#> 25795 Washington Oklahoma 2011
#> 25796 Utah Tennessee 2011
#> 25797 Arkansas California 2011
#> 25798 North Dakota Iowa 2011
#> 25799 Florida Maryland 2011
#> 25800 Illinois Colorado 2011
#> 25801 Michigan Indiana 2011
#> 25802 Rhode Island Virginia 2011
#> 25803 Washington Arkansas 2011
#> 25804 Wisconsin Minnesota 2011
#> 25805 Maine North Carolina 2011
#> 25806 New York Nebraska 2011
#> 25807 Connecticut New York 2011
#> 25808 Kansas Arizona 2011
#> 25809 Connecticut Tennessee 2011
#> 25810 Massachusetts North Dakota 2011
#> 25811 Washington Texas 2011
#> 25812 Wisconsin Arizona 2011
#> 25813 Kansas Iowa 2011
#> 25814 Oregon Missouri 2011
#> 25815 West Virginia Maryland 2011
#> 25816 New York Ohio 2011
#> 25817 Texas Idaho 2011
#> 25818 Michigan Wisconsin 2011
#> 25819 Rhode Island New Mexico 2011
#> 25820 Oklahoma Connecticut 2011
#> 25821 New York North Carolina 2011
#> 25822 Maryland West Virginia 2011
#> 25823 Wisconsin Illinois 2011
#> 25824 Kentucky North Carolina 2011
#> 25825 California Alabama 2011
#> 25826 Illinois New Jersey 2011
#> 25827 California Kentucky 2011
#> 25828 Kentucky Maryland 2011
#> 25829 Delaware South Dakota 2011
#> 25830 Utah Kansas 2011
#> 25831 Delaware Nevada 2011
#> 25832 California Mississippi 2011
#> 25833 Texas South Carolina 2011
#> 25834 Hawaii Oregon 2011
#> 25835 Utah Texas 2011
#> 25836 Colorado Alaska 2011
#> 25837 Illinois Georgia 2011
#> 25838 Missouri Pennsylvania 2011
#> 25839 Pennsylvania Kansas 2011
#> 25840 Arkansas North Dakota 2011
#> 25841 South Dakota Massachusetts 2011
#> 25842 Wisconsin New Mexico 2011
#> 25843 Connecticut Maryland 2011
#> 25844 New York Delaware 2011
#> 25845 Utah California 2011
#> 25846 South Carolina Arkansas 2011
#> 25847 Rhode Island New Hampshire 2011
#> 25848 Washington Connecticut 2011
#> 25849 Georgia Colorado 2011
#> 25850 Hawaii Virginia 2011
#> 25851 Nevada Montana 2011
#> 25852 Utah Indiana 2011
#> 25853 South Carolina Illinois 2011
#> 25854 Wisconsin Rhode Island 2011
#> 25855 Kentucky Oregon 2011
#> 25856 South Dakota Wyoming 2011
#> 25857 Louisiana Alaska 2011
#> 25858 Colorado Utah 2011
#> 25859 North Carolina Louisiana 2011
#> 25860 North Dakota Nebraska 2011
#> 25861 Minnesota Maine 2011
#> 25862 Georgia Florida 2011
#> 25863 Texas Virginia 2011
#> 25864 Washington Ohio 2011
#> 25865 Mississippi Missouri 2011
#> 25866 Kansas Wyoming 2011
#> 25867 Utah Washington 2011
#> 25868 Connecticut South Carolina 2011
#> 25869 Tennessee Missouri 2011
#> 25870 Connecticut Rhode Island 2011
#> 25871 Massachusetts Texas 2011
#> 25872 Washington California 2011
#> 25873 Kentucky Minnesota 2011
#> 25874 Washington Illinois 2011
#> 25875 New Mexico Mississippi 2011
#> 25876 North Carolina Colorado 2011
#> 25877 Ohio Utah 2011
#> 25878 Georgia Arkansas 2011
#> 25879 Utah Georgia 2011
#> 25880 Colorado West Virginia 2011
#> 25881 Missouri Iowa 2011
#> 25882 Michigan Montana 2011
#> 25883 Minnesota Wisconsin 2011
#> 25884 New York Hawaii 2011
#> 25885 Iowa Pennsylvania 2011
#> 25886 South Carolina Alabama 2011
#> 25887 Montana Washington 2011
#> 25888 Maryland Nevada 2011
#> 25889 Wisconsin Colorado 2011
#> 25890 Arkansas Idaho 2011
#> 25891 New Mexico Arkansas 2011
#> 25892 Oregon South Dakota 2011
#> 25893 Michigan Florida 2011
#> 25894 Indiana Michigan 2011
#> 25895 Wisconsin New York 2011
#> 25896 Washington Montana 2011
#> 25897 Montana New Jersey 2011
#> 25898 Michigan Illinois 2011
#> 25899 Pennsylvania Indiana 2011
#> 25900 Illinois Vermont 2011
#> 25901 Utah South Carolina 2011
#> 25902 Wisconsin Tennessee 2011
#> 25903 Connecticut Hawaii 2011
#> 25904 Vermont California 2011
#> 25905 Arkansas Minnesota 2011
#> 25906 Kentucky Idaho 2011
#> 25907 New York Connecticut 2011
#> 25908 Wisconsin Maryland 2011
#> 25909 Michigan Louisiana 2011
#> 25910 Delaware Minnesota 2011
#> 25911 Connecticut Delaware 2011
#> 25912 Washington Idaho 2011
#> 25913 Kentucky Massachusetts 2011
#> 25914 Maryland New Jersey 2011
#> 25915 Louisiana New Mexico 2011
#> 25916 Indiana South Dakota 2011
#> 25917 New York Vermont 2011
#> 25918 Kentucky West Virginia 2011
#> 25919 New Mexico Washington 2011
#> 25920 Oregon Montana 2011
#> 25921 Michigan Wyoming 2011
#> 25922 North Dakota Rhode Island 2011
#> 25923 Idaho Oklahoma 2011
#> 25924 Missouri Mississippi 2011
#> 25925 Washington Colorado 2011
#> 25926 Kentucky Ohio 2011
#> 25927 Alaska Nevada 2011
#> 25928 Arizona Missouri 2011
#> 25929 Georgia Louisiana 2011
#> 25930 New Jersey Georgia 2011
#> 25931 Hawaii New Mexico 2011
#> 25932 Maryland North Carolina 2011
#> 25933 Delaware New York 2011
#> 25934 Louisiana Maine 2011
#> 25935 Oklahoma Kansas 2011
#> 25936 Georgia Mississippi 2011
#> 25937 Pennsylvania Florida 2011
#> 25938 North Dakota California 2011
#> 25939 Iowa Oklahoma 2011
#> 25940 Connecticut Oklahoma 2011
#> 25941 Washington North Dakota 2011
#> 25942 Pennsylvania Michigan 2011
#> 25943 Tennessee Kentucky 2011
#> 25944 Montana Alaska 2011
#> 25945 Connecticut Kansas 2011
#> 25946 Nevada Iowa 2011
#> 25947 Connecticut Florida 2011
#> 25948 Minnesota Texas 2011
#> 25949 Florida Indiana 2011
#> 25950 New Hampshire West Virginia 2011
#> 25951 Nevada Nebraska 2011
#> 25952 Washington Maryland 2011
#> 25953 Montana Georgia 2011
#> 25954 Arizona North Dakota 2011
#> 25955 Oregon Wisconsin 2011
#> 25956 New York Idaho 2011
#> 25957 Maine New Hampshire 2011
#> 25958 Louisiana Illinois 2011
#> 25959 Pennsylvania Texas 2011
#> 25960 Oregon Ohio 2011
#> 25961 Idaho Maryland 2011
#> 25962 Ohio Arkansas 2011
#> 25963 Washington Missouri 2011
#> 25964 New York Kansas 2011
#> 25965 Washington North Carolina 2011
#> 25966 South Carolina Missouri 2011
#> 25967 Michigan Rhode Island 2011
#> 25968 New York New Jersey 2011
#> 25969 Utah Alabama 2011
#> 25970 Mississippi New Mexico 2011
#> 25971 Utah Delaware 2011
#> 25972 Pennsylvania Virginia 2011
#> 25973 Tennessee South Carolina 2011
#> 25974 South Carolina Texas 2011
#> 25975 Michigan Maryland 2011
#> 25976 Oregon Iowa 2011
#> 25977 Louisiana Arizona 2011
#> 25978 Maine Wyoming 2011
#> 25979 Washington Massachusetts 2011
#> 25980 Kansas Wisconsin 2011
#> 25981 Maryland Oregon 2011
#> 25982 Arkansas Montana 2011
#> 25983 Ohio Tennessee 2011
#> 25984 Kansas New Mexico 2011
#> 25985 Illinois Pennsylvania 2011
#> 25986 New Mexico Kansas 2011
#> 25987 Alaska North Carolina 2011
#> 25988 Maine Wisconsin 2011
#> 25989 Michigan Utah 2011
#> 25990 New Hampshire New York 2011
#> 25991 Hawaii Washington 2011
#> 25992 Kentucky Georgia 2011
#> 25993 Maine Hawaii 2011
#> 25994 Alaska California 2011
#> 25995 Hawaii Arizona 2011
#> 25996 Colorado Michigan 2011
#> 25997 Virginia Indiana 2011
#> 25998 Illinois South Dakota 2011
#> 25999 Arizona New York 2011
#> 26000 Michigan Nevada 2011
#> 26001 California Oregon 2012
#> 26002 California New Mexico 2012
#> 26003 California Colorado 2012
#> 26004 California Maine 2012
#> 26005 California Maryland 2012
#> 26006 California Washington 2012
#> 26007 Florida Arizona 2012
#> 26008 California Montana 2012
#> 26009 California New Jersey 2012
#> 26010 California Ohio 2012
#> 26011 California Illinois 2012
#> 26012 California Nevada 2012
#> 26013 California North Carolina 2012
#> 26014 California Florida 2012
#> 26015 California Texas 2012
#> 26016 Minnesota Iowa 2012
#> 26017 California Nebraska 2012
#> 26018 California Delaware 2012
#> 26019 California Minnesota 2012
#> 26020 California Indiana 2012
#> 26021 Oregon Kentucky 2012
#> 26022 California Utah 2012
#> 26023 Florida Georgia 2012
#> 26024 California Vermont 2012
#> 26025 California Rhode Island 2012
#> 26026 California Missouri 2012
#> 26027 California Kansas 2012
#> 26028 California New Hampshire 2012
#> 26029 Minnesota Virginia 2012
#> 26030 California South Dakota 2012
#> 26031 Minnesota Alabama 2012
#> 26032 California Connecticut 2012
#> 26033 Oregon Tennessee 2012
#> 26034 Florida South Carolina 2012
#> 26035 California Pennsylvania 2012
#> 26036 California Michigan 2012
#> 26037 California Arkansas 2012
#> 26038 Washington Wisconsin 2012
#> 26039 California North Dakota 2012
#> 26040 California Hawaii 2012
#> 26041 California Oklahoma 2012
#> 26042 Minnesota Mississippi 2012
#> 26043 Florida Louisiana 2012
#> 26044 California Alaska 2012
#> 26045 California New York 2012
#> 26046 California Massachusetts 2012
#> 26047 Colorado Wyoming 2012
#> 26048 Colorado Idaho 2012
#> 26049 Minnesota California 2012
#> 26050 California West Virginia 2012
#> 26051 Texas New Mexico 2012
#> 26052 Florida Ohio 2012
#> 26053 Oregon Minnesota 2012
#> 26054 Florida Texas 2012
#> 26055 Minnesota Arizona 2012
#> 26056 Illinois Connecticut 2012
#> 26057 Florida New Jersey 2012
#> 26058 Louisiana Indiana 2012
#> 26059 Idaho Utah 2012
#> 26060 Minnesota Oklahoma 2012
#> 26061 Arizona Arkansas 2012
#> 26062 Colorado Virginia 2012
#> 26063 California Louisiana 2012
#> 26064 California Georgia 2012
#> 26065 Florida Washington 2012
#> 26066 Arizona Missouri 2012
#> 26067 Louisiana Kansas 2012
#> 26068 California South Carolina 2012
#> 26069 Rhode Island Wisconsin 2012
#> 26070 Minnesota Nebraska 2012
#> 26071 Florida Illinois 2012
#> 26072 Oregon Maine 2012
#> 26073 Massachusetts California 2012
#> 26074 Iowa Vermont 2012
#> 26075 Washington Alaska 2012
#> 26076 South Carolina North Carolina 2012
#> 26077 Illinois Iowa 2012
#> 26078 Florida Kentucky 2012
#> 26079 Minnesota Michigan 2012
#> 26080 Connecticut Colorado 2012
#> 26081 Florida Alabama 2012
#> 26082 Colorado Maryland 2012
#> 26083 Colorado North Dakota 2012
#> 26084 Oregon Rhode Island 2012
#> 26085 Minnesota Florida 2012
#> 26086 California Idaho 2012
#> 26087 Colorado Nevada 2012
#> 26088 Indiana Tennessee 2012
#> 26089 Indiana Mississippi 2012
#> 26090 Arizona Oregon 2012
#> 26091 Connecticut Massachusetts 2012
#> 26092 Florida Pennsylvania 2012
#> 26093 Massachusetts Hawaii 2012
#> 26094 Illinois Delaware 2012
#> 26095 Colorado South Dakota 2012
#> 26096 Hawaii Montana 2012
#> 26097 Rhode Island Wyoming 2012
#> 26098 Colorado West Virginia 2012
#> 26099 Florida Utah 2012
#> 26100 Maryland New Hampshire 2012
#> 26101 Massachusetts New York 2012
#> 26102 Florida Oklahoma 2012
#> 26103 North Dakota South Carolina 2012
#> 26104 Minnesota Washington 2012
#> 26105 Colorado New Mexico 2012
#> 26106 Idaho Minnesota 2012
#> 26107 Minnesota Illinois 2012
#> 26108 California Arizona 2012
#> 26109 Massachusetts New Jersey 2012
#> 26110 Colorado Montana 2012
#> 26111 North Dakota Ohio 2012
#> 26112 Oregon Delaware 2012
#> 26113 Iowa Wisconsin 2012
#> 26114 Kansas Texas 2012
#> 26115 Florida Virginia 2012
#> 26116 Massachusetts Connecticut 2012
#> 26117 North Dakota Kentucky 2012
#> 26118 Illinois Massachusetts 2012
#> 26119 Oklahoma Indiana 2012
#> 26120 Minnesota Kansas 2012
#> 26121 Tennessee Florida 2012
#> 26122 Illinois California 2012
#> 26123 Kentucky Arkansas 2012
#> 26124 Iowa Colorado 2012
#> 26125 Maine North Carolina 2012
#> 26126 Kentucky Michigan 2012
#> 26127 Illinois Maine 2012
#> 26128 Delaware North Dakota 2012
#> 26129 Massachusetts Rhode Island 2012
#> 26130 Nebraska Idaho 2012
#> 26131 Florida Nevada 2012
#> 26132 Connecticut Vermont 2012
#> 26133 Connecticut Iowa 2012
#> 26134 Colorado Louisiana 2012
#> 26135 Illinois Missouri 2012
#> 26136 Nebraska Pennsylvania 2012
#> 26137 Minnesota Hawaii 2012
#> 26138 West Virginia Georgia 2012
#> 26139 New York Maryland 2012
#> 26140 Minnesota Tennessee 2012
#> 26141 Minnesota New Jersey 2012
#> 26142 Florida Connecticut 2012
#> 26143 Washington Oregon 2012
#> 26144 Delaware South Dakota 2012
#> 26145 Indiana Alabama 2012
#> 26146 Minnesota New Mexico 2012
#> 26147 Idaho Virginia 2012
#> 26148 Idaho Wyoming 2012
#> 26149 Michigan West Virginia 2012
#> 26150 Wisconsin Massachusetts 2012
#> 26151 Florida Nebraska 2012
#> 26152 Idaho Colorado 2012
#> 26153 Colorado Washington 2012
#> 26154 Florida Mississippi 2012
#> 26155 Virginia Alaska 2012
#> 26156 Rhode Island Kentucky 2012
#> 26157 Rhode Island Minnesota 2012
#> 26158 Illinois Oklahoma 2012
#> 26159 Connecticut Maine 2012
#> 26160 Oregon Kansas 2012
#> 26161 Oregon Vermont 2012
#> 26162 Indiana New York 2012
#> 26163 Hawaii Florida 2012
#> 26164 New York Michigan 2012
#> 26165 Indiana Missouri 2012
#> 26166 North Dakota Nebraska 2012
#> 26167 Montana Iowa 2012
#> 26168 Hawaii Idaho 2012
#> 26169 Florida Colorado 2012
#> 26170 Hawaii North Carolina 2012
#> 26171 Georgia Indiana 2012
#> 26172 Connecticut New Hampshire 2012
#> 26173 Massachusetts Ohio 2012
#> 26174 Connecticut Tennessee 2012
#> 26175 Oregon Connecticut 2012
#> 26176 Connecticut Oregon 2012
#> 26177 Indiana Georgia 2012
#> 26178 Colorado Arizona 2012
#> 26179 Hawaii North Dakota 2012
#> 26180 New York Pennsylvania 2012
#> 26181 Utah Maryland 2012
#> 26182 Minnesota Arkansas 2012
#> 26183 Maryland Illinois 2012
#> 26184 Louisiana Virginia 2012
#> 26185 Minnesota South Carolina 2012
#> 26186 Idaho Texas 2012
#> 26187 Minnesota Nevada 2012
#> 26188 Louisiana Montana 2012
#> 26189 Connecticut California 2012
#> 26190 Utah Oklahoma 2012
#> 26191 California Wisconsin 2012
#> 26192 Arizona Utah 2012
#> 26193 North Dakota New Mexico 2012
#> 26194 Illinois Hawaii 2012
#> 26195 Wisconsin California 2012
#> 26196 Washington North Carolina 2012
#> 26197 Florida Massachusetts 2012
#> 26198 Louisiana Rhode Island 2012
#> 26199 New York Florida 2012
#> 26200 Louisiana Mississippi 2012
#> 26201 Indiana Delaware 2012
#> 26202 Maryland Washington 2012
#> 26203 Colorado Minnesota 2012
#> 26204 Texas Kentucky 2012
#> 26205 Nevada Utah 2012
#> 26206 Kentucky Louisiana 2012
#> 26207 New Mexico Alabama 2012
#> 26208 Delaware Kansas 2012
#> 26209 North Dakota South Dakota 2012
#> 26210 South Dakota Florida 2012
#> 26211 Montana Idaho 2012
#> 26212 Minnesota West Virginia 2012
#> 26213 New York Iowa 2012
#> 26214 Utah Illinois 2012
#> 26215 Minnesota New Hampshire 2012
#> 26216 Arkansas Ohio 2012
#> 26217 Texas Minnesota 2012
#> 26218 Oklahoma North Dakota 2012
#> 26219 Utah Indiana 2012
#> 26220 Florida New York 2012
#> 26221 New York New Mexico 2012
#> 26222 Minnesota Delaware 2012
#> 26223 North Dakota Michigan 2012
#> 26224 Indiana Maine 2012
#> 26225 Nevada Oregon 2012
#> 26226 Minnesota Rhode Island 2012
#> 26227 South Carolina Missouri 2012
#> 26228 Washington Pennsylvania 2012
#> 26229 California Virginia 2012
#> 26230 Tennessee South Carolina 2012
#> 26231 Louisiana Nevada 2012
#> 26232 Wisconsin Tennessee 2012
#> 26233 Maine Vermont 2012
#> 26234 New York Texas 2012
#> 26235 Utah Arizona 2012
#> 26236 Iowa Nebraska 2012
#> 26237 Idaho Iowa 2012
#> 26238 West Virginia Montana 2012
#> 26239 Oregon Maryland 2012
#> 26240 Iowa Arkansas 2012
#> 26241 Utah Kansas 2012
#> 26242 Utah South Dakota 2012
#> 26243 Texas Colorado 2012
#> 26244 Connecticut North Carolina 2012
#> 26245 Florida Rhode Island 2012
#> 26246 Alaska New York 2012
#> 26247 South Carolina Wisconsin 2012
#> 26248 Kentucky Indiana 2012
#> 26249 Virginia Louisiana 2012
#> 26250 Texas Massachusetts 2012
#> 26251 Delaware Alabama 2012
#> 26252 Connecticut Wyoming 2012
#> 26253 Maryland Hawaii 2012
#> 26254 Utah Texas 2012
#> 26255 New York Nevada 2012
#> 26256 Connecticut Florida 2012
#> 26257 Louisiana Georgia 2012
#> 26258 Florida West Virginia 2012
#> 26259 New Jersey Massachusetts 2012
#> 26260 Ohio Virginia 2012
#> 26261 Illinois Minnesota 2012
#> 26262 Michigan Tennessee 2012
#> 26263 Kansas Oklahoma 2012
#> 26264 California Mississippi 2012
#> 26265 Indiana Idaho 2012
#> 26266 Kansas Hawaii 2012
#> 26267 Hawaii Alaska 2012
#> 26268 Utah New Jersey 2012
#> 26269 Wisconsin Oregon 2012
#> 26270 Texas Utah 2012
#> 26271 Rhode Island Nebraska 2012
#> 26272 Florida Michigan 2012
#> 26273 Connecticut Washington 2012
#> 26274 Georgia Kentucky 2012
#> 26275 Virginia California 2012
#> 26276 Rhode Island North Dakota 2012
#> 26277 Colorado Wisconsin 2012
#> 26278 Massachusetts Montana 2012
#> 26279 Kentucky Missouri 2012
#> 26280 Kentucky Pennsylvania 2012
#> 26281 Texas Connecticut 2012
#> 26282 North Dakota Louisiana 2012
#> 26283 South Carolina Arkansas 2012
#> 26284 Maine Maryland 2012
#> 26285 Louisiana Arizona 2012
#> 26286 Georgia New Hampshire 2012
#> 26287 South Carolina Illinois 2012
#> 26288 Massachusetts Vermont 2012
#> 26289 Washington Texas 2012
#> 26290 Indiana South Carolina 2012
#> 26291 Texas Florida 2012
#> 26292 Washington Colorado 2012
#> 26293 New Mexico Maine 2012
#> 26294 Illinois Washington 2012
#> 26295 Idaho Rhode Island 2012
#> 26296 Maryland Maine 2012
#> 26297 Louisiana South Dakota 2012
#> 26298 Arkansas California 2012
#> 26299 New Mexico New Hampshire 2012
#> 26300 Kentucky New York 2012
#> 26301 North Dakota Iowa 2012
#> 26302 Iowa Ohio 2012
#> 26303 Nevada Tennessee 2012
#> 26304 Connecticut New York 2012
#> 26305 Florida Maryland 2012
#> 26306 Wisconsin Indiana 2012
#> 26307 Iowa Arizona 2012
#> 26308 Nebraska North Dakota 2012
#> 26309 New York Delaware 2012
#> 26310 Connecticut Texas 2012
#> 26311 Hawaii Virginia 2012
#> 26312 Iowa Kansas 2012
#> 26313 Michigan Illinois 2012
#> 26314 New York North Carolina 2012
#> 26315 Kansas Iowa 2012
#> 26316 Texas Idaho 2012
#> 26317 Idaho Washington 2012
#> 26318 Oregon California 2012
#> 26319 Rhode Island New Mexico 2012
#> 26320 Arizona Oklahoma 2012
#> 26321 Oklahoma Connecticut 2012
#> 26322 New Mexico Arkansas 2012
#> 26323 North Carolina Wisconsin 2012
#> 26324 California Alabama 2012
#> 26325 Illinois New Jersey 2012
#> 26326 Kentucky Minnesota 2012
#> 26327 Kentucky Tennessee 2012
#> 26328 Texas South Carolina 2012
#> 26329 Kentucky Massachusetts 2012
#> 26330 Washington Illinois 2012
#> 26331 Kentucky Georgia 2012
#> 26332 Kentucky West Virginia 2012
#> 26333 Wisconsin New Mexico 2012
#> 26334 Kentucky North Carolina 2012
#> 26335 Colorado Alaska 2012
#> 26336 Missouri Pennsylvania 2012
#> 26337 Massachusetts Colorado 2012
#> 26338 Delaware Connecticut 2012
#> 26339 New Mexico Mississippi 2012
#> 26340 Idaho Kansas 2012
#> 26341 Idaho Nevada 2012
#> 26342 Tennessee Missouri 2012
#> 26343 Minnesota Oregon 2012
#> 26344 Michigan California 2012
#> 26345 Ohio Utah 2012
#> 26346 Idaho Delaware 2012
#> 26347 Maine Arizona 2012
#> 26348 Wisconsin Rhode Island 2012
#> 26349 Wisconsin Minnesota 2012
#> 26350 Massachusetts Missouri 2012
#> 26351 Louisiana Alaska 2012
#> 26352 California Kentucky 2012
#> 26353 Illinois Georgia 2012
#> 26354 Washington Ohio 2012
#> 26355 South Dakota Wyoming 2012
#> 26356 Georgia Florida 2012
#> 26357 Florida Arkansas 2012
#> 26358 Connecticut Rhode Island 2012
#> 26359 Maine Wisconsin 2012
#> 26360 West Virginia Maryland 2012
#> 26361 Michigan Indiana 2012
#> 26362 North Carolina Louisiana 2012
#> 26363 Minnesota Maine 2012
#> 26364 Utah Tennessee 2012
#> 26365 Utah South Carolina 2012
#> 26366 New York Ohio 2012
#> 26367 Kentucky Maryland 2012
#> 26368 Kansas Wyoming 2012
#> 26369 Texas Oklahoma 2012
#> 26370 Utah Mississippi 2012
#> 26371 Connecticut Maryland 2012
#> 26372 South Dakota Massachusetts 2012
#> 26373 Nevada New Mexico 2012
#> 26374 Arizona North Carolina 2012
#> 26375 Arkansas Nebraska 2012
#> 26376 Colorado Utah 2012
#> 26377 Washington California 2012
#> 26378 Ohio Texas 2012
#> 26379 Georgia Arkansas 2012
#> 26380 Arizona Nevada 2012
#> 26381 Washington Montana 2012
#> 26382 Montana California 2012
#> 26383 Hawaii Indiana 2012
#> 26384 New York Washington 2012
#> 26385 Indiana Virginia 2012
#> 26386 Oregon Idaho 2012
#> 26387 New York Hawaii 2012
#> 26388 Wisconsin Illinois 2012
#> 26389 Iowa Pennsylvania 2012
#> 26390 South Carolina Alabama 2012
#> 26391 Oklahoma Kansas 2012
#> 26392 Mississippi Missouri 2012
#> 26393 Wisconsin Michigan 2012
#> 26394 Iowa Oklahoma 2012
#> 26395 Oregon South Dakota 2012
#> 26396 New Hampshire West Virginia 2012
#> 26397 Michigan Florida 2012
#> 26398 West Virginia Vermont 2012
#> 26399 Connecticut South Carolina 2012
#> 26400 Wisconsin New York 2012
#> 26401 Illinois Rhode Island 2012
#> 26402 Maine New Hampshire 2012
#> 26403 Montana New Jersey 2012
#> 26404 Oregon Montana 2012
#> 26405 Wisconsin Colorado 2012
#> 26406 Maryland West Virginia 2012
#> 26407 Connecticut Hawaii 2012
#> 26408 Missouri North Dakota 2012
#> 26409 Arkansas Minnesota 2012
#> 26410 Vermont Iowa 2012
#> 26411 Pennsylvania Florida 2012
#> 26412 Hawaii Oregon 2012
#> 26413 New Jersey Michigan 2012
#> 26414 Utah Colorado 2012
#> 26415 New York Connecticut 2012
#> 26416 Michigan Louisiana 2012
#> 26417 Delaware Minnesota 2012
#> 26418 Connecticut Delaware 2012
#> 26419 Maryland New Jersey 2012
#> 26420 Nevada Montana 2012
#> 26421 Nebraska Mississippi 2012
#> 26422 New York Nebraska 2012
#> 26423 California Tennessee 2012
#> 26424 Michigan Wyoming 2012
#> 26425 Hawaii Arizona 2012
#> 26426 Louisiana New Mexico 2012
#> 26427 South Carolina Vermont 2012
#> 26428 Minnesota Texas 2012
#> 26429 Minnesota Indiana 2012
#> 26430 Virginia Iowa 2012
#> 26431 North Dakota Washington 2012
#> 26432 New Jersey Georgia 2012
#> 26433 Georgia Louisiana 2012
#> 26434 Illinois Ohio 2012
#> 26435 Oklahoma South Carolina 2012
#> 26436 Washington Kansas 2012
#> 26437 Delaware New York 2012
#> 26438 New Mexico California 2012
#> 26439 Louisiana Maine 2012
#> 26440 Maryland North Carolina 2012
#> 26441 Indiana South Dakota 2012
#> 26442 Kansas Wisconsin 2012
#> 26443 Georgia Mississippi 2012
#> 26444 Ohio Tennessee 2012
#> 26445 Kentucky New Jersey 2012
#> 26446 Washington Maryland 2012
#> 26447 Alaska Connecticut 2012
#> 26448 Missouri Wisconsin 2012
#> 26449 Tennessee Kentucky 2012
#> 26450 Illinois South Carolina 2012
#> 26451 Washington Missouri 2012
#> 26452 New Mexico Oklahoma 2012
#> 26453 Montana Alaska 2012
#> 26454 Texas Arizona 2012
#> 26455 Maryland Nevada 2012
#> 26456 New Jersey Washington 2012
#> 26457 South Dakota Nebraska 2012
#> 26458 Washington New Mexico 2012
#> 26459 New Mexico Delaware 2012
#> 26460 Michigan Missouri 2012
#> 26461 Utah Alabama 2012
#> 26462 Michigan Rhode Island 2012
#> 26463 Rhode Island Nevada 2012
#> 26464 New York Idaho 2012
#> 26465 Florida Indiana 2012
#> 26466 Louisiana Illinois 2012
#> 26467 New York Kansas 2012
#> 26468 Utah Georgia 2012
#> 26469 North Dakota Rhode Island 2012
#> 26470 New York New Jersey 2012
#> 26471 Michigan Maryland 2012
#> 26472 Mississippi Ohio 2012
#> 26473 Pennsylvania Texas 2012
#> 26474 Connecticut Kansas 2012
#> 26475 Arkansas Montana 2012
#> 26476 Washington Massachusetts 2012
#> 26477 Alaska North Carolina 2012
#> 26478 New Jersey Maine 2012
#> 26479 Illinois Pennsylvania 2012
#> 26480 Virginia Oregon 2012
#> 26481 Georgia Colorado 2012
#> 26482 Kentucky Idaho 2012
#> 26483 Tennessee Virginia 2012
#> 26484 Michigan Utah 2012
#> 26485 Oregon Wisconsin 2012
#> 26486 Mississippi New Mexico 2012
#> 26487 Minnesota Colorado 2012
#> 26488 Oregon Ohio 2012
#> 26489 Maryland New Mexico 2012
#> 26490 New Hampshire New York 2012
#> 26491 Montana Georgia 2012
#> 26492 Kansas New Mexico 2012
#> 26493 Maine Hawaii 2012
#> 26494 Pennsylvania Oklahoma 2012
#> 26495 Wisconsin Idaho 2012
#> 26496 Illinois Michigan 2012
#> 26497 Georgia Oklahoma 2012
#> 26498 Hawaii Michigan 2012
#> 26499 North Carolina Colorado 2012
#> 26500 Illinois South Dakota 2012
#> 26501 California Oregon 2013
#> 26502 California New Mexico 2013
#> 26503 California Colorado 2013
#> 26504 California Maryland 2013
#> 26505 California Washington 2013
#> 26506 California Maine 2013
#> 26507 Florida Arizona 2013
#> 26508 California Montana 2013
#> 26509 California New Jersey 2013
#> 26510 California Ohio 2013
#> 26511 California Illinois 2013
#> 26512 California Nevada 2013
#> 26513 California North Carolina 2013
#> 26514 California Florida 2013
#> 26515 California Texas 2013
#> 26516 Minnesota Iowa 2013
#> 26517 California Nebraska 2013
#> 26518 California Delaware 2013
#> 26519 California Indiana 2013
#> 26520 California Minnesota 2013
#> 26521 California Vermont 2013
#> 26522 Oregon Kentucky 2013
#> 26523 Florida Georgia 2013
#> 26524 Florida Utah 2013
#> 26525 California Rhode Island 2013
#> 26526 California South Dakota 2013
#> 26527 Minnesota Virginia 2013
#> 26528 California Missouri 2013
#> 26529 California Kansas 2013
#> 26530 California New Hampshire 2013
#> 26531 California Michigan 2013
#> 26532 Minnesota Alabama 2013
#> 26533 Washington Pennsylvania 2013
#> 26534 Florida South Carolina 2013
#> 26535 California Connecticut 2013
#> 26536 Oregon Tennessee 2013
#> 26537 Washington Wisconsin 2013
#> 26538 California Arkansas 2013
#> 26539 Minnesota Mississippi 2013
#> 26540 California North Dakota 2013
#> 26541 California Hawaii 2013
#> 26542 California Oklahoma 2013
#> 26543 Florida Louisiana 2013
#> 26544 California Alaska 2013
#> 26545 California New York 2013
#> 26546 California Massachusetts 2013
#> 26547 Colorado Wyoming 2013
#> 26548 Colorado Idaho 2013
#> 26549 Minnesota California 2013
#> 26550 California West Virginia 2013
#> 26551 Texas New Mexico 2013
#> 26552 Idaho Utah 2013
#> 26553 Connecticut Ohio 2013
#> 26554 California Arizona 2013
#> 26555 Florida Texas 2013
#> 26556 Oregon Minnesota 2013
#> 26557 Illinois Connecticut 2013
#> 26558 Louisiana Indiana 2013
#> 26559 Florida New Jersey 2013
#> 26560 Colorado Virginia 2013
#> 26561 California Georgia 2013
#> 26562 Minnesota Oklahoma 2013
#> 26563 Arizona Arkansas 2013
#> 26564 California Louisiana 2013
#> 26565 Florida Missouri 2013
#> 26566 Florida Washington 2013
#> 26567 Minnesota Kansas 2013
#> 26568 California South Carolina 2013
#> 26569 Oregon Maine 2013
#> 26570 Florida Alabama 2013
#> 26571 Rhode Island Wisconsin 2013
#> 26572 Minnesota Nebraska 2013
#> 26573 Florida Illinois 2013
#> 26574 Illinois California 2013
#> 26575 Minnesota Michigan 2013
#> 26576 Minnesota North Carolina 2013
#> 26577 Connecticut Colorado 2013
#> 26578 Washington Alaska 2013
#> 26579 Iowa Vermont 2013
#> 26580 Florida Kentucky 2013
#> 26581 Rhode Island Pennsylvania 2013
#> 26582 Colorado Maryland 2013
#> 26583 California Iowa 2013
#> 26584 Colorado North Dakota 2013
#> 26585 Indiana Tennessee 2013
#> 26586 Minnesota Florida 2013
#> 26587 Oregon Rhode Island 2013
#> 26588 Rhode Island Idaho 2013
#> 26589 Indiana Mississippi 2013
#> 26590 Connecticut Massachusetts 2013
#> 26591 Colorado Nevada 2013
#> 26592 Washington South Dakota 2013
#> 26593 Arizona Oregon 2013
#> 26594 Minnesota Hawaii 2013
#> 26595 Illinois Delaware 2013
#> 26596 Hawaii Montana 2013
#> 26597 Rhode Island Wyoming 2013
#> 26598 Maryland New Hampshire 2013
#> 26599 Colorado West Virginia 2013
#> 26600 Florida Oklahoma 2013
#> 26601 Massachusetts New York 2013
#> 26602 California Utah 2013
#> 26603 Minnesota Illinois 2013
#> 26604 North Dakota South Carolina 2013
#> 26605 Colorado New Mexico 2013
#> 26606 Colorado Washington 2013
#> 26607 Minnesota Arizona 2013
#> 26608 Minnesota New Jersey 2013
#> 26609 Idaho Minnesota 2013
#> 26610 Oregon Delaware 2013
#> 26611 North Dakota Kentucky 2013
#> 26612 Colorado Montana 2013
#> 26613 Oklahoma Indiana 2013
#> 26614 Iowa Wisconsin 2013
#> 26615 Kansas Texas 2013
#> 26616 Texas Virginia 2013
#> 26617 Connecticut California 2013
#> 26618 Massachusetts Connecticut 2013
#> 26619 Illinois Massachusetts 2013
#> 26620 Louisiana Kansas 2013
#> 26621 Florida Ohio 2013
#> 26622 Tennessee Florida 2013
#> 26623 Kentucky Arkansas 2013
#> 26624 Minnesota Colorado 2013
#> 26625 Kentucky Michigan 2013
#> 26626 Illinois Maine 2013
#> 26627 Massachusetts Rhode Island 2013
#> 26628 Massachusetts Vermont 2013
#> 26629 Florida Nevada 2013
#> 26630 Indiana North Carolina 2013
#> 26631 Colorado Louisiana 2013
#> 26632 Indiana Iowa 2013
#> 26633 Massachusetts Hawaii 2013
#> 26634 Indiana Alabama 2013
#> 26635 California Idaho 2013
#> 26636 Washington Oregon 2013
#> 26637 Delaware North Dakota 2013
#> 26638 Washington Maryland 2013
#> 26639 West Virginia Georgia 2013
#> 26640 Massachusetts New Jersey 2013
#> 26641 Minnesota Tennessee 2013
#> 26642 Kansas Missouri 2013
#> 26643 Florida Connecticut 2013
#> 26644 Minnesota New Mexico 2013
#> 26645 North Dakota Nebraska 2013
#> 26646 Louisiana Virginia 2013
#> 26647 Connecticut Pennsylvania 2013
#> 26648 Idaho Wyoming 2013
#> 26649 Michigan West Virginia 2013
#> 26650 Wisconsin Massachusetts 2013
#> 26651 Virginia Alaska 2013
#> 26652 Florida Mississippi 2013
#> 26653 Oklahoma South Dakota 2013
#> 26654 New Jersey California 2013
#> 26655 Connecticut New Hampshire 2013
#> 26656 Minnesota Washington 2013
#> 26657 Rhode Island Kentucky 2013
#> 26658 Rhode Island Minnesota 2013
#> 26659 Illinois Oklahoma 2013
#> 26660 Connecticut Maine 2013
#> 26661 Texas Colorado 2013
#> 26662 Indiana New York 2013
#> 26663 North Dakota Ohio 2013
#> 26664 Hawaii Florida 2013
#> 26665 Florida Nebraska 2013
#> 26666 New York Iowa 2013
#> 26667 California Virginia 2013
#> 26668 Oregon Kansas 2013
#> 26669 Georgia Indiana 2013
#> 26670 Nebraska Idaho 2013
#> 26671 Indiana Georgia 2013
#> 26672 New York Michigan 2013
#> 26673 Oregon Connecticut 2013
#> 26674 Connecticut Tennessee 2013
#> 26675 Connecticut Oregon 2013
#> 26676 Colorado Arizona 2013
#> 26677 Hawaii North Dakota 2013
#> 26678 Minnesota Arkansas 2013
#> 26679 Oregon Vermont 2013
#> 26680 Missouri South Carolina 2013
#> 26681 Idaho Texas 2013
#> 26682 Minnesota Nevada 2013
#> 26683 Louisiana Montana 2013
#> 26684 Idaho Colorado 2013
#> 26685 Florida Massachusetts 2013
#> 26686 Illinois Missouri 2013
#> 26687 Utah Oklahoma 2013
#> 26688 North Dakota Iowa 2013
#> 26689 California Wisconsin 2013
#> 26690 Connecticut North Carolina 2013
#> 26691 Nevada Utah 2013
#> 26692 Maryland Illinois 2013
#> 26693 North Dakota New Mexico 2013
#> 26694 Louisiana Rhode Island 2013
#> 26695 New York Florida 2013
#> 26696 North Dakota Louisiana 2013
#> 26697 Louisiana Mississippi 2013
#> 26698 New York Maryland 2013
#> 26699 Kansas New Hampshire 2013
#> 26700 Indiana Delaware 2013
#> 26701 Idaho South Dakota 2013
#> 26702 Colorado Minnesota 2013
#> 26703 Texas Kentucky 2013
#> 26704 Illinois Hawaii 2013
#> 26705 New Mexico Alabama 2013
#> 26706 Arkansas Ohio 2013
#> 26707 South Dakota Florida 2013
#> 26708 Minnesota West Virginia 2013
#> 26709 Utah Illinois 2013
#> 26710 Connecticut Washington 2013
#> 26711 Hawaii Idaho 2013
#> 26712 Wisconsin California 2013
#> 26713 Kentucky Pennsylvania 2013
#> 26714 Texas Minnesota 2013
#> 26715 Oklahoma North Dakota 2013
#> 26716 Utah Maryland 2013
#> 26717 Connecticut Vermont 2013
#> 26718 Arizona Utah 2013
#> 26719 Vermont Iowa 2013
#> 26720 Utah Kansas 2013
#> 26721 Utah Indiana 2013
#> 26722 Florida New York 2013
#> 26723 Texas South Carolina 2013
#> 26724 Florida Virginia 2013
#> 26725 Minnesota Delaware 2013
#> 26726 Indiana Maine 2013
#> 26727 North Dakota Michigan 2013
#> 26728 Nevada Oregon 2013
#> 26729 Minnesota Rhode Island 2013
#> 26730 Louisiana Nevada 2013
#> 26731 Utah Arizona 2013
#> 26732 Hawaii North Carolina 2013
#> 26733 Wisconsin Tennessee 2013
#> 26734 Iowa Nebraska 2013
#> 26735 West Virginia Montana 2013
#> 26736 New York New Mexico 2013
#> 26737 Florida Colorado 2013
#> 26738 Iowa Arkansas 2013
#> 26739 Delaware Kansas 2013
#> 26740 Kansas Oklahoma 2013
#> 26741 Missouri Pennsylvania 2013
#> 26742 Louisiana Missouri 2013
#> 26743 Florida Rhode Island 2013
#> 26744 South Carolina North Carolina 2013
#> 26745 Kentucky Indiana 2013
#> 26746 Utah New Jersey 2013
#> 26747 Utah Texas 2013
#> 26748 Illinois Washington 2013
#> 26749 Rhode Island Louisiana 2013
#> 26750 Texas Massachusetts 2013
#> 26751 Maryland Hawaii 2013
#> 26752 Texas Utah 2013
#> 26753 Delaware Alabama 2013
#> 26754 Connecticut Wyoming 2013
#> 26755 Utah South Dakota 2013
#> 26756 Connecticut Florida 2013
#> 26757 Hawaii Virginia 2013
#> 26758 Louisiana Georgia 2013
#> 26759 Florida West Virginia 2013
#> 26760 Utah California 2013
#> 26761 Texas Idaho 2013
#> 26762 Illinois Minnesota 2013
#> 26763 Michigan Tennessee 2013
#> 26764 California Mississippi 2013
#> 26765 Kansas Hawaii 2013
#> 26766 Texas California 2013
#> 26767 Hawaii Alaska 2013
#> 26768 Alaska New York 2013
#> 26769 Indiana Wisconsin 2013
#> 26770 Maine Vermont 2013
#> 26771 Iowa Pennsylvania 2013
#> 26772 Massachusetts Texas 2013
#> 26773 Florida Michigan 2013
#> 26774 Wisconsin Oregon 2013
#> 26775 Rhode Island Nebraska 2013
#> 26776 Minnesota South Carolina 2013
#> 26777 New York Nevada 2013
#> 26778 Massachusetts Ohio 2013
#> 26779 Georgia Kentucky 2013
#> 26780 Rhode Island North Dakota 2013
#> 26781 New Jersey Massachusetts 2013
#> 26782 Connecticut New York 2013
#> 26783 Massachusetts Montana 2013
#> 26784 Maine Maryland 2013
#> 26785 Texas Connecticut 2013
#> 26786 Louisiana Arizona 2013
#> 26787 Washington Texas 2013
#> 26788 Washington Colorado 2013
#> 26789 Idaho Washington 2013
#> 26790 Georgia New Hampshire 2013
#> 26791 Maryland Maine 2013
#> 26792 Florida Iowa 2013
#> 26793 New York North Carolina 2013
#> 26794 Kentucky Missouri 2013
#> 26795 New Mexico Arkansas 2013
#> 26796 Texas Florida 2013
#> 26797 Florida Idaho 2013
#> 26798 New Mexico Maine 2013
#> 26799 Idaho Rhode Island 2013
#> 26800 Louisiana South Dakota 2013
#> 26801 Colorado Wisconsin 2013
#> 26802 Nevada Tennessee 2013
#> 26803 Kentucky New York 2013
#> 26804 Wisconsin Indiana 2013
#> 26805 Virginia California 2013
#> 26806 Michigan Illinois 2013
#> 26807 Iowa Arizona 2013
#> 26808 Nebraska North Dakota 2013
#> 26809 Oregon Maryland 2013
#> 26810 New Mexico Connecticut 2013
#> 26811 Kentucky Louisiana 2013
#> 26812 Iowa Kansas 2013
#> 26813 North Dakota Mississippi 2013
#> 26814 Utah Virginia 2013
#> 26815 Washington Illinois 2013
#> 26816 Oregon Missouri 2013
#> 26817 Georgia Colorado 2013
#> 26818 Indiana South Carolina 2013
#> 26819 Rhode Island New Mexico 2013
#> 26820 Massachusetts Pennsylvania 2013
#> 26821 Connecticut Rhode Island 2013
#> 26822 Florida Arkansas 2013
#> 26823 California Alabama 2013
#> 26824 Arizona North Carolina 2013
#> 26825 Illinois New Jersey 2013
#> 26826 Kentucky Minnesota 2013
#> 26827 New York Texas 2013
#> 26828 Maryland West Virginia 2013
#> 26829 North Carolina Wisconsin 2013
#> 26830 Texas Oklahoma 2013
#> 26831 Illinois Iowa 2013
#> 26832 Kentucky Massachusetts 2013
#> 26833 California Kentucky 2013
#> 26834 Tennessee Missouri 2013
#> 26835 Kentucky Georgia 2013
#> 26836 North Dakota Washington 2013
#> 26837 Virginia Louisiana 2013
#> 26838 Connecticut Iowa 2013
#> 26839 Wisconsin New Mexico 2013
#> 26840 Maine New Hampshire 2013
#> 26841 Colorado Alaska 2013
#> 26842 Indiana Ohio 2013
#> 26843 Arkansas Nebraska 2013
#> 26844 Idaho Kansas 2013
#> 26845 North Dakota South Dakota 2013
#> 26846 Minnesota Oregon 2013
#> 26847 Idaho Nevada 2013
#> 26848 Wisconsin Michigan 2013
#> 26849 Ohio Utah 2013
#> 26850 Connecticut Delaware 2013
#> 26851 Maine Arizona 2013
#> 26852 Wisconsin Rhode Island 2013
#> 26853 West Virginia Vermont 2013
#> 26854 Florida Maryland 2013
#> 26855 Wisconsin Colorado 2013
#> 26856 Wisconsin Idaho 2013
#> 26857 Louisiana Alaska 2013
#> 26858 Illinois Georgia 2013
#> 26859 Idaho Delaware 2013
#> 26860 Connecticut Hawaii 2013
#> 26861 South Dakota Wyoming 2013
#> 26862 Utah Tennessee 2013
#> 26863 New York Connecticut 2013
#> 26864 Georgia Florida 2013
#> 26865 Ohio Virginia 2013
#> 26866 Michigan Indiana 2013
#> 26867 Illinois Pennsylvania 2013
#> 26868 Ohio Tennessee 2013
#> 26869 Mississippi Missouri 2013
#> 26870 Kansas Wyoming 2013
#> 26871 West Virginia Maryland 2013
#> 26872 South Carolina Illinois 2013
#> 26873 Delaware Connecticut 2013
#> 26874 Georgia Arkansas 2013
#> 26875 New Mexico Mississippi 2013
#> 26876 Connecticut Maryland 2013
#> 26877 Connecticut South Carolina 2013
#> 26878 Wisconsin Oklahoma 2013
#> 26879 New Jersey Washington 2013
#> 26880 New Mexico New Hampshire 2013
#> 26881 South Dakota Massachusetts 2013
#> 26882 Nevada New Mexico 2013
#> 26883 Colorado Utah 2013
#> 26884 Washington Montana 2013
#> 26885 Hawaii Indiana 2013
#> 26886 Georgia Nevada 2013
#> 26887 Colorado Vermont 2013
#> 26888 Wisconsin Illinois 2013
#> 26889 South Carolina Alabama 2013
#> 26890 Maine Wisconsin 2013
#> 26891 North Dakota California 2013
#> 26892 Oklahoma Kansas 2013
#> 26893 New Hampshire West Virginia 2013
#> 26894 Kentucky Maryland 2013
#> 26895 Washington California 2013
#> 26896 Michigan Florida 2013
#> 26897 Pennsylvania Texas 2013
#> 26898 New York Hawaii 2013
#> 26899 Wisconsin New York 2013
#> 26900 Illinois Rhode Island 2013
#> 26901 Wisconsin Minnesota 2013
#> 26902 New Mexico Delaware 2013
#> 26903 Missouri Maine 2013
#> 26904 Maryland New Jersey 2013
#> 26905 Oregon Montana 2013
#> 26906 Vermont Washington 2013
#> 26907 Ohio Texas 2013
#> 26908 South Carolina Arkansas 2013
#> 26909 Utah South Carolina 2013
#> 26910 Missouri North Dakota 2013
#> 26911 Utah Colorado 2013
#> 26912 Arkansas Minnesota 2013
#> 26913 Pennsylvania Florida 2013
#> 26914 Washington North Carolina 2013
#> 26915 Hawaii Oregon 2013
#> 26916 Nevada Maine 2013
#> 26917 Michigan Louisiana 2013
#> 26918 Georgia Mississippi 2013
#> 26919 Montana New Jersey 2013
#> 26920 Washington Ohio 2013
#> 26921 Oregon Idaho 2013
#> 26922 Nevada Iowa 2013
#> 26923 Nevada Montana 2013
#> 26924 Kentucky West Virginia 2013
#> 26925 California Tennessee 2013
#> 26926 Hawaii Louisiana 2013
#> 26927 Hawaii Michigan 2013
#> 26928 Maine Hawaii 2013
#> 26929 Michigan Wyoming 2013
#> 26930 Hawaii Arizona 2013
#> 26931 Louisiana New Mexico 2013
#> 26932 Iowa Colorado 2013
#> 26933 Oklahoma California 2013
#> 26934 Illinois Michigan 2013
#> 26935 New Jersey Georgia 2013
#> 26936 New Mexico Oklahoma 2013
#> 26937 Washington Missouri 2013
#> 26938 Delaware New York 2013
#> 26939 Kentucky New Jersey 2013
#> 26940 Maryland Connecticut 2013
#> 26941 Kentucky North Carolina 2013
#> 26942 New Mexico Iowa 2013
#> 26943 Utah Mississippi 2013
#> 26944 Washington Kansas 2013
#> 26945 California Pennsylvania 2013
#> 26946 Kansas Wisconsin 2013
#> 26947 Florida Indiana 2013
#> 26948 Oklahoma Louisiana 2013
#> 26949 Pennsylvania Wisconsin 2013
#> 26950 Kentucky Tennessee 2013
#> 26951 Maryland North Carolina 2013
#> 26952 Tennessee Kentucky 2013
#> 26953 Indiana South Dakota 2013
#> 26954 Missouri Ohio 2013
#> 26955 Delaware Illinois 2013
#> 26956 Georgia Virginia 2013
#> 26957 Oklahoma Arizona 2013
#> 26958 Montana Alaska 2013
#> 26959 South Dakota Nebraska 2013
#> 26960 Minnesota Texas 2013
#> 26961 Washington New Mexico 2013
#> 26962 Nevada Hawaii 2013
#> 26963 Maryland Delaware 2013
#> 26964 Utah Alabama 2013
#> 26965 Michigan Rhode Island 2013
#> 26966 Oregon South Dakota 2013
#> 26967 Utah Georgia 2013
#> 26968 Michigan Nebraska 2013
#> 26969 Washington Indiana 2013
#> 26970 Rhode Island California 2013
#> 26971 Maryland Washington 2013
#> 26972 South Carolina Missouri 2013
#> 26973 North Dakota Rhode Island 2013
#> 26974 South Dakota Nevada 2013
#> 26975 Delaware Minnesota 2013
#> 26976 New York New Jersey 2013
#> 26977 Michigan Maryland 2013
#> 26978 Connecticut Kansas 2013
#> 26979 Maryland Arizona 2013
#> 26980 Tennessee South Carolina 2013
#> 26981 Maryland Oklahoma 2013
#> 26982 South Carolina Texas 2013
#> 26983 Oregon Ohio 2013
#> 26984 Kentucky Idaho 2013
#> 26985 Alaska Nevada 2013
#> 26986 Arkansas Montana 2013
#> 26987 Virginia Oregon 2013
#> 26988 Michigan Utah 2013
#> 26989 Oregon Wisconsin 2013
#> 26990 Alaska North Carolina 2013
#> 26991 Maryland New Mexico 2013
#> 26992 Kansas New Mexico 2013
#> 26993 New Hampshire New York 2013
#> 26994 Georgia Oklahoma 2013
#> 26995 Montana Georgia 2013
#> 26996 Kentucky South Carolina 2013
#> 26997 Virginia Alabama 2013
#> 26998 North Carolina Colorado 2013
#> 26999 New Mexico Idaho 2013
#> 27000 Louisiana Idaho 2013
#> 27001 California Oregon 2014
#> 27002 California New Mexico 2014
#> 27003 California Washington 2014
#> 27004 California Colorado 2014
#> 27005 California Maine 2014
#> 27006 California Maryland 2014
#> 27007 California Montana 2014
#> 27008 California New Jersey 2014
#> 27009 California Illinois 2014
#> 27010 California Nevada 2014
#> 27011 California Ohio 2014
#> 27012 Florida Arizona 2014
#> 27013 California Florida 2014
#> 27014 California North Carolina 2014
#> 27015 California Delaware 2014
#> 27016 California Texas 2014
#> 27017 California Nebraska 2014
#> 27018 Minnesota Iowa 2014
#> 27019 California Minnesota 2014
#> 27020 California Indiana 2014
#> 27021 California Vermont 2014
#> 27022 Florida Georgia 2014
#> 27023 Florida Utah 2014
#> 27024 Washington Pennsylvania 2014
#> 27025 California South Dakota 2014
#> 27026 Oregon Kentucky 2014
#> 27027 California Missouri 2014
#> 27028 California Rhode Island 2014
#> 27029 Connecticut Virginia 2014
#> 27030 California New Hampshire 2014
#> 27031 Minnesota Alabama 2014
#> 27032 Florida South Carolina 2014
#> 27033 Minnesota Michigan 2014
#> 27034 California North Dakota 2014
#> 27035 California Connecticut 2014
#> 27036 California Kansas 2014
#> 27037 California Tennessee 2014
#> 27038 California Arkansas 2014
#> 27039 Minnesota Mississippi 2014
#> 27040 Washington Wisconsin 2014
#> 27041 California Hawaii 2014
#> 27042 California Alaska 2014
#> 27043 Florida Louisiana 2014
#> 27044 California Oklahoma 2014
#> 27045 California New York 2014
#> 27046 Colorado Wyoming 2014
#> 27047 California Massachusetts 2014
#> 27048 Colorado Idaho 2014
#> 27049 Minnesota California 2014
#> 27050 Oregon West Virginia 2014
#> 27051 Texas New Mexico 2014
#> 27052 Florida Ohio 2014
#> 27053 Arizona Arkansas 2014
#> 27054 Florida Texas 2014
#> 27055 Louisiana Indiana 2014
#> 27056 Idaho Utah 2014
#> 27057 Oregon Minnesota 2014
#> 27058 Minnesota Arizona 2014
#> 27059 Illinois Connecticut 2014
#> 27060 Florida New Jersey 2014
#> 27061 Utah Virginia 2014
#> 27062 Arizona Missouri 2014
#> 27063 California Louisiana 2014
#> 27064 Minnesota Oklahoma 2014
#> 27065 California Georgia 2014
#> 27066 Louisiana Kansas 2014
#> 27067 Oregon Maine 2014
#> 27068 Indiana South Carolina 2014
#> 27069 Colorado Illinois 2014
#> 27070 Florida Washington 2014
#> 27071 Rhode Island Wisconsin 2014
#> 27072 Florida Alabama 2014
#> 27073 Florida North Carolina 2014
#> 27074 Washington Alaska 2014
#> 27075 Minnesota Nebraska 2014
#> 27076 Connecticut Colorado 2014
#> 27077 California Michigan 2014
#> 27078 Florida Kentucky 2014
#> 27079 Minnesota North Dakota 2014
#> 27080 Iowa Vermont 2014
#> 27081 Massachusetts California 2014
#> 27082 Minnesota Florida 2014
#> 27083 Rhode Island Pennsylvania 2014
#> 27084 California Iowa 2014
#> 27085 Washington Oregon 2014
#> 27086 Oregon Rhode Island 2014
#> 27087 Colorado Maryland 2014
#> 27088 Connecticut Massachusetts 2014
#> 27089 Indiana Mississippi 2014
#> 27090 California Idaho 2014
#> 27091 Colorado Nevada 2014
#> 27092 Florida Tennessee 2014
#> 27093 Washington Hawaii 2014
#> 27094 Washington South Dakota 2014
#> 27095 Michigan Montana 2014
#> 27096 Minnesota Delaware 2014
#> 27097 Florida West Virginia 2014
#> 27098 Minnesota Wyoming 2014
#> 27099 Maryland New Hampshire 2014
#> 27100 Colorado New Mexico 2014
#> 27101 California Utah 2014
#> 27102 California Virginia 2014
#> 27103 Connecticut New York 2014
#> 27104 North Dakota Ohio 2014
#> 27105 Colorado New Jersey 2014
#> 27106 California Arizona 2014
#> 27107 Idaho Minnesota 2014
#> 27108 Kansas Texas 2014
#> 27109 Oklahoma Indiana 2014
#> 27110 North Dakota Kentucky 2014
#> 27111 Colorado Washington 2014
#> 27112 Florida Oklahoma 2014
#> 27113 Iowa Wisconsin 2014
#> 27114 Minnesota Kansas 2014
#> 27115 Massachusetts Connecticut 2014
#> 27116 Illinois Massachusetts 2014
#> 27117 Massachusetts Vermont 2014
#> 27118 Kentucky Arkansas 2014
#> 27119 Utah North Dakota 2014
#> 27120 Minnesota Colorado 2014
#> 27121 Tennessee Florida 2014
#> 27122 Illinois California 2014
#> 27123 New Mexico North Carolina 2014
#> 27124 New York Illinois 2014
#> 27125 North Dakota South Carolina 2014
#> 27126 Massachusetts Rhode Island 2014
#> 27127 Illinois Maine 2014
#> 27128 Indiana Alabama 2014
#> 27129 Colorado Tennessee 2014
#> 27130 Florida Missouri 2014
#> 27131 Florida Nevada 2014
#> 27132 Kentucky Michigan 2014
#> 27133 Colorado Montana 2014
#> 27134 Colorado Louisiana 2014
#> 27135 Indiana Iowa 2014
#> 27136 Nebraska Idaho 2014
#> 27137 Arizona Oregon 2014
#> 27138 Michigan Delaware 2014
#> 27139 Louisiana Virginia 2014
#> 27140 Washington Maryland 2014
#> 27141 Florida Connecticut 2014
#> 27142 Idaho Georgia 2014
#> 27143 Connecticut Pennsylvania 2014
#> 27144 Minnesota New Mexico 2014
#> 27145 Michigan Mississippi 2014
#> 27146 Nevada Hawaii 2014
#> 27147 Virginia Alaska 2014
#> 27148 Arizona South Dakota 2014
#> 27149 Utah Minnesota 2014
#> 27150 Michigan Nebraska 2014
#> 27151 Wisconsin Massachusetts 2014
#> 27152 Massachusetts New Jersey 2014
#> 27153 Hawaii Montana 2014
#> 27154 Connecticut New Hampshire 2014
#> 27155 New Jersey Washington 2014
#> 27156 Minnesota South Carolina 2014
#> 27157 Rhode Island Kentucky 2014
#> 27158 Rhode Island West Virginia 2014
#> 27159 Kentucky New York 2014
#> 27160 Idaho Wyoming 2014
#> 27161 New York Iowa 2014
#> 27162 Utah Oklahoma 2014
#> 27163 Connecticut Maine 2014
#> 27164 Texas Colorado 2014
#> 27165 Oregon Delaware 2014
#> 27166 New York Florida 2014
#> 27167 Massachusetts Ohio 2014
#> 27168 New York Michigan 2014
#> 27169 Oregon Vermont 2014
#> 27170 Michigan North Carolina 2014
#> 27171 Hawaii Idaho 2014
#> 27172 Louisiana North Dakota 2014
#> 27173 Connecticut California 2014
#> 27174 Kentucky Georgia 2014
#> 27175 Oregon Kansas 2014
#> 27176 Iowa Oregon 2014
#> 27177 Oregon Connecticut 2014
#> 27178 Colorado Arizona 2014
#> 27179 Minnesota Tennessee 2014
#> 27180 Florida Virginia 2014
#> 27181 Indiana Illinois 2014
#> 27182 Georgia Arkansas 2014
#> 27183 Georgia Indiana 2014
#> 27184 Maryland Minnesota 2014
#> 27185 Arizona Utah 2014
#> 27186 North Dakota New Mexico 2014
#> 27187 Iowa Nebraska 2014
#> 27188 Idaho Texas 2014
#> 27189 Minnesota Nevada 2014
#> 27190 Idaho Colorado 2014
#> 27191 Florida Massachusetts 2014
#> 27192 Massachusetts Hawaii 2014
#> 27193 California Wisconsin 2014
#> 27194 Connecticut Iowa 2014
#> 27195 Hawaii Washington 2014
#> 27196 North Dakota Missouri 2014
#> 27197 Kansas New Hampshire 2014
#> 27198 Wisconsin California 2014
#> 27199 Hawaii Florida 2014
#> 27200 Louisiana Rhode Island 2014
#> 27201 North Dakota Louisiana 2014
#> 27202 Arkansas Ohio 2014
#> 27203 Illinois Oklahoma 2014
#> 27204 Texas Kentucky 2014
#> 27205 Nevada Utah 2014
#> 27206 Indiana West Virginia 2014
#> 27207 Utah Indiana 2014
#> 27208 Utah Maryland 2014
#> 27209 Connecticut Oregon 2014
#> 27210 Utah North Carolina 2014
#> 27211 South Dakota Florida 2014
#> 27212 Missouri Pennsylvania 2014
#> 27213 Massachusetts New York 2014
#> 27214 Louisiana Montana 2014
#> 27215 Montana Idaho 2014
#> 27216 North Dakota Nebraska 2014
#> 27217 California Alabama 2014
#> 27218 Connecticut Vermont 2014
#> 27219 North Dakota South Dakota 2014
#> 27220 Tennessee South Carolina 2014
#> 27221 Maryland New Jersey 2014
#> 27222 Louisiana Nevada 2014
#> 27223 Utah Kansas 2014
#> 27224 Florida Michigan 2014
#> 27225 California Mississippi 2014
#> 27226 New York Maryland 2014
#> 27227 New York New Mexico 2014
#> 27228 Virginia Hawaii 2014
#> 27229 Ohio Virginia 2014
#> 27230 Indiana Maine 2014
#> 27231 Louisiana Tennessee 2014
#> 27232 Idaho Delaware 2014
#> 27233 West Virginia Georgia 2014
#> 27234 North Carolina Missouri 2014
#> 27235 Massachusetts Wyoming 2014
#> 27236 Minnesota Rhode Island 2014
#> 27237 Illinois Minnesota 2014
#> 27238 Hawaii North Dakota 2014
#> 27239 Kentucky Pennsylvania 2014
#> 27240 Michigan Arizona 2014
#> 27241 Utah Texas 2014
#> 27242 Rhode Island Washington 2014
#> 27243 Minnesota Arkansas 2014
#> 27244 Missouri Illinois 2014
#> 27245 Georgia Colorado 2014
#> 27246 Kansas Oklahoma 2014
#> 27247 Louisiana South Dakota 2014
#> 27248 Iowa Massachusetts 2014
#> 27249 Michigan Tennessee 2014
#> 27250 Kentucky Indiana 2014
#> 27251 Rhode Island Louisiana 2014
#> 27252 Louisiana Mississippi 2014
#> 27253 Iowa Pennsylvania 2014
#> 27254 New Mexico Alabama 2014
#> 27255 Massachusetts Texas 2014
#> 27256 Texas Utah 2014
#> 27257 Colorado Vermont 2014
#> 27258 Rhode Island Nebraska 2014
#> 27259 Iowa Arizona 2014
#> 27260 Connecticut Florida 2014
#> 27261 Florida New York 2014
#> 27262 Connecticut Minnesota 2014
#> 27263 Virginia California 2014
#> 27264 Michigan Wisconsin 2014
#> 27265 New Mexico Arkansas 2014
#> 27266 Delaware Kansas 2014
#> 27267 Indiana Idaho 2014
#> 27268 Illinois Georgia 2014
#> 27269 Idaho Michigan 2014
#> 27270 North Dakota Iowa 2014
#> 27271 Washington Texas 2014
#> 27272 Florida Rhode Island 2014
#> 27273 Connecticut North Carolina 2014
#> 27274 New Mexico Delaware 2014
#> 27275 Hawaii Alaska 2014
#> 27276 Maryland Maine 2014
#> 27277 California Kentucky 2014
#> 27278 Minnesota New Jersey 2014
#> 27279 Texas South Carolina 2014
#> 27280 Michigan Illinois 2014
#> 27281 New Mexico Hawaii 2014
#> 27282 Oklahoma Colorado 2014
#> 27283 Utah California 2014
#> 27284 Maine Maryland 2014
#> 27285 Texas Connecticut 2014
#> 27286 Colorado Wisconsin 2014
#> 27287 Hawaii Virginia 2014
#> 27288 Connecticut Washington 2014
#> 27289 Utah Alabama 2014
#> 27290 Illinois Iowa 2014
#> 27291 Georgia New Hampshire 2014
#> 27292 Georgia Nevada 2014
#> 27293 Oregon Montana 2014
#> 27294 Arizona Oklahoma 2014
#> 27295 Florida Mississippi 2014
#> 27296 Oklahoma North Dakota 2014
#> 27297 Iowa South Dakota 2014
#> 27298 Alaska New York 2014
#> 27299 Texas Florida 2014
#> 27300 Louisiana Minnesota 2014
#> 27301 Nevada Ohio 2014
#> 27302 New Jersey Illinois 2014
#> 27303 Wisconsin Maine 2014
#> 27304 California Pennsylvania 2014
#> 27305 Idaho Rhode Island 2014
#> 27306 Virginia Delaware 2014
#> 27307 Utah Tennessee 2014
#> 27308 Florida Arkansas 2014
#> 27309 Georgia Kentucky 2014
#> 27310 Oklahoma Arizona 2014
#> 27311 Washington Colorado 2014
#> 27312 Wisconsin Indiana 2014
#> 27313 Louisiana Missouri 2014
#> 27314 Nevada Oregon 2014
#> 27315 Florida Iowa 2014
#> 27316 New Jersey Massachusetts 2014
#> 27317 Minnesota West Virginia 2014
#> 27318 Oregon Maryland 2014
#> 27319 New Mexico Connecticut 2014
#> 27320 Connecticut Tennessee 2014
#> 27321 Nebraska Louisiana 2014
#> 27322 Texas California 2014
#> 27323 Iowa Kansas 2014
#> 27324 Louisiana Alaska 2014
#> 27325 Texas Idaho 2014
#> 27326 Maryland North Carolina 2014
#> 27327 Utah New Jersey 2014
#> 27328 Massachusetts Wisconsin 2014
#> 27329 New York Hawaii 2014
#> 27330 Rhode Island New Mexico 2014
#> 27331 Georgia West Virginia 2014
#> 27332 Massachusetts North Dakota 2014
#> 27333 Utah South Dakota 2014
#> 27334 Connecticut Rhode Island 2014
#> 27335 Rhode Island Massachusetts 2014
#> 27336 Indiana New York 2014
#> 27337 Florida Nebraska 2014
#> 27338 Montana Washington 2014
#> 27339 California South Carolina 2014
#> 27340 Tennessee Missouri 2014
#> 27341 Rhode Island Virginia 2014
#> 27342 Massachusetts Pennsylvania 2014
#> 27343 Maine Vermont 2014
#> 27344 Georgia Florida 2014
#> 27345 Wisconsin New Mexico 2014
#> 27346 Maine New Hampshire 2014
#> 27347 Florida Montana 2014
#> 27348 Illinois Washington 2014
#> 27349 Oklahoma Kansas 2014
#> 27350 Wisconsin Arizona 2014
#> 27351 Maine North Carolina 2014
#> 27352 Kentucky Maryland 2014
#> 27353 Colorado Alaska 2014
#> 27354 New Jersey California 2014
#> 27355 Illinois Missouri 2014
#> 27356 Ohio Utah 2014
#> 27357 Idaho Nevada 2014
#> 27358 Michigan Rhode Island 2014
#> 27359 New York Texas 2014
#> 27360 Washington Montana 2014
#> 27361 Kentucky Louisiana 2014
#> 27362 Idaho Kansas 2014
#> 27363 Washington Ohio 2014
#> 27364 Georgia Wisconsin 2014
#> 27365 Minnesota Oregon 2014
#> 27366 New Mexico Illinois 2014
#> 27367 New Jersey Connecticut 2014
#> 27368 West Virginia Vermont 2014
#> 27369 Wisconsin Rhode Island 2014
#> 27370 Florida Maryland 2014
#> 27371 Hawaii Arizona 2014
#> 27372 Michigan Louisiana 2014
#> 27373 Maryland Hawaii 2014
#> 27374 Louisiana Michigan 2014
#> 27375 Michigan Indiana 2014
#> 27376 South Carolina Alabama 2014
#> 27377 Texas Virginia 2014
#> 27378 New Mexico Washington 2014
#> 27379 Utah South Carolina 2014
#> 27380 Texas Minnesota 2014
#> 27381 Minnesota Maine 2014
#> 27382 Iowa Arkansas 2014
#> 27383 South Dakota Massachusetts 2014
#> 27384 Texas Oklahoma 2014
#> 27385 Georgia Illinois 2014
#> 27386 Idaho Missouri 2014
#> 27387 Vermont Iowa 2014
#> 27388 Connecticut Maryland 2014
#> 27389 Nevada New Mexico 2014
#> 27390 Delaware New York 2014
#> 27391 Michigan Alabama 2014
#> 27392 Colorado Utah 2014
#> 27393 Arkansas Nebraska 2014
#> 27394 North Dakota Mississippi 2014
#> 27395 Colorado Minnesota 2014
#> 27396 Michigan Ohio 2014
#> 27397 Michigan Nevada 2014
#> 27398 Oregon Idaho 2014
#> 27399 Wisconsin Oregon 2014
#> 27400 North Dakota California 2014
#> 27401 Florida Colorado 2014
#> 27402 Ohio Texas 2014
#> 27403 Maine Wisconsin 2014
#> 27404 South Carolina Arkansas 2014
#> 27405 Louisiana New Jersey 2014
#> 27406 Montana Georgia 2014
#> 27407 Connecticut Wyoming 2014
#> 27408 Florida Indiana 2014
#> 27409 Michigan Florida 2014
#> 27410 Washington California 2014
#> 27411 Connecticut South Carolina 2014
#> 27412 Maryland Montana 2014
#> 27413 Wisconsin Missouri 2014
#> 27414 Wisconsin New York 2014
#> 27415 Wisconsin Tennessee 2014
#> 27416 Pennsylvania Florida 2014
#> 27417 South Dakota Nevada 2014
#> 27418 Ohio Tennessee 2014
#> 27419 Hawaii Oregon 2014
#> 27420 Georgia Arizona 2014
#> 27421 Wisconsin Colorado 2014
#> 27422 Kansas Connecticut 2014
#> 27423 Iowa North Carolina 2014
#> 27424 Maryland Delaware 2014
#> 27425 Arkansas Montana 2014
#> 27426 Nevada Iowa 2014
#> 27427 Alaska Nevada 2014
#> 27428 North Carolina Colorado 2014
#> 27429 Iowa Louisiana 2014
#> 27430 Wisconsin Illinois 2014
#> 27431 Virginia Indiana 2014
#> 27432 Colorado North Dakota 2014
#> 27433 Wisconsin Oklahoma 2014
#> 27434 Hawaii North Carolina 2014
#> 27435 Louisiana New Mexico 2014
#> 27436 North Dakota Texas 2014
#> 27437 Colorado New Hampshire 2014
#> 27438 Georgia Mississippi 2014
#> 27439 Indiana South Dakota 2014
#> 27440 Illinois Pennsylvania 2014
#> 27441 Connecticut Illinois 2014
#> 27442 Maine Hawaii 2014
#> 27443 Connecticut Delaware 2014
#> 27444 Oklahoma California 2014
#> 27445 Colorado Hawaii 2014
#> 27446 Wisconsin Michigan 2014
#> 27447 Oklahoma South Carolina 2014
#> 27448 Idaho Alaska 2014
#> 27449 Tennessee Kentucky 2014
#> 27450 Wisconsin West Virginia 2014
#> 27451 New Mexico Mississippi 2014
#> 27452 New Jersey Georgia 2014
#> 27453 New Mexico Iowa 2014
#> 27454 Washington Kansas 2014
#> 27455 Illinois West Virginia 2014
#> 27456 Utah Washington 2014
#> 27457 Michigan Wyoming 2014
#> 27458 Idaho Arizona 2014
#> 27459 Pennsylvania Texas 2014
#> 27460 Missouri Maine 2014
#> 27461 South Carolina Illinois 2014
#> 27462 Nevada Montana 2014
#> 27463 Michigan Maryland 2014
#> 27464 Wyoming North Dakota 2014
#> 27465 Illinois Rhode Island 2014
#> 27466 Minnesota Texas 2014
#> 27467 Illinois Nebraska 2014
#> 27468 Washington New Mexico 2014
#> 27469 New York New Jersey 2014
#> 27470 Arizona Pennsylvania 2014
#> 27471 Washington Missouri 2014
#> 27472 Texas Maryland 2014
#> 27473 Michigan Georgia 2014
#> 27474 South Dakota Nebraska 2014
#> 27475 Indiana Delaware 2014
#> 27476 New York North Carolina 2014
#> 27477 Ohio Kentucky 2014
#> 27478 Kentucky Massachusetts 2014
#> 27479 Washington Indiana 2014
#> 27480 Rhode Island California 2014
#> 27481 Pennsylvania Virginia 2014
#> 27482 Connecticut Kansas 2014
#> 27483 Arizona Wisconsin 2014
#> 27484 Maryland Nevada 2014
#> 27485 Oregon Wisconsin 2014
#> 27486 Mississippi Ohio 2014
#> 27487 Utah Illinois 2014
#> 27488 New York Connecticut 2014
#> 27489 South Carolina Missouri 2014
#> 27490 Colorado Michigan 2014
#> 27491 Delaware Colorado 2014
#> 27492 Kentucky Idaho 2014
#> 27493 Nevada Georgia 2014
#> 27494 Michigan Utah 2014
#> 27495 New Hampshire New York 2014
#> 27496 Georgia Oklahoma 2014
#> 27497 New Mexico Maine 2014
#> 27498 Maryland New Mexico 2014
#> 27499 Tennessee Georgia 2014
#> 27500 Hawaii Rhode Island 2014
#> 27501 California Oregon 2015
#> 27502 California New Mexico 2015
#> 27503 California Maryland 2015
#> 27504 California Washington 2015
#> 27505 California Maine 2015
#> 27506 California Colorado 2015
#> 27507 California New Jersey 2015
#> 27508 California Montana 2015
#> 27509 Florida Arizona 2015
#> 27510 California Illinois 2015
#> 27511 California Nevada 2015
#> 27512 California Ohio 2015
#> 27513 California Florida 2015
#> 27514 California North Carolina 2015
#> 27515 California Delaware 2015
#> 27516 California Texas 2015
#> 27517 California Minnesota 2015
#> 27518 Minnesota Iowa 2015
#> 27519 California Nebraska 2015
#> 27520 Florida Utah 2015
#> 27521 Minnesota Indiana 2015
#> 27522 Washington Pennsylvania 2015
#> 27523 Florida Georgia 2015
#> 27524 California Vermont 2015
#> 27525 Oregon Kentucky 2015
#> 27526 California South Dakota 2015
#> 27527 Minnesota Virginia 2015
#> 27528 Florida South Carolina 2015
#> 27529 Minnesota Michigan 2015
#> 27530 California Missouri 2015
#> 27531 Minnesota Alabama 2015
#> 27532 California Rhode Island 2015
#> 27533 California New Hampshire 2015
#> 27534 California North Dakota 2015
#> 27535 Minnesota Mississippi 2015
#> 27536 California Connecticut 2015
#> 27537 Washington Wisconsin 2015
#> 27538 California Kansas 2015
#> 27539 California Tennessee 2015
#> 27540 California Arkansas 2015
#> 27541 California Hawaii 2015
#> 27542 California Louisiana 2015
#> 27543 California New York 2015
#> 27544 California Alaska 2015
#> 27545 California Oklahoma 2015
#> 27546 Colorado Wyoming 2015
#> 27547 Connecticut Massachusetts 2015
#> 27548 Colorado Idaho 2015
#> 27549 Minnesota California 2015
#> 27550 Washington West Virginia 2015
#> 27551 Texas New Mexico 2015
#> 27552 Florida Ohio 2015
#> 27553 Arizona Arkansas 2015
#> 27554 Florida Texas 2015
#> 27555 Minnesota Arizona 2015
#> 27556 Idaho Utah 2015
#> 27557 Oregon Minnesota 2015
#> 27558 Illinois Connecticut 2015
#> 27559 Florida New Jersey 2015
#> 27560 Florida Louisiana 2015
#> 27561 Minnesota Oklahoma 2015
#> 27562 California Georgia 2015
#> 27563 Indiana South Carolina 2015
#> 27564 Oregon Maine 2015
#> 27565 Kansas Virginia 2015
#> 27566 Florida Missouri 2015
#> 27567 Colorado Illinois 2015
#> 27568 Louisiana Kansas 2015
#> 27569 Florida Alabama 2015
#> 27570 Florida Washington 2015
#> 27571 Florida North Carolina 2015
#> 27572 Florida Indiana 2015
#> 27573 Rhode Island Wisconsin 2015
#> 27574 Washington Alaska 2015
#> 27575 Minnesota Nebraska 2015
#> 27576 Connecticut Colorado 2015
#> 27577 Iowa Vermont 2015
#> 27578 Florida Kentucky 2015
#> 27579 California Michigan 2015
#> 27580 Minnesota North Dakota 2015
#> 27581 Rhode Island Massachusetts 2015
#> 27582 Massachusetts California 2015
#> 27583 Minnesota Florida 2015
#> 27584 Rhode Island Pennsylvania 2015
#> 27585 California Iowa 2015
#> 27586 Washington Oregon 2015
#> 27587 Oregon Rhode Island 2015
#> 27588 Colorado Maryland 2015
#> 27589 Indiana Mississippi 2015
#> 27590 California Idaho 2015
#> 27591 Colorado Nevada 2015
#> 27592 Colorado South Dakota 2015
#> 27593 Florida Tennessee 2015
#> 27594 Washington Hawaii 2015
#> 27595 Colorado Montana 2015
#> 27596 Minnesota Delaware 2015
#> 27597 Minnesota Wyoming 2015
#> 27598 Maryland New Hampshire 2015
#> 27599 Texas Virginia 2015
#> 27600 Connecticut New York 2015
#> 27601 Colorado New Mexico 2015
#> 27602 California Utah 2015
#> 27603 North Dakota Ohio 2015
#> 27604 Idaho Minnesota 2015
#> 27605 Colorado New Jersey 2015
#> 27606 California Arizona 2015
#> 27607 Kansas Texas 2015
#> 27608 North Dakota Kentucky 2015
#> 27609 Maryland West Virginia 2015
#> 27610 Colorado Washington 2015
#> 27611 Florida Oklahoma 2015
#> 27612 Iowa Wisconsin 2015
#> 27613 Hawaii Montana 2015
#> 27614 Minnesota Kansas 2015
#> 27615 Massachusetts Connecticut 2015
#> 27616 Kentucky Arkansas 2015
#> 27617 Utah North Dakota 2015
#> 27618 Minnesota Colorado 2015
#> 27619 Tennessee Florida 2015
#> 27620 Illinois California 2015
#> 27621 New Mexico North Carolina 2015
#> 27622 North Dakota South Carolina 2015
#> 27623 Colorado Tennessee 2015
#> 27624 Massachusetts Rhode Island 2015
#> 27625 Connecticut Vermont 2015
#> 27626 California Indiana 2015
#> 27627 Illinois Maine 2015
#> 27628 New York Illinois 2015
#> 27629 Indiana Alabama 2015
#> 27630 Florida Nevada 2015
#> 27631 Kentucky Michigan 2015
#> 27632 Colorado Missouri 2015
#> 27633 Colorado Louisiana 2015
#> 27634 Illinois Massachusetts 2015
#> 27635 Indiana Iowa 2015
#> 27636 Washington Maryland 2015
#> 27637 Nebraska Idaho 2015
#> 27638 Arizona Oregon 2015
#> 27639 Illinois Delaware 2015
#> 27640 Connecticut Pennsylvania 2015
#> 27641 North Dakota South Dakota 2015
#> 27642 Florida Connecticut 2015
#> 27643 Idaho Georgia 2015
#> 27644 Michigan Mississippi 2015
#> 27645 Virginia Alaska 2015
#> 27646 Nevada Hawaii 2015
#> 27647 Utah Minnesota 2015
#> 27648 Minnesota New Mexico 2015
#> 27649 Florida Virginia 2015
#> 27650 Oregon Delaware 2015
#> 27651 Florida West Virginia 2015
#> 27652 Florida Nebraska 2015
#> 27653 Massachusetts New Jersey 2015
#> 27654 Connecticut New Hampshire 2015
#> 27655 Wisconsin Massachusetts 2015
#> 27656 Louisiana Indiana 2015
#> 27657 Hawaii Washington 2015
#> 27658 Minnesota South Carolina 2015
#> 27659 Rhode Island Kentucky 2015
#> 27660 Oregon Vermont 2015
#> 27661 Kentucky New York 2015
#> 27662 Idaho Wyoming 2015
#> 27663 Utah Oklahoma 2015
#> 27664 Connecticut Maine 2015
#> 27665 Texas Colorado 2015
#> 27666 New York Florida 2015
#> 27667 Utah Kansas 2015
#> 27668 Georgia Montana 2015
#> 27669 Massachusetts Ohio 2015
#> 27670 New York Michigan 2015
#> 27671 North Dakota Nebraska 2015
#> 27672 New York Iowa 2015
#> 27673 Hawaii Idaho 2015
#> 27674 Connecticut California 2015
#> 27675 South Carolina North Carolina 2015
#> 27676 Illinois Virginia 2015
#> 27677 Iowa Oregon 2015
#> 27678 Oregon Connecticut 2015
#> 27679 Colorado Arizona 2015
#> 27680 Oklahoma Arkansas 2015
#> 27681 Minnesota Tennessee 2015
#> 27682 Indiana Illinois 2015
#> 27683 Maryland Minnesota 2015
#> 27684 Kentucky Georgia 2015
#> 27685 North Dakota New Mexico 2015
#> 27686 Idaho Texas 2015
#> 27687 Minnesota Nevada 2015
#> 27688 Delaware South Dakota 2015
#> 27689 Idaho Colorado 2015
#> 27690 Florida Massachusetts 2015
#> 27691 Massachusetts Hawaii 2015
#> 27692 New Jersey Washington 2015
#> 27693 California Wisconsin 2015
#> 27694 Connecticut Iowa 2015
#> 27695 Arizona Utah 2015
#> 27696 Utah Indiana 2015
#> 27697 Oklahoma North Dakota 2015
#> 27698 Kansas New Hampshire 2015
#> 27699 Wisconsin California 2015
#> 27700 Utah Maryland 2015
#> 27701 Hawaii Florida 2015
#> 27702 Arkansas Ohio 2015
#> 27703 Rhode Island Louisiana 2015
#> 27704 Kansas Pennsylvania 2015
#> 27705 Illinois Oklahoma 2015
#> 27706 Texas Kentucky 2015
#> 27707 Arizona Missouri 2015
#> 27708 Nevada Utah 2015
#> 27709 New Mexico Rhode Island 2015
#> 27710 Colorado West Virginia 2015
#> 27711 Connecticut Oregon 2015
#> 27712 South Dakota Florida 2015
#> 27713 Massachusetts New York 2015
#> 27714 Montana Idaho 2015
#> 27715 Indiana Delaware 2015
#> 27716 California Alabama 2015
#> 27717 Oregon Kansas 2015
#> 27718 Tennessee South Carolina 2015
#> 27719 Maryland New Jersey 2015
#> 27720 Massachusetts North Dakota 2015
#> 27721 Florida Michigan 2015
#> 27722 Wisconsin Indiana 2015
#> 27723 Indiana Maine 2015
#> 27724 California Mississippi 2015
#> 27725 New York Maryland 2015
#> 27726 Virginia Hawaii 2015
#> 27727 California Virginia 2015
#> 27728 West Virginia Georgia 2015
#> 27729 Massachusetts Wyoming 2015
#> 27730 Connecticut North Carolina 2015
#> 27731 Illinois Minnesota 2015
#> 27732 Utah South Dakota 2015
#> 27733 Utah Texas 2015
#> 27734 California Massachusetts 2015
#> 27735 Michigan Tennessee 2015
#> 27736 Minnesota Arkansas 2015
#> 27737 Utah Arizona 2015
#> 27738 Colorado Vermont 2015
#> 27739 Rhode Island Washington 2015
#> 27740 California Pennsylvania 2015
#> 27741 North Dakota Missouri 2015
#> 27742 Iowa Nebraska 2015
#> 27743 North Carolina Wisconsin 2015
#> 27744 New York New Mexico 2015
#> 27745 Florida Rhode Island 2015
#> 27746 Missouri Illinois 2015
#> 27747 Georgia Colorado 2015
#> 27748 Kansas Oklahoma 2015
#> 27749 Minnesota Rhode Island 2015
#> 27750 Idaho Iowa 2015
#> 27751 Georgia Indiana 2015
#> 27752 Louisiana Mississippi 2015
#> 27753 New Mexico Alabama 2015
#> 27754 Texas Utah 2015
#> 27755 Connecticut Florida 2015
#> 27756 Florida New York 2015
#> 27757 Connecticut Minnesota 2015
#> 27758 Ohio Louisiana 2015
#> 27759 Rhode Island Nebraska 2015
#> 27760 Utah California 2015
#> 27761 North Dakota Michigan 2015
#> 27762 Indiana Idaho 2015
#> 27763 Oregon Montana 2015
#> 27764 Utah Virginia 2015
#> 27765 Washington Texas 2015
#> 27766 Illinois Georgia 2015
#> 27767 Arkansas West Virginia 2015
#> 27768 Hawaii Alaska 2015
#> 27769 Minnesota New Jersey 2015
#> 27770 Indiana Nevada 2015
#> 27771 California Kentucky 2015
#> 27772 Iowa Pennsylvania 2015
#> 27773 Iowa Massachusetts 2015
#> 27774 Kansas Arizona 2015
#> 27775 Texas South Carolina 2015
#> 27776 Michigan Illinois 2015
#> 27777 Maryland Tennessee 2015
#> 27778 Wisconsin North Carolina 2015
#> 27779 Massachusetts Texas 2015
#> 27780 New Mexico Hawaii 2015
#> 27781 Colorado Wisconsin 2015
#> 27782 Idaho Arkansas 2015
#> 27783 Iowa Kansas 2015
#> 27784 Delaware Connecticut 2015
#> 27785 Maine Vermont 2015
#> 27786 Oklahoma Colorado 2015
#> 27787 Maine Maryland 2015
#> 27788 Louisiana Montana 2015
#> 27789 Connecticut Washington 2015
#> 27790 Utah Alabama 2015
#> 27791 Maryland Arizona 2015
#> 27792 Utah New Jersey 2015
#> 27793 Maryland Maine 2015
#> 27794 Illinois Iowa 2015
#> 27795 North Carolina Missouri 2015
#> 27796 Florida Mississippi 2015
#> 27797 Alaska New York 2015
#> 27798 Hawaii North Dakota 2015
#> 27799 Texas Florida 2015
#> 27800 Massachusetts Tennessee 2015
#> 27801 Nevada Ohio 2015
#> 27802 New Jersey Illinois 2015
#> 27803 Wisconsin Maine 2015
#> 27804 New York Connecticut 2015
#> 27805 Massachusetts Pennsylvania 2015
#> 27806 Louisiana South Dakota 2015
#> 27807 Georgia Kentucky 2015
#> 27808 Washington Colorado 2015
#> 27809 Nevada Rhode Island 2015
#> 27810 Virginia California 2015
#> 27811 Oklahoma Kansas 2015
#> 27812 Nevada Oregon 2015
#> 27813 Rhode Island New Hampshire 2015
#> 27814 Oregon Maryland 2015
#> 27815 Alaska Nevada 2015
#> 27816 Kansas Louisiana 2015
#> 27817 Delaware Montana 2015
#> 27818 Texas California 2015
#> 27819 Maryland Connecticut 2015
#> 27820 Maine North Carolina 2015
#> 27821 New Jersey Massachusetts 2015
#> 27822 Texas Idaho 2015
#> 27823 New York Hawaii 2015
#> 27824 Rhode Island New Mexico 2015
#> 27825 New York North Carolina 2015
#> 27826 Wisconsin Arizona 2015
#> 27827 Indiana New York 2015
#> 27828 Connecticut Virginia 2015
#> 27829 Montana Washington 2015
#> 27830 California South Carolina 2015
#> 27831 Washington Nevada 2015
#> 27832 Texas Oklahoma 2015
#> 27833 Arizona Iowa 2015
#> 27834 Georgia Florida 2015
#> 27835 Wisconsin New Mexico 2015
#> 27836 Colorado Alaska 2015
#> 27837 Illinois Washington 2015
#> 27838 Georgia Arkansas 2015
#> 27839 Wisconsin Michigan 2015
#> 27840 Kentucky Pennsylvania 2015
#> 27841 Alaska North Dakota 2015
#> 27842 Minnesota West Virginia 2015
#> 27843 Arkansas Nebraska 2015
#> 27844 Louisiana Wisconsin 2015
#> 27845 Connecticut Delaware 2015
#> 27846 North Dakota Virginia 2015
#> 27847 Colorado Minnesota 2015
#> 27848 New Jersey California 2015
#> 27849 Washington Montana 2015
#> 27850 Wisconsin Vermont 2015
#> 27851 Ohio Utah 2015
#> 27852 Tennessee Missouri 2015
#> 27853 New York Texas 2015
#> 27854 Idaho Kansas 2015
#> 27855 Florida Maryland 2015
#> 27856 Washington Ohio 2015
#> 27857 Virginia Indiana 2015
#> 27858 Minnesota Oregon 2015
#> 27859 New Mexico Illinois 2015
#> 27860 Kentucky Louisiana 2015
#> 27861 Delaware Kansas 2015
#> 27862 Michigan Rhode Island 2015
#> 27863 Kentucky North Carolina 2015
#> 27864 Georgia Nevada 2015
#> 27865 Hawaii Louisiana 2015
#> 27866 Maryland Hawaii 2015
#> 27867 Idaho Delaware 2015
#> 27868 Texas Minnesota 2015
#> 27869 South Carolina Alabama 2015
#> 27870 Minnesota New Hampshire 2015
#> 27871 New Mexico Washington 2015
#> 27872 Utah South Carolina 2015
#> 27873 Connecticut Maryland 2015
#> 27874 Georgia West Virginia 2015
#> 27875 Minnesota Maine 2015
#> 27876 South Dakota Massachusetts 2015
#> 27877 Washington Arkansas 2015
#> 27878 Connecticut Rhode Island 2015
#> 27879 Colorado Michigan 2015
#> 27880 Connecticut Illinois 2015
#> 27881 Florida Iowa 2015
#> 27882 Wisconsin Oklahoma 2015
#> 27883 Maine Pennsylvania 2015
#> 27884 Indiana South Dakota 2015
#> 27885 Nevada New Mexico 2015
#> 27886 Colorado Utah 2015
#> 27887 New Mexico Iowa 2015
#> 27888 Hawaii Mississippi 2015
#> 27889 Wisconsin Illinois 2015
#> 27890 Michigan Ohio 2015
#> 27891 Ohio Tennessee 2015
#> 27892 Maine Wisconsin 2015
#> 27893 Oregon Idaho 2015
#> 27894 Illinois Missouri 2015
#> 27895 Wisconsin Oregon 2015
#> 27896 Hawaii California 2015
#> 27897 Kentucky Virginia 2015
#> 27898 Florida Colorado 2015
#> 27899 Ohio Texas 2015
#> 27900 Kentucky Maryland 2015
#> 27901 Maryland Vermont 2015
#> 27902 Louisiana New Jersey 2015
#> 27903 Montana Georgia 2015
#> 27904 Connecticut Wyoming 2015
#> 27905 Michigan Florida 2015
#> 27906 Delaware North Dakota 2015
#> 27907 Maryland New York 2015
#> 27908 Oregon South Dakota 2015
#> 27909 Connecticut South Carolina 2015
#> 27910 New Mexico Delaware 2015
#> 27911 Arizona Tennessee 2015
#> 27912 Montana Alaska 2015
#> 27913 Louisiana Missouri 2015
#> 27914 Washington North Carolina 2015
#> 27915 Pennsylvania Florida 2015
#> 27916 Maryland Montana 2015
#> 27917 Hawaii Oregon 2015
#> 27918 Wisconsin Colorado 2015
#> 27919 Michigan Indiana 2015
#> 27920 South Dakota Nevada 2015
#> 27921 Utah Mississippi 2015
#> 27922 North Carolina Colorado 2015
#> 27923 Illinois South Dakota 2015
#> 27924 Oklahoma Arizona 2015
#> 27925 North Dakota Texas 2015
#> 27926 Wisconsin Missouri 2015
#> 27927 Oklahoma California 2015
#> 27928 Colorado North Dakota 2015
#> 27929 Texas Delaware 2015
#> 27930 Hawaii Arkansas 2015
#> 27931 Maine Hawaii 2015
#> 27932 Illinois Pennsylvania 2015
#> 27933 Colorado Hawaii 2015
#> 27934 New Mexico Oklahoma 2015
#> 27935 Idaho Rhode Island 2015
#> 27936 Utah Connecticut 2015
#> 27937 Rhode Island West Virginia 2015
#> 27938 Oklahoma South Carolina 2015
#> 27939 Kansas Wisconsin 2015
#> 27940 Tennessee Kentucky 2015
#> 27941 Michigan Alabama 2015
#> 27942 Louisiana Rhode Island 2015
#> 27943 Kentucky Indiana 2015
#> 27944 Rhode Island California 2015
#> 27945 New Jersey Georgia 2015
#> 27946 Nevada Montana 2015
#> 27947 Washington Kansas 2015
#> 27948 South Carolina Illinois 2015
#> 27949 Hawaii Michigan 2015
#> 27950 Utah Washington 2015
#> 27951 Illinois Nebraska 2015
#> 27952 Michigan Wyoming 2015
#> 27953 Washington New Mexico 2015
#> 27954 Connecticut Tennessee 2015
#> 27955 Pennsylvania Texas 2015
#> 27956 Missouri Maine 2015
#> 27957 Delaware New York 2015
#> 27958 Washington Louisiana 2015
#> 27959 Utah Alaska 2015
#> 27960 Maryland Illinois 2015
#> 27961 Georgia Mississippi 2015
#> 27962 South Dakota Nebraska 2015
#> 27963 New York New Jersey 2015
#> 27964 Minnesota Texas 2015
#> 27965 Maine New Hampshire 2015
#> 27966 Washington Tennessee 2015
#> 27967 Louisiana Minnesota 2015
#> 27968 Texas Maryland 2015
#> 27969 Hawaii North Carolina 2015
#> 27970 Michigan Georgia 2015
#> 27971 Washington Connecticut 2015
#> 27972 Massachusetts Wisconsin 2015
#> 27973 Arizona Pennsylvania 2015
#> 27974 Wisconsin Nevada 2015
#> 27975 Kentucky Massachusetts 2015
#> 27976 Maryland New Mexico 2015
#> 27977 Utah Wisconsin 2015
#> 27978 Maryland Nevada 2015
#> 27979 Connecticut Kansas 2015
#> 27980 Michigan Louisiana 2015
#> 27981 Michigan Utah 2015
#> 27982 Maryland Oklahoma 2015
#> 27983 Colorado California 2015
#> 27984 Mississippi Ohio 2015
#> 27985 Arizona North Carolina 2015
#> 27986 Michigan Nebraska 2015
#> 27987 Kentucky Idaho 2015
#> 27988 Nevada Georgia 2015
#> 27989 Washington Missouri 2015
#> 27990 South Carolina Missouri 2015
#> 27991 Nebraska Kentucky 2015
#> 27992 Iowa Arizona 2015
#> 27993 New Mexico Maine 2015
#> 27994 Pennsylvania California 2015
#> 27995 Oregon Wisconsin 2015
#> 27996 California West Virginia 2015
#> 27997 Tennessee Georgia 2015
#> 27998 North Dakota Wyoming 2015
#> 27999 Georgia Oklahoma 2015
#> 28000 Oregon Ohio 2015
Now we can construct the EHA data frame:
eha_data = make_eha_data(cascades = policy_cascades, networks = networks,
min_time = 1960, decay_parameter = lambdas[1])
print(eha_data)
#> # A tibble: 394,061 x 8
#> node_name event_time cascade_id event events_so_far decay_weight
#> <chr> <dbl> <fct> <dbl> <dbl> <dbl>
#> 1 Alabama 1960 aboldeapen 0 9 0
#> 2 Alabama 1961 aboldeapen 0 9 0
#> 3 Alabama 1962 aboldeapen 0 9 0
#> 4 Alabama 1963 aboldeapen 0 9 0
#> 5 Alabama 1964 aboldeapen 0 9 0
#> 6 Alabama 1965 aboldeapen 0 10 0
#> 7 Alabama 1966 aboldeapen 0 14 0
#> 8 Alabama 1967 aboldeapen 0 14 0
#> 9 Alabama 1968 aboldeapen 0 14 0
#> 10 Alabama 1969 aboldeapen 0 14 0
#> # ... with 394,051 more rows, and 2 more variables:
#> # n_neighbor_events <dbl>, n_neighbor_events_decay <dbl>
With the eha dataset we can now fit the eha model:
library(speedglm)
mod <- event ~ events_so_far + n_neighbor_events_decay + cascade_id
res <- speedglm::speedglm(mod, data = eha_data,
family = binomial(link = "logit"))
BIC(res)
#> [1] 111561.3
The spid package will do all of this automatically on the whole parameter grid:
#grid_search_results = grid_search_eha(cascades = policy_cascades, n_jobs = 4,
# n_edges = n_edges, params = lambdas,
# time_windows = time_windows)
#save(grid_search_results, file = 'grid_search_results.RData')
load('grid_search_results.RData')
print(arrange(grid_search_results, bic))
#> params n_edges time_window bic
#> 1 1.0 700 100 147816.2
#> 2 0.5 700 50 147826.8
#> 3 1.0 700 50 147834.2
#> 4 1.0 500 100 147842.1
#> 5 0.5 700 100 147844.1
#> 6 1.0 500 50 147886.0
#> 7 0.5 500 100 147893.4
#> 8 0.5 500 50 147900.8